]>
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.* |
bc6beae7 MV |
76 | /*imx8mimage* |
77 | /*imx8mcst* | |
2bf2615b CM |
78 | /drivers/video/u_boot_logo.S |
79 | /test/overlay/test-fdt-overlay.dtbo.S | |
80 | /test/overlay/test-fdt-overlay-stacked.dtbo.S | |
93f70dfd | 81 | |
1f659b2e MY |
82 | # |
83 | # Generated include files | |
84 | # | |
801c4822 JC |
85 | /include/autoconf.mk* |
86 | /include/config.h | |
1f659b2e | 87 | /include/config/ |
16a354f9 | 88 | /include/generated/ |
2bf2615b CM |
89 | /include/bmp_logo.h |
90 | /include/bmp_logo_data.h | |
16a354f9 | 91 | |
a2df4da3 JCPV |
92 | # stgit generated dirs |
93 | patches-* | |
51ecde94 | 94 | .stgit-edit.txt |
a2df4da3 JCPV |
95 | |
96 | # quilt's files | |
97 | patches | |
98 | series | |
99 | ||
bfa0af6b MF |
100 | # gdb files |
101 | .gdb_history | |
102 | ||
a2df4da3 JCPV |
103 | # cscope files |
104 | cscope.* | |
f2302d44 | 105 | |
650632fe | 106 | # tags files |
082becd0 | 107 | /tags |
650632fe MH |
108 | /ctags |
109 | /etags | |
110 | ||
1dbdc76c MY |
111 | # gnu global files |
112 | GPATH | |
113 | GRTAGS | |
114 | GSYMS | |
115 | GTAGS | |
ea531e3a MY |
116 | |
117 | *.orig | |
118 | *~ | |
119 | \#*# | |
0d5addaf SG |
120 | |
121 | # Python cache | |
122 | __pycache__ | |
f0198f7f SG |
123 | |
124 | # Python code coverage output (python3-coverage html) | |
125 | /htmlcov/ | |
feafc61e SG |
126 | |
127 | # pylint files | |
128 | /pylint.cur | |
129 | /pylint.out/ | |
41cd6fab | 130 | |
51963792 SG |
131 | # qconfig database |
132 | /qconfig.db | |
b703bda0 JMC |
133 | |
134 | # Clang's compilation database file | |
135 | /compile_commands.json |