.. | .. |
---|
| 1 | +# SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | # |
---|
2 | 3 | # NOTE! Don't add files that are generated in specific |
---|
3 | 4 | # subdirectories here. Add them in the ".gitignore" file |
---|
.. | .. |
---|
15 | 16 | *.bin |
---|
16 | 17 | *.bz2 |
---|
17 | 18 | *.c.[012]*.* |
---|
| 19 | +*.dt.yaml |
---|
18 | 20 | *.dtb |
---|
19 | 21 | *.dtb.S |
---|
20 | 22 | *.dwo |
---|
.. | .. |
---|
23 | 25 | *.gz |
---|
24 | 26 | *.i |
---|
25 | 27 | *.ko |
---|
| 28 | +*.lds |
---|
26 | 29 | *.lex.c |
---|
27 | 30 | *.ll |
---|
28 | 31 | *.lst |
---|
29 | 32 | *.lz4 |
---|
30 | 33 | *.lzma |
---|
31 | 34 | *.lzo |
---|
| 35 | +*.mod |
---|
32 | 36 | *.mod.c |
---|
33 | 37 | *.o |
---|
34 | 38 | *.o.* |
---|
35 | | -*.order |
---|
36 | 39 | *.patch |
---|
37 | 40 | *.s |
---|
38 | 41 | *.so |
---|
39 | 42 | *.so.dbg |
---|
40 | 43 | *.su |
---|
41 | 44 | *.symtypes |
---|
| 45 | +*.symversions |
---|
42 | 46 | *.tab.[ch] |
---|
43 | 47 | *.tar |
---|
44 | 48 | *.xz |
---|
| 49 | +*.zst |
---|
45 | 50 | Module.symvers |
---|
46 | 51 | modules.builtin |
---|
| 52 | +modules.order |
---|
47 | 53 | |
---|
48 | 54 | # |
---|
49 | 55 | # Top-level generic files |
---|
50 | 56 | # |
---|
51 | | -/boot.img |
---|
52 | | -/kernel.img |
---|
53 | | -/resource.img |
---|
54 | | -/zboot.img |
---|
| 57 | +/*.img |
---|
| 58 | +/out/ |
---|
55 | 59 | /tags |
---|
56 | 60 | /TAGS |
---|
57 | 61 | /linux |
---|
| 62 | +/modules-only.symvers |
---|
58 | 63 | /vmlinux |
---|
59 | 64 | /vmlinux.32 |
---|
| 65 | +/vmlinux.symvers |
---|
60 | 66 | /vmlinux-gdb.py |
---|
61 | 67 | /vmlinuz |
---|
62 | 68 | /System.map |
---|
63 | 69 | /Module.markers |
---|
| 70 | +/modules.builtin.modinfo |
---|
| 71 | +/modules.nsdeps |
---|
64 | 72 | |
---|
65 | 73 | # |
---|
66 | 74 | # RPM spec file (make rpm-pkg) |
---|
.. | .. |
---|
83 | 91 | /tar-install/ |
---|
84 | 92 | |
---|
85 | 93 | # |
---|
86 | | -# git files that we don't want to ignore even if they are dot-files |
---|
| 94 | +# We don't want to ignore the following even if they are dot-files |
---|
87 | 95 | # |
---|
| 96 | +!.clang-format |
---|
| 97 | +!.cocciconfig |
---|
| 98 | +!.get_maintainer.ignore |
---|
| 99 | +!.gitattributes |
---|
88 | 100 | !.gitignore |
---|
89 | 101 | !.mailmap |
---|
90 | | -!.cocciconfig |
---|
91 | | -!.clang-format |
---|
92 | 102 | |
---|
93 | 103 | # |
---|
94 | 104 | # Generated include files |
---|
95 | 105 | # |
---|
96 | | -include/config |
---|
97 | | -include/generated |
---|
98 | | -include/ksym |
---|
99 | | -arch/*/include/generated |
---|
| 106 | +/include/config/ |
---|
| 107 | +/include/generated/ |
---|
| 108 | +/include/ksym/ |
---|
| 109 | +/arch/*/include/generated/ |
---|
100 | 110 | |
---|
101 | 111 | # stgit generated dirs |
---|
102 | 112 | patches-* |
---|
.. | .. |
---|
132 | 142 | x509.genkey |
---|
133 | 143 | |
---|
134 | 144 | # Kconfig presets |
---|
135 | | -all.config |
---|
| 145 | +/all.config |
---|
| 146 | +/alldef.config |
---|
| 147 | +/allmod.config |
---|
| 148 | +/allno.config |
---|
| 149 | +/allrandom.config |
---|
| 150 | +/allyes.config |
---|
| 151 | + |
---|
| 152 | +# Kconfig savedefconfig output |
---|
| 153 | +/defconfig |
---|
136 | 154 | |
---|
137 | 155 | # Kdevelop4 |
---|
138 | 156 | *.kdev4 |
---|
| 157 | + |
---|
| 158 | +# Clang's compilation database file |
---|
| 159 | +/compile_commands.json |
---|
| 160 | + |
---|
| 161 | +# Documentation toolchain |
---|
| 162 | +sphinx_*/ |
---|