+Some Linux kernel sources handling utilities.
[nethome.git] / bin / kernel / My-KernelIgnoreList.pm
1 # $Id$
2 #
3 # List of files to ignore; all the compile-time generated files listed here.
4 # Used by: diffkernel(1), kernelcvsignore(1)
5
6
7 package My::KernelIgnoreList;
8 use strict;
9 use warnings;
10 our @list=qw(
11
12 .cvsignore
13 .tmp_System.map
14 .tmp_kallsyms1.S
15 .tmp_kallsyms2.S
16 System.map
17 .config
18 .config.old
19 .version
20 Module.symvers
21 *.cmd
22 asm-offsets.s
23 vmlinux.lds
24 *.mod.c
25 autoconf.h
26 compile.h
27 config_data.h
28 vsyscall.lds
29 *.o
30 *.mod
31 consolemap_deftbl.c
32 defkeymap.c
33 classlist.h
34 devlist.h
35 asm
36 asm_offsets.h
37 config
38 version.h
39 crc32table.h
40 keywords.c
41 lex.c
42 parse.c
43 parse.h
44 lex.zconf.c
45 zconf.tab.c
46 zconf.tab.h
47 elfconfig.h
48 tags
49 initramfs_list
50 *.orig
51 vmlinux
52 .tmp_versions
53 .tmp_vmlinux1
54 .tmp_vmlinux2
55 bootsect
56 bzImage
57 setup
58 vmlinux.bin
59 vmlinux.bin.gz
60 build
61 *.so
62 *.a
63 gen-devlist
64 *.ko
65 config_data.gz
66 gen_crc32table
67 bin2c
68 conmakehash
69 kallsyms
70 docproc
71 fixdep
72 split-include
73 genksyms
74 mconf
75 lxdialog
76 mk_elfconfig
77 modpost
78 gen_init_cpio
79 initramfs_data.cpio
80 initramfs_data.cpio.gz
81
82 );
83 1;