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