]>
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 |
25fd6a3c | 13 | *.bin[_.]* |
421be6fc | 14 | *.cfgout |
101a0f71 | 15 | *.cover |
28b538b6 | 16 | *.dtb |
0a857305 | 17 | *.dtbo |
28b538b6 | 18 | *.dtb.S |
3eb0fa4c MY |
19 | *.elf |
20 | *.exe | |
25fd6a3c | 21 | *.fit |
3eb0fa4c MY |
22 | *.gcda |
23 | *.gcno | |
ea531e3a | 24 | *.i |
d25a2d38 | 25 | *.img |
25fd6a3c | 26 | *.itb |
e91610da | 27 | *.lex.c |
ea531e3a | 28 | *.lst |
25fd6a3c | 29 | *.map |
3eb0fa4c | 30 | *.mod.c |
101a0f71 | 31 | *.mbx |
3eb0fa4c MY |
32 | *.o |
33 | *.o.* | |
ea531e3a | 34 | *.order |
ea531e3a | 35 | *.patch |
25fd6a3c | 36 | *.pem |
3eb0fa4c MY |
37 | *.s |
38 | *.su | |
39 | *.swp | |
e91610da | 40 | *.tab.[ch] |
25fd6a3c | 41 | *.ti-* |
5941a61a | 42 | # Build tree |
06e00f5d | 43 | /build* |
5941a61a | 44 | |
a2df4da3 JCPV |
45 | # |
46 | # Top-level generic files | |
47 | # | |
c6833e76 | 48 | fit-dtb.blob* |
341d2c0e | 49 | /MLO* |
1f6a6648 | 50 | /SPL* |
a2df4da3 | 51 | /System.map |
a2580ebb | 52 | /boards.cfg |
801c4822 JC |
53 | /mkimage-in-simple-bin* |
54 | /simple-bin* | |
55 | /u-boot* | |
71d8e1b8 | 56 | /*.log |
a2df4da3 | 57 | |
ea531e3a MY |
58 | # |
59 | # git files that we don't want to ignore even it they are dot-files | |
60 | # | |
61 | !.gitignore | |
62 | !.mailmap | |
2940b522 | 63 | !.get_maintainer.* |
ea531e3a | 64 | |
a2df4da3 JCPV |
65 | # |
66 | # Generated files | |
67 | # | |
c7163083 | 68 | /spl/ |
93f70dfd | 69 | /tpl/ |
01124327 | 70 | /defconfig |
56041aa5 | 71 | /generated_defconfig |
cdf1e45e SG |
72 | /Test* |
73 | /capsule.*.efi-capsule | |
74 | /capsule*.map | |
ebe91047 | 75 | /keep-syms-lto.* |
93f70dfd | 76 | |
1f659b2e MY |
77 | # |
78 | # Generated include files | |
79 | # | |
801c4822 JC |
80 | /include/autoconf.mk* |
81 | /include/config.h | |
1f659b2e | 82 | /include/config/ |
16a354f9 | 83 | /include/generated/ |
16a354f9 | 84 | |
a2df4da3 JCPV |
85 | # stgit generated dirs |
86 | patches-* | |
51ecde94 | 87 | .stgit-edit.txt |
a2df4da3 JCPV |
88 | |
89 | # quilt's files | |
90 | patches | |
91 | series | |
92 | ||
bfa0af6b MF |
93 | # gdb files |
94 | .gdb_history | |
95 | ||
a2df4da3 JCPV |
96 | # cscope files |
97 | cscope.* | |
f2302d44 | 98 | |
650632fe | 99 | # tags files |
082becd0 | 100 | /tags |
650632fe MH |
101 | /ctags |
102 | /etags | |
103 | ||
1dbdc76c MY |
104 | # gnu global files |
105 | GPATH | |
106 | GRTAGS | |
107 | GSYMS | |
108 | GTAGS | |
ea531e3a MY |
109 | |
110 | *.orig | |
111 | *~ | |
112 | \#*# | |
0d5addaf SG |
113 | |
114 | # Python cache | |
115 | __pycache__ | |
f0198f7f SG |
116 | |
117 | # Python code coverage output (python3-coverage html) | |
118 | /htmlcov/ | |
feafc61e SG |
119 | |
120 | # pylint files | |
121 | /pylint.cur | |
122 | /pylint.out/ | |
41cd6fab | 123 | |
51963792 SG |
124 | # qconfig database |
125 | /qconfig.db | |
b703bda0 JMC |
126 | |
127 | # Clang's compilation database file | |
128 | /compile_commands.json |