Skip to content

Commit 49cfeca

Browse files
committed
wtf git
1 parent 9ffc50d commit 49cfeca

File tree

8,031 files changed

+24606
-1388136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,031 files changed

+24606
-1388136
lines changed

.gitignore

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
# SPDX-License-Identifier: GPL-2.0-only
2+
#
3+
# NOTE! Don't add files that are generated in specific
4+
# subdirectories here. Add them in the ".gitignore" file
5+
# in that subdirectory instead.
6+
#
7+
# NOTE! Please use 'git ls-files -i --exclude-standard'
8+
# command after changing this file, to see if there are
9+
# any tracked files which get ignored after the change.
10+
#
11+
# Normal rules (sorted alphabetically)
12+
#
13+
.*
14+
*.a
15+
*.asn1.[ch]
16+
*.c.[012]*.*
17+
*.dt.yaml
18+
*.dwo
19+
*.gcno
20+
*.i
21+
*.ko
22+
*.lex.c
23+
*.ll
24+
*.lst
25+
*.lz4
26+
*.lzma
27+
*.lzo
28+
*.mod
29+
*.mod.c
30+
*.o
31+
*.o.*
32+
*.s
33+
*.so
34+
*.so.dbg
35+
*.su
36+
*.symtypes
37+
*.tab.[ch]
38+
*.tar
39+
*.xz
40+
Module.symvers
41+
modules.builtin
42+
modules.order
43+
44+
#
45+
# Top-level generic files
46+
#
47+
/tags
48+
/TAGS
49+
/linux
50+
/modules-only.symvers
51+
/vmlinux
52+
/vmlinux.32
53+
/vmlinux-gdb.py
54+
/vmlinuz
55+
/System.map
56+
/Module.markers
57+
/modules.builtin.modinfo
58+
/modules.nsdeps
59+
/vmlinux.symvers
60+
#
61+
# RPM spec file (make rpm-pkg)
62+
#
63+
/*.spec
64+
65+
#
66+
# Debian directory (make deb-pkg)
67+
#
68+
/debian/
69+
/C630/wifi-extra/crda-3.18/debian/crda/
70+
/C630/wifi-extra/wireless-regdb-2018.05.09/debian/wireless-regdb/
71+
/C630/wifi-extra/wireless-regdb-2018.05.09/debian/files
72+
/C630/wifi-extra/wireless-regdb-2018.05.09/debian/wireless-regdb.debhelper.log
73+
/C630/wifi-extra/wireless-regdb-2018.05.09/debian/wireless-regdb.substvars
74+
/C630/wifi-extra/wireless-regdb-2018.05.09/debian/rules.og
75+
76+
#
77+
# Snap directory (make snap-pkg)
78+
#
79+
/snap/
80+
81+
#
82+
# tar directory (make tar*-pkg)
83+
#
84+
/tar-install/
85+
86+
#
87+
# We don't want to ignore the following even if they are dot-files
88+
#
89+
!.clang-format
90+
!.cocciconfig
91+
!.get_maintainer.ignore
92+
!.gitattributes
93+
!.gitignore
94+
!.mailmap
95+
96+
#
97+
# Generated include files
98+
#
99+
/include/config/
100+
/include/generated/
101+
/include/ksym/
102+
/arch/*/include/generated/
103+
104+
# stgit generated dirs
105+
patches-*
106+
107+
# quilt's files
108+
patches
109+
series
110+
111+
# cscope files
112+
cscope.*
113+
ncscope.*
114+
115+
# gnu global files
116+
GPATH
117+
GRTAGS
118+
GSYMS
119+
GTAGS
120+
121+
# id-utils files
122+
ID
123+
124+
*.rej
125+
*.orig
126+
*~
127+
\#*#
128+
129+
#
130+
# Leavings from module signing
131+
#
132+
extra_certificates
133+
signing_key.pem
134+
signing_key.priv
135+
signing_key.x509
136+
x509.genkey
137+
138+
# Kconfig presets
139+
/all.config
140+
/alldef.config
141+
/allmod.config
142+
/allno.config
143+
/allrandom.config
144+
/allyes.config
145+
146+
# Kdevelop4
147+
*.kdev4
148+
149+
# Clang's compilation database file
150+
/compile_commands.json
151+
152+
/drivers/gpio/gpiolib.c.bk
153+
/drivers/usb/misc/ft232h-intf.c-commented-code
154+
/drivers/usb/misc/ft232h-intf.c-time-b4-last
155+
/drivers/usb/misc/ft232h-intf.c.all-good-except-unload
156+
/drivers/usb/misc/ft232h-intf.c.best-irq
157+
/drivers/usb/misc/ft232h-intf.c.doesnt-seem-to-crash-on-removal
158+
/drivers/usb/misc/ft232h-intf.c.gpio-gpiod-hybrid
159+
/drivers/usb/misc/ft232h-intf.c.irq-works
160+
/drivers/usb/misc/ft232h-intf.c.newest
161+
/drivers/usb/misc/ft232h-intf.c.no-modinfo
162+
/drivers/usb/misc/ft232h-intf.c.untested
163+
/drivers/usb/misc/ft232h-intf.c.working.gpiod-irq-poll-and-ce-output

0 commit comments

Comments
 (0)