]>
Commit | Line | Data |
---|---|---|
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 | # | |
6 | # Normal rules (sorted alphabetically) | |
7 | # | |
8 | .* | |
9 | !.checkpatch.conf | |
10 | *.a | |
11 | *.asn1.[ch] | |
12 | *.bin | |
13 | *.cfgout | |
14 | *.cover | |
15 | *.dtb | |
16 | *.dtbo | |
17 | *.dtb.S | |
18 | *.elf | |
19 | *.exe | |
20 | *.gcda | |
21 | *.gcno | |
22 | *.i | |
23 | *.img | |
24 | *.lex.c | |
25 | *.lst | |
26 | *.mod.c | |
27 | *.mbx | |
28 | *.o | |
29 | *.o.* | |
30 | *.order | |
31 | *.patch | |
32 | *.s | |
33 | *.su | |
34 | *.swp | |
35 | *.tab.[ch] | |
36 | ||
37 | # Build tree | |
38 | /build-* | |
39 | ||
40 | # | |
41 | # Top-level generic files | |
42 | # | |
43 | fit-dtb.blob* | |
44 | /MLO* | |
45 | /SPL* | |
46 | /System.map | |
47 | /u-boot* | |
48 | /boards.cfg | |
49 | /*.log | |
50 | ||
51 | # | |
52 | # git files that we don't want to ignore even it they are dot-files | |
53 | # | |
54 | !.gitignore | |
55 | !.mailmap | |
56 | ||
57 | # | |
58 | # Generated files | |
59 | # | |
60 | /spl/ | |
61 | /tpl/ | |
62 | /defconfig | |
63 | ||
64 | # | |
65 | # Generated include files | |
66 | # | |
67 | /include/config/ | |
68 | /include/generated/ | |
69 | ||
70 | # stgit generated dirs | |
71 | patches-* | |
72 | .stgit-edit.txt | |
73 | ||
74 | # quilt's files | |
75 | patches | |
76 | series | |
77 | ||
78 | # gdb files | |
79 | .gdb_history | |
80 | ||
81 | # cscope files | |
82 | cscope.* | |
83 | ||
84 | # tags files | |
85 | /tags | |
86 | /ctags | |
87 | /etags | |
88 | ||
89 | # gnu global files | |
90 | GPATH | |
91 | GRTAGS | |
92 | GSYMS | |
93 | GTAGS | |
94 | ||
95 | *.orig | |
96 | *~ | |
97 | \#*# | |
98 | ||
99 | # Python cache | |
100 | __pycache__ | |
101 | ||
102 | # Python code coverage output (python3-coverage html) | |
103 | /htmlcov/ | |
104 | ||
105 | # pylint files | |
106 | /pylint.cur | |
107 | /pylint.out/ | |
108 | ||
109 | # moveconfig database | |
110 | /moveconfig.db |