+cvs.isdn4linux.de
[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 asm-offsets.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
87 );
88
89 # sourceforge.net mkdump stripped CVS:
90 push @list,qw(
91
92 adfs
93 affs
94 afs
95 alpha
96 arm
97 arm26
98 asm-alpha
99 asm-arm
100 asm-arm26
101 asm-cris
102 asm-frv
103 asm-h8300
104 asm-m32r
105 asm-m68k
106 asm-m68knommu
107 asm-mips
108 asm-mips64
109 asm-parisc
110 asm-ppc
111 asm-ppc64
112 asm-s390
113 asm-sh
114 asm-sh64
115 asm-sparc
116 asm-sparc64
117 asm-um
118 asm-v850
119 autofs
120 autofs4
121 befs
122 bfs
123 cifs
124 coda
125 cramfs
126 cris
127 debugfs
128 devfs
129 devpts
130 drivers
131 efs
132 exportfs
133 ext2
134 ext3
135 fat
136 freevxfs
137 frv
138 h8300
139 hfs
140 hfsplus
141 hostfs
142 hpfs
143 hppfs
144 hugetlbfs
145 intermezzo
146 isofs
147 jbd
148 jffs
149 jffs2
150 jfs
151 lockd
152 m32r
153 m68k
154 m68knommu
155 minix
156 mips
157 msdos
158 ncpfs
159 net
160 nfs
161 nfsd
162 nls
163 ntfs
164 openpromfs
165 parisc
166 partitions
167 ppc
168 ppc64
169 proc
170 qnx4
171 ramfs
172 reiserfs
173 romfs
174 s390
175 sh
176 sh64
177 smbfs
178 sound
179 sparc
180 sparc64
181 sysfs
182 sysv
183 udf
184 ufs
185 um
186 umsdos
187 v850
188 vfat
189 xfs
190
191 ) if !$ENV{"KERNELIGNORELIST_FULL"};
192
193 1;