Fix: scsi: sd: Atomic write support added in 6.11-rc1
[lttng-modules.git] / .gitignore
1 # SPDX-FileCopyrightText: 2024 EfficiOS Inc.
2 #
3 # SPDX-License-Identifier: GPL-2.0-only OR LGPL-2.1-only
4 #
5 # NOTE! Don't add files that are generated in specific
6 # subdirectories here. Add them in the ".gitignore" file
7 # in that subdirectory instead.
8 #
9 # NOTE! Please use 'git ls-files -i --exclude-standard'
10 # command after changing this file, to see if there are
11 # any tracked files which get ignored after the change.
12 #
13 # Normal rules (sorted alphabetically)
14 #
15 .*
16 *.a
17 *.asn1.[ch]
18 *.bin
19 *.bz2
20 *.c.[012]*.*
21 *.dt.yaml
22 *.dtb
23 *.dtb.S
24 *.dwo
25 *.elf
26 *.gcno
27 *.gz
28 *.i
29 *.ko
30 *.lex.c
31 *.ll
32 *.lst
33 *.lz4
34 *.lzma
35 *.lzo
36 *.mod
37 *.mod.c
38 *.o
39 *.o.*
40 *.patch
41 *.s
42 *.so
43 *.so.dbg
44 *.su
45 *.symtypes
46 *.tab.[ch]
47 *.tar
48 *.xz
49 Module.symvers
50 modules.builtin
51 modules.order
52
53 #
54 # Top-level generic files
55 #
56 /tags
57 /TAGS
58 /linux
59 /vmlinux
60 /vmlinux.32
61 /vmlinux-gdb.py
62 /vmlinuz
63 /System.map
64 /Module.markers
65 /modules.builtin.modinfo
66 /modules.nsdeps
67
68 #
69 # RPM spec file (make rpm-pkg)
70 #
71 /*.spec
72
73 #
74 # Debian directory (make deb-pkg)
75 #
76 /debian/
77
78 #
79 # Snap directory (make snap-pkg)
80 #
81 /snap/
82
83 #
84 # tar directory (make tar*-pkg)
85 #
86 /tar-install/
87
88 #
89 # We don't want to ignore the following even if they are dot-files
90 #
91 !.clang-format
92 !.cocciconfig
93 !.get_maintainer.ignore
94 !.gitattributes
95 !.gitignore
96 !.mailmap
97
98 #
99 # Generated include files
100 #
101 /include/config/
102 /include/generated/
103 /include/ksym/
104 /arch/*/include/generated/
105
106 # stgit generated dirs
107 patches-*
108
109 # quilt's files
110 patches
111 series
112
113 # cscope files
114 cscope.*
115 ncscope.*
116
117 # gnu global files
118 GPATH
119 GRTAGS
120 GSYMS
121 GTAGS
122
123 # id-utils files
124 ID
125
126 *.orig
127 *~
128 \#*#
129
130 #
131 # Leavings from module signing
132 #
133 extra_certificates
134 signing_key.pem
135 signing_key.priv
136 signing_key.x509
137 x509.genkey
138
139 # Kconfig presets
140 /all.config
141 /alldef.config
142 /allmod.config
143 /allno.config
144 /allrandom.config
145 /allyes.config
146
147 # Kdevelop4
148 *.kdev4
149
150 # Clang's compilation database file
151 /compile_commands.json
152
153 # lttng-modules specific
154 /extra_version
155 /include/generated
156 !/.gitreview
This page took 0.035549 seconds and 5 git commands to generate.