diff options
-rw-r--r-- | .gitignore | 30 | ||||
-rw-r--r-- | drivers/char/.gitignore | 3 | ||||
-rw-r--r-- | drivers/pci/.gitignore | 4 | ||||
-rw-r--r-- | drivers/serial/8250_pnp.c | 2 | ||||
-rw-r--r-- | drivers/video/logo/.gitignore | 7 | ||||
-rw-r--r-- | lib/.gitignore | 6 | ||||
-rw-r--r-- | scripts/.gitignore | 4 | ||||
-rw-r--r-- | scripts/basic/.gitignore | 3 | ||||
-rw-r--r-- | scripts/kconfig/.gitignore | 16 | ||||
-rw-r--r-- | scripts/mod/.gitignore | 4 | ||||
-rw-r--r-- | usr/.gitignore | 7 |
11 files changed, 86 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..5014bfa48ac1 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,30 @@ | |||
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 | ||
7 | # | ||
8 | .* | ||
9 | *.o | ||
10 | *.a | ||
11 | *.s | ||
12 | *.ko | ||
13 | *.mod.c | ||
14 | |||
15 | # | ||
16 | # Top-level generic files | ||
17 | # | ||
18 | vmlinux* | ||
19 | System.map | ||
20 | Module.symvers | ||
21 | |||
22 | # | ||
23 | # Generated include files | ||
24 | # | ||
25 | include/asm | ||
26 | include/config | ||
27 | include/linux/autoconf.h | ||
28 | include/linux/compile.h | ||
29 | include/linux/version.h | ||
30 | |||
diff --git a/drivers/char/.gitignore b/drivers/char/.gitignore new file mode 100644 index 000000000000..2b6b1d772ed7 --- /dev/null +++ b/drivers/char/.gitignore | |||
@@ -0,0 +1,3 @@ | |||
1 | consolemap_deftbl.c | ||
2 | defkeymap.c | ||
3 | |||
diff --git a/drivers/pci/.gitignore b/drivers/pci/.gitignore new file mode 100644 index 000000000000..f297ca8d313e --- /dev/null +++ b/drivers/pci/.gitignore | |||
@@ -0,0 +1,4 @@ | |||
1 | classlist.h | ||
2 | devlist.h | ||
3 | gen-devlist | ||
4 | |||
diff --git a/drivers/serial/8250_pnp.c b/drivers/serial/8250_pnp.c index c2786fc41cc5..5d8660a42b77 100644 --- a/drivers/serial/8250_pnp.c +++ b/drivers/serial/8250_pnp.c | |||
@@ -276,6 +276,8 @@ static const struct pnp_device_id pnp_dev_table[] = { | |||
276 | { "SUP1620", 0 }, | 276 | { "SUP1620", 0 }, |
277 | /* SupraExpress 33.6 Data/Fax PnP modem */ | 277 | /* SupraExpress 33.6 Data/Fax PnP modem */ |
278 | { "SUP1760", 0 }, | 278 | { "SUP1760", 0 }, |
279 | /* SupraExpress 56i Sp Intl */ | ||
280 | { "SUP2171", 0 }, | ||
279 | /* Phoebe Micro */ | 281 | /* Phoebe Micro */ |
280 | /* Phoebe Micro 33.6 Data Fax 1433VQH Plug & Play */ | 282 | /* Phoebe Micro 33.6 Data Fax 1433VQH Plug & Play */ |
281 | { "TEX0011", 0 }, | 283 | { "TEX0011", 0 }, |
diff --git a/drivers/video/logo/.gitignore b/drivers/video/logo/.gitignore new file mode 100644 index 000000000000..e48355f538fa --- /dev/null +++ b/drivers/video/logo/.gitignore | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Generated files | ||
3 | # | ||
4 | *_mono.c | ||
5 | *_vga16.c | ||
6 | *_clut224.c | ||
7 | *_gray256.c | ||
diff --git a/lib/.gitignore b/lib/.gitignore new file mode 100644 index 000000000000..3bef1ea94c99 --- /dev/null +++ b/lib/.gitignore | |||
@@ -0,0 +1,6 @@ | |||
1 | # | ||
2 | # Generated files | ||
3 | # | ||
4 | gen_crc32table | ||
5 | crc32table.h | ||
6 | |||
diff --git a/scripts/.gitignore b/scripts/.gitignore new file mode 100644 index 000000000000..b46d68bb9e17 --- /dev/null +++ b/scripts/.gitignore | |||
@@ -0,0 +1,4 @@ | |||
1 | conmakehash | ||
2 | kallsyms | ||
3 | pnmtologo | ||
4 | |||
diff --git a/scripts/basic/.gitignore b/scripts/basic/.gitignore new file mode 100644 index 000000000000..7304e19782c7 --- /dev/null +++ b/scripts/basic/.gitignore | |||
@@ -0,0 +1,3 @@ | |||
1 | fixdep | ||
2 | split-include | ||
3 | docproc | ||
diff --git a/scripts/kconfig/.gitignore b/scripts/kconfig/.gitignore new file mode 100644 index 000000000000..2dac3442e0ac --- /dev/null +++ b/scripts/kconfig/.gitignore | |||
@@ -0,0 +1,16 @@ | |||
1 | # | ||
2 | # Generated files | ||
3 | # | ||
4 | config* | ||
5 | lex.*.c | ||
6 | *.tab.c | ||
7 | *.tab.h | ||
8 | |||
9 | # | ||
10 | # configuration programs | ||
11 | # | ||
12 | conf | ||
13 | mconf | ||
14 | qconf | ||
15 | gconf | ||
16 | kxgettext | ||
diff --git a/scripts/mod/.gitignore b/scripts/mod/.gitignore new file mode 100644 index 000000000000..e9b7abe7b95b --- /dev/null +++ b/scripts/mod/.gitignore | |||
@@ -0,0 +1,4 @@ | |||
1 | elfconfig.h | ||
2 | mk_elfconfig | ||
3 | modpost | ||
4 | |||
diff --git a/usr/.gitignore b/usr/.gitignore new file mode 100644 index 000000000000..be186a82e8d0 --- /dev/null +++ b/usr/.gitignore | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Generated files | ||
3 | # | ||
4 | gen_init_cpio | ||
5 | initramfs_data.cpio | ||
6 | initramfs_data.cpio.gz | ||
7 | initramfs_list | ||