]>
Commit | Line | Data |
---|---|---|
a2df4da3 JCPV |
1 | # |
2 | # NOTE! Don't add files that are generated in specific | |
3 | # subdirectories here. Add them in the ".gitignore" file | |
4 | # in that subdirectory instead. | |
5 | # | |
3eb0fa4c | 6 | # Normal rules (sorted alphabetically) |
a2df4da3 | 7 | # |
ea531e3a | 8 | .* |
ea531e3a | 9 | *.a |
8190d5a9 | 10 | *.asn1.[ch] |
3eb0fa4c | 11 | *.bin |
421be6fc | 12 | *.cfgout |
28b538b6 | 13 | *.dtb |
0a857305 | 14 | *.dtbo |
28b538b6 | 15 | *.dtb.S |
3eb0fa4c MY |
16 | *.elf |
17 | *.exe | |
18 | *.gcda | |
19 | *.gcno | |
ea531e3a | 20 | *.i |
d25a2d38 | 21 | *.img |
e91610da | 22 | *.lex.c |
ea531e3a | 23 | *.lst |
3eb0fa4c MY |
24 | *.mod.c |
25 | *.o | |
26 | *.o.* | |
ea531e3a | 27 | *.order |
ea531e3a | 28 | *.patch |
3eb0fa4c MY |
29 | *.s |
30 | *.su | |
31 | *.swp | |
e91610da | 32 | *.tab.[ch] |
a2df4da3 | 33 | |
5941a61a TK |
34 | # Build tree |
35 | /build-* | |
36 | ||
a2df4da3 JCPV |
37 | # |
38 | # Top-level generic files | |
39 | # | |
c6833e76 | 40 | fit-dtb.blob* |
341d2c0e | 41 | /MLO* |
1f6a6648 | 42 | /SPL* |
a2df4da3 | 43 | /System.map |
5d0f0157 | 44 | /u-boot* |
a2580ebb | 45 | /boards.cfg |
71d8e1b8 | 46 | /*.log |
a2df4da3 | 47 | |
ea531e3a MY |
48 | # |
49 | # git files that we don't want to ignore even it they are dot-files | |
50 | # | |
51 | !.gitignore | |
52 | !.mailmap | |
53 | ||
a2df4da3 JCPV |
54 | # |
55 | # Generated files | |
56 | # | |
c7163083 | 57 | /spl/ |
93f70dfd | 58 | /tpl/ |
01124327 | 59 | /defconfig |
93f70dfd | 60 | |
1f659b2e MY |
61 | # |
62 | # Generated include files | |
63 | # | |
64 | /include/config/ | |
16a354f9 | 65 | /include/generated/ |
16a354f9 | 66 | |
a2df4da3 JCPV |
67 | # stgit generated dirs |
68 | patches-* | |
51ecde94 | 69 | .stgit-edit.txt |
a2df4da3 JCPV |
70 | |
71 | # quilt's files | |
72 | patches | |
73 | series | |
74 | ||
bfa0af6b MF |
75 | # gdb files |
76 | .gdb_history | |
77 | ||
a2df4da3 JCPV |
78 | # cscope files |
79 | cscope.* | |
f2302d44 | 80 | |
650632fe | 81 | # tags files |
082becd0 | 82 | /tags |
650632fe MH |
83 | /ctags |
84 | /etags | |
85 | ||
1dbdc76c MY |
86 | # gnu global files |
87 | GPATH | |
88 | GRTAGS | |
89 | GSYMS | |
90 | GTAGS | |
ea531e3a MY |
91 | |
92 | *.orig | |
93 | *~ | |
94 | \#*# | |
0d5addaf SG |
95 | |
96 | # Python cache | |
97 | __pycache__ |