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