+--nomcheck
[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;
11
12 push @list,qw(
13
14 CVS
15 .cvsignore
16 .tmp_System.map
17 .tmp_kallsyms1.S
18 .tmp_kallsyms2.S
19 System.map
20 .config
21 .config.old
22 .version
23 Module.symvers
24 *.cmd
25 *.s
26 vmlinux.lds
27 *.mod.c
28 autoconf.h
29 compile.h
30 config_data.h
31 vsyscall.lds
32 *.o
33 *.mod
34 consolemap_deftbl.c
35 defkeymap.c
36 classlist.h
37 devlist.h
38 asm
39 asm_offsets.h
40 config
41 version.h
42 crc32table.h
43 keywords.c
44 lex.c
45 parse.c
46 parse.h
47 lex.zconf.c
48 zconf.tab.c
49 zconf.tab.h
50 elfconfig.h
51 tags
52 initramfs_list
53 *.orig
54 vmlinux
55 .tmp_versions
56 .tmp_vmlinux1
57 .tmp_vmlinux2
58 bootsect
59 bzImage
60 setup
61 vmlinux.bin
62 vmlinux.bin.gz
63 build
64 *.so
65 *.a
66 gen-devlist
67 *.ko
68 config_data.gz
69 gen_crc32table
70 bin2c
71 conmakehash
72 kallsyms
73 docproc
74 fixdep
75 split-include
76 genksyms
77 mconf
78 lxdialog
79 mk_elfconfig
80 modpost
81 gen_init_cpio
82 initramfs_data.cpio
83 initramfs_data.cpio.gz
84 offset.h
85 conf
86 reltab
87
88 );
89
90 # sourceforge.net mkdump stripped CVS:
91 push @list,qw(
92
93 adfs
94 affs
95 afs
96 alpha
97 arm
98 arm26
99 asm-alpha
100 asm-arm
101 asm-arm26
102 asm-cris
103 asm-frv
104 asm-h8300
105 asm-m32r
106 asm-m68k
107 asm-m68knommu
108 asm-mips
109 asm-mips64
110 asm-parisc
111 asm-ppc
112 asm-ppc64
113 asm-s390
114 asm-sh
115 asm-sh64
116 asm-sparc
117 asm-sparc64
118 asm-um
119 asm-v850
120 autofs
121 autofs4
122 befs
123 bfs
124 cifs
125 coda
126 cramfs
127 cris
128 debugfs
129 devfs
130 devpts
131 drivers
132 efs
133 exportfs
134 ext2
135 ext3
136 fat
137 freevxfs
138 frv
139 h8300
140 hfs
141 hfsplus
142 hostfs
143 hpfs
144 hppfs
145 hugetlbfs
146 intermezzo
147 isofs
148 jbd
149 jffs
150 jffs2
151 jfs
152 lockd
153 m32r
154 m68k
155 m68knommu
156 minix
157 mips
158 msdos
159 ncpfs
160 net
161 nfs
162 nfsd
163 nls
164 ntfs
165 openpromfs
166 parisc
167 partitions
168 ppc
169 ppc64
170 proc
171 qnx4
172 ramfs
173 reiserfs
174 romfs
175 s390
176 sh
177 sh64
178 smbfs
179 sound
180 sparc
181 sparc64
182 sysfs
183 sysv
184 udf
185 ufs
186 um
187 umsdos
188 v850
189 vfat
190 xfs
191
192 ) if !$ENV{"KERNELIGNORELIST_FULL"};
193
194 1;