]>
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 | 37 | # Build tree |
06e00f5d | 38 | /build* |
5941a61a | 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 |
a2580ebb | 47 | /boards.cfg |
801c4822 JC |
48 | /mkimage-in-simple-bin* |
49 | /simple-bin* | |
50 | /u-boot* | |
71d8e1b8 | 51 | /*.log |
a2df4da3 | 52 | |
ea531e3a MY |
53 | # |
54 | # git files that we don't want to ignore even it they are dot-files | |
55 | # | |
56 | !.gitignore | |
57 | !.mailmap | |
2940b522 | 58 | !.get_maintainer.* |
ea531e3a | 59 | |
a2df4da3 JCPV |
60 | # |
61 | # Generated files | |
62 | # | |
c7163083 | 63 | /spl/ |
93f70dfd | 64 | /tpl/ |
01124327 | 65 | /defconfig |
93f70dfd | 66 | |
1f659b2e MY |
67 | # |
68 | # Generated include files | |
69 | # | |
801c4822 JC |
70 | /include/autoconf.mk* |
71 | /include/config.h | |
1f659b2e | 72 | /include/config/ |
16a354f9 | 73 | /include/generated/ |
16a354f9 | 74 | |
a2df4da3 JCPV |
75 | # stgit generated dirs |
76 | patches-* | |
51ecde94 | 77 | .stgit-edit.txt |
a2df4da3 JCPV |
78 | |
79 | # quilt's files | |
80 | patches | |
81 | series | |
82 | ||
bfa0af6b MF |
83 | # gdb files |
84 | .gdb_history | |
85 | ||
a2df4da3 JCPV |
86 | # cscope files |
87 | cscope.* | |
f2302d44 | 88 | |
650632fe | 89 | # tags files |
082becd0 | 90 | /tags |
650632fe MH |
91 | /ctags |
92 | /etags | |
93 | ||
1dbdc76c MY |
94 | # gnu global files |
95 | GPATH | |
96 | GRTAGS | |
97 | GSYMS | |
98 | GTAGS | |
ea531e3a MY |
99 | |
100 | *.orig | |
101 | *~ | |
102 | \#*# | |
0d5addaf SG |
103 | |
104 | # Python cache | |
105 | __pycache__ | |
f0198f7f SG |
106 | |
107 | # Python code coverage output (python3-coverage html) | |
108 | /htmlcov/ | |
feafc61e SG |
109 | |
110 | # pylint files | |
111 | /pylint.cur | |
112 | /pylint.out/ | |
41cd6fab | 113 | |
51963792 SG |
114 | # qconfig database |
115 | /qconfig.db | |
b703bda0 JMC |
116 | |
117 | # Clang's compilation database file | |
118 | /compile_commands.json |