]>
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 | .* |
4c590788 | 9 | !.checkpatch.conf |
ea531e3a | 10 | *.a |
8190d5a9 | 11 | *.asn1.[ch] |
3eb0fa4c | 12 | *.bin |
421be6fc | 13 | *.cfgout |
101a0f71 | 14 | *.cover |
28b538b6 | 15 | *.dtb |
0a857305 | 16 | *.dtbo |
28b538b6 | 17 | *.dtb.S |
3eb0fa4c MY |
18 | *.elf |
19 | *.exe | |
20 | *.gcda | |
21 | *.gcno | |
ea531e3a | 22 | *.i |
d25a2d38 | 23 | *.img |
e91610da | 24 | *.lex.c |
ea531e3a | 25 | *.lst |
3eb0fa4c | 26 | *.mod.c |
101a0f71 | 27 | *.mbx |
3eb0fa4c MY |
28 | *.o |
29 | *.o.* | |
ea531e3a | 30 | *.order |
ea531e3a | 31 | *.patch |
3eb0fa4c MY |
32 | *.s |
33 | *.su | |
34 | *.swp | |
e91610da | 35 | *.tab.[ch] |
a2df4da3 | 36 | |
5941a61a TK |
37 | # Build tree |
38 | /build-* | |
39 | ||
a2df4da3 JCPV |
40 | # |
41 | # Top-level generic files | |
42 | # | |
c6833e76 | 43 | fit-dtb.blob* |
341d2c0e | 44 | /MLO* |
1f6a6648 | 45 | /SPL* |
a2df4da3 | 46 | /System.map |
5d0f0157 | 47 | /u-boot* |
a2580ebb | 48 | /boards.cfg |
71d8e1b8 | 49 | /*.log |
a2df4da3 | 50 | |
ea531e3a MY |
51 | # |
52 | # git files that we don't want to ignore even it they are dot-files | |
53 | # | |
54 | !.gitignore | |
55 | !.mailmap | |
56 | ||
a2df4da3 JCPV |
57 | # |
58 | # Generated files | |
59 | # | |
c7163083 | 60 | /spl/ |
93f70dfd | 61 | /tpl/ |
01124327 | 62 | /defconfig |
93f70dfd | 63 | |
1f659b2e MY |
64 | # |
65 | # Generated include files | |
66 | # | |
67 | /include/config/ | |
16a354f9 | 68 | /include/generated/ |
16a354f9 | 69 | |
a2df4da3 JCPV |
70 | # stgit generated dirs |
71 | patches-* | |
51ecde94 | 72 | .stgit-edit.txt |
a2df4da3 JCPV |
73 | |
74 | # quilt's files | |
75 | patches | |
76 | series | |
77 | ||
bfa0af6b MF |
78 | # gdb files |
79 | .gdb_history | |
80 | ||
a2df4da3 JCPV |
81 | # cscope files |
82 | cscope.* | |
f2302d44 | 83 | |
650632fe | 84 | # tags files |
082becd0 | 85 | /tags |
650632fe MH |
86 | /ctags |
87 | /etags | |
88 | ||
1dbdc76c MY |
89 | # gnu global files |
90 | GPATH | |
91 | GRTAGS | |
92 | GSYMS | |
93 | GTAGS | |
ea531e3a MY |
94 | |
95 | *.orig | |
96 | *~ | |
97 | \#*# | |
0d5addaf SG |
98 | |
99 | # Python cache | |
100 | __pycache__ | |
f0198f7f SG |
101 | |
102 | # Python code coverage output (python3-coverage html) | |
103 | /htmlcov/ | |
feafc61e SG |
104 | |
105 | # pylint files | |
106 | /pylint.cur | |
107 | /pylint.out/ | |
41cd6fab SG |
108 | |
109 | # moveconfig database | |
110 | /moveconfig.db |