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