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