+Ignore stipped directories of the sourceforge.net mkdump CVS.
[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-parisc
106 asm-ppc
107 asm-ppc64
108 asm-s390
109 asm-sh
110 asm-sh64
111 asm-sparc
112 asm-sparc64
113 asm-um
114 asm-v850
115 autofs
116 autofs4
117 befs
118 bfs
119 cifs
120 coda
121 cramfs
122 cris
123 debugfs
124 devfs
125 devpts
126 drivers
127 efs
128 exportfs
129 ext2
130 ext3
131 fat
132 freevxfs
133 frv
134 h8300
135 hfs
136 hfsplus
137 hostfs
138 hpfs
139 hppfs
140 hugetlbfs
141 intermezzo
142 isofs
143 jbd
144 jffs
145 jffs2
146 jfs
147 lockd
148 m32r
149 m68k
150 m68knommu
151 minix
152 mips
153 msdos
154 ncpfs
155 net
156 nfs
157 nfsd
158 nls
159 ntfs
160 openpromfs
161 parisc
162 partitions
163 ppc
164 ppc64
165 proc
166 qnx4
167 ramfs
168 reiserfs
169 romfs
170 s390
171 sh
172 sh64
173 smbfs
174 sound
175 sparc
176 sparc64
177 sysfs
178 sysv
179 udf
180 ufs
181 um
182 umsdos
183 v850
184 vfat
185 xfs
186
187 );
188
189 1;