kernel: modules: kmod-fs-isofs depends on kmod-lib-zlib
[openwrt/staging/yousong.git] / package / kernel / modules / fs.mk
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 FS_MENU:=Filesystems
9
10 define KernelPackage/fs-autofs4
11 SUBMENU:=$(FS_MENU)
12 TITLE:=AUTOFS4 filesystem support
13 KCONFIG:=CONFIG_AUTOFS4_FS
14 FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.ko
15 AUTOLOAD:=$(call AutoLoad,30,autofs4)
16 endef
17
18 define KernelPackage/fs-autofs4/description
19 Kernel module for AutoFS4 support
20 endef
21
22 $(eval $(call KernelPackage,fs-autofs4))
23
24
25 define KernelPackage/fs-btrfs
26 SUBMENU:=$(FS_MENU)
27 TITLE:=BTRFS filesystem support
28 DEPENDS:=+kmod-lib-crc32c +kmod-lib-lzo +kmod-lib-zlib
29 KCONFIG:=\
30 CONFIG_BTRFS_FS \
31 CONFIG_BTRFS_FS_POSIX_ACL=n \
32 CONFIG_BTRFS_FS_CHECK_INTEGRITY=n
33 FILES:=\
34 $(LINUX_DIR)/fs/btrfs/btrfs.ko
35 AUTOLOAD:=$(call AutoLoad,30,btrfs,1)
36 endef
37
38 define KernelPackage/fs-btrfs/description
39 Kernel module for BTRFS support
40 endef
41
42 $(eval $(call KernelPackage,fs-btrfs))
43
44
45 define KernelPackage/fs-cifs
46 SUBMENU:=$(FS_MENU)
47 TITLE:=CIFS support
48 KCONFIG:= \
49 CONFIG_CIFS \
50 CONFIG_CIFS_DFS_UPCALL=n \
51 CONFIG_CIFS_UPCALL=n
52 FILES:=$(LINUX_DIR)/fs/cifs/cifs.ko
53 AUTOLOAD:=$(call AutoLoad,30,cifs)
54 $(call AddDepends/nls)
55 DEPENDS+= \
56 +kmod-crypto-arc4 \
57 +kmod-crypto-hmac \
58 +kmod-crypto-md5 \
59 +kmod-crypto-md4 \
60 +kmod-crypto-des \
61 +kmod-crypto-ecb \
62 +!LINUX_3_3&&!LINUX_3_6:kmod-crypto-sha256
63 endef
64
65 define KernelPackage/fs-cifs/description
66 Kernel module for CIFS support
67 endef
68
69 $(eval $(call KernelPackage,fs-cifs))
70
71
72 define KernelPackage/fs-configfs
73 SUBMENU:=$(FS_MENU)
74 TITLE:=Configuration filesystem support
75 KCONFIG:= \
76 CONFIG_CONFIGFS_FS
77 FILES:=$(LINUX_DIR)/fs/configfs/configfs.ko
78 AUTOLOAD:=$(call AutoLoad,30,configfs)
79 endef
80
81 define KernelPackage/fs-configfs/description
82 Kernel module for configfs support
83 endef
84
85 $(eval $(call KernelPackage,fs-configfs))
86
87
88 define KernelPackage/fs-exportfs
89 SUBMENU:=$(FS_MENU)
90 TITLE:=exportfs kernel server support
91 KCONFIG:=CONFIG_EXPORTFS
92 FILES=$(LINUX_DIR)/fs/exportfs/exportfs.ko
93 AUTOLOAD:=$(call AutoLoad,20,exportfs)
94 endef
95
96 define KernelPackage/fs-exportfs/description
97 Kernel module for exportfs. Needed for some other modules.
98 endef
99
100 $(eval $(call KernelPackage,fs-exportfs))
101
102
103 define KernelPackage/fs-ext4
104 SUBMENU:=$(FS_MENU)
105 TITLE:=EXT4 filesystem support
106 KCONFIG:= \
107 CONFIG_EXT4_FS \
108 CONFIG_JBD2
109 FILES:= \
110 $(LINUX_DIR)/fs/ext4/ext4.ko \
111 $(LINUX_DIR)/fs/jbd2/jbd2.ko \
112 $(LINUX_DIR)/fs/mbcache.ko
113 AUTOLOAD:=$(call AutoLoad,30,mbcache jbd2 ext4,1)
114 $(call AddDepends/crc16, +!LINUX_3_3:kmod-crypto-hash)
115 endef
116
117 define KernelPackage/fs-ext4/description
118 Kernel module for EXT4 filesystem support
119 endef
120
121 $(eval $(call KernelPackage,fs-ext4))
122
123
124 define KernelPackage/fuse
125 SUBMENU:=$(FS_MENU)
126 TITLE:=FUSE (Filesystem in Userspace) support
127 KCONFIG:= CONFIG_FUSE_FS
128 FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
129 AUTOLOAD:=$(call AutoLoad,80,fuse)
130 endef
131
132 define KernelPackage/fuse/description
133 Kernel module for userspace filesystem support
134 endef
135
136 $(eval $(call KernelPackage,fuse))
137
138
139 define KernelPackage/fs-hfs
140 SUBMENU:=$(FS_MENU)
141 TITLE:=HFS filesystem support
142 KCONFIG:=CONFIG_HFS_FS
143 FILES:=$(LINUX_DIR)/fs/hfs/hfs.ko
144 AUTOLOAD:=$(call AutoLoad,30,hfs)
145 $(call AddDepends/nls)
146 endef
147
148 define KernelPackage/fs-hfs/description
149 Kernel module for HFS filesystem support
150 endef
151
152 $(eval $(call KernelPackage,fs-hfs))
153
154
155 define KernelPackage/fs-hfsplus
156 SUBMENU:=$(FS_MENU)
157 TITLE:=HFS+ filesystem support
158 KCONFIG:=CONFIG_HFSPLUS_FS
159 FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.ko
160 AUTOLOAD:=$(call AutoLoad,30,hfsplus)
161 $(call AddDepends/nls,utf8)
162 endef
163
164 define KernelPackage/fs-hfsplus/description
165 Kernel module for HFS+ filesystem support
166 endef
167
168 $(eval $(call KernelPackage,fs-hfsplus))
169
170
171 define KernelPackage/fs-isofs
172 SUBMENU:=$(FS_MENU)
173 TITLE:=ISO9660 filesystem support
174 DEPENDS:=+kmod-lib-zlib
175 KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
176 FILES:=$(LINUX_DIR)/fs/isofs/isofs.ko
177 AUTOLOAD:=$(call AutoLoad,30,isofs)
178 $(call AddDepends/nls)
179 endef
180
181 define KernelPackage/fs-isofs/description
182 Kernel module for ISO9660 filesystem support
183 endef
184
185 $(eval $(call KernelPackage,fs-isofs))
186
187
188 define KernelPackage/fs-minix
189 SUBMENU:=$(FS_MENU)
190 TITLE:=Minix filesystem support
191 KCONFIG:=CONFIG_MINIX_FS
192 FILES:=$(LINUX_DIR)/fs/minix/minix.ko
193 AUTOLOAD:=$(call AutoLoad,30,minix)
194 endef
195
196 define KernelPackage/fs-minix/description
197 Kernel module for Minix filesystem support
198 endef
199
200 $(eval $(call KernelPackage,fs-minix))
201
202
203 define KernelPackage/fs-msdos
204 SUBMENU:=$(FS_MENU)
205 TITLE:=MSDOS filesystem support
206 KCONFIG:=CONFIG_MSDOS_FS
207 FILES:=$(LINUX_DIR)/fs/fat/msdos.ko
208 AUTOLOAD:=$(call AutoLoad,40,msdos)
209 $(call AddDepends/nls)
210 endef
211
212 define KernelPackage/fs-msdos/description
213 Kernel module for MSDOS filesystem support
214 endef
215
216 $(eval $(call KernelPackage,fs-msdos))
217
218
219 define KernelPackage/fs-nfs
220 SUBMENU:=$(FS_MENU)
221 TITLE:=NFS filesystem support
222 DEPENDS:=+kmod-fs-nfs-common
223 KCONFIG:= \
224 CONFIG_NFS_FS \
225 CONFIG_NFS_USE_LEGACY_DNS=n \
226 CONFIG_NFS_USE_NEW_IDMAPPER=n
227 FILES:= \
228 $(LINUX_DIR)/fs/nfs/nfs.ko
229 AUTOLOAD:=$(call AutoLoad,40,nfs)
230 endef
231
232 define KernelPackage/fs-nfs/description
233 Kernel module for NFS support
234 endef
235
236 $(eval $(call KernelPackage,fs-nfs))
237
238
239 define KernelPackage/fs-nfs-common
240 SUBMENU:=$(FS_MENU)
241 TITLE:=Common NFS filesystem modules
242 KCONFIG:= \
243 CONFIG_LOCKD \
244 CONFIG_SUNRPC
245 FILES:= \
246 $(LINUX_DIR)/fs/lockd/lockd.ko \
247 $(LINUX_DIR)/net/sunrpc/sunrpc.ko
248 AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
249 endef
250
251 $(eval $(call KernelPackage,fs-nfs-common))
252
253
254 define KernelPackage/fs-nfs-common-v4
255 SUBMENU:=$(FS_MENU)
256 TITLE:=Common NFS V4 filesystem modules
257 KCONFIG+=\
258 CONFIG_SUNRPC_GSS\
259 CONFIG_NFS_V4=y\
260 CONFIG_NFSD_V4=y
261 DEPENDS:= @BROKEN
262 FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.ko
263 AUTOLOAD=$(call AutoLoad,30,auth_rpcgss)
264 endef
265
266 define KernelPackage/fs-nfs-common-v4/description
267 Kernel modules for NFS V4 & NFSD V4 kernel support
268 endef
269
270 $(eval $(call KernelPackage,fs-nfs-common-v4))
271
272
273 define KernelPackage/fs-nfsd
274 SUBMENU:=$(FS_MENU)
275 TITLE:=NFS kernel server support
276 DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
277 KCONFIG:= \
278 CONFIG_NFSD \
279 CONFIG_NFSD_FAULT_INJECTION=n
280 FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.ko
281 AUTOLOAD:=$(call AutoLoad,40,nfsd)
282 endef
283
284 define KernelPackage/fs-nfsd/description
285 Kernel module for NFS kernel server support
286 endef
287
288 $(eval $(call KernelPackage,fs-nfsd))
289
290
291 define KernelPackage/fs-ntfs
292 SUBMENU:=$(FS_MENU)
293 TITLE:=NTFS filesystem support
294 KCONFIG:=CONFIG_NTFS_FS
295 FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.ko
296 AUTOLOAD:=$(call AutoLoad,30,ntfs)
297 $(call AddDepends/nls)
298 endef
299
300 define KernelPackage/fs-ntfs/description
301 Kernel module for NTFS filesystem support
302 endef
303
304 $(eval $(call KernelPackage,fs-ntfs))
305
306
307 define KernelPackage/fs-reiserfs
308 SUBMENU:=$(FS_MENU)
309 TITLE:=ReiserFS filesystem support
310 KCONFIG:=CONFIG_REISERFS_FS
311 FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
312 AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
313 endef
314
315 define KernelPackage/fs-reiserfs/description
316 Kernel module for ReiserFS support
317 endef
318
319 $(eval $(call KernelPackage,fs-reiserfs))
320
321
322 define KernelPackage/fs-udf
323 SUBMENU:=$(FS_MENU)
324 TITLE:=UDF filesystem support
325 KCONFIG:=CONFIG_UDF_FS
326 FILES:=$(LINUX_DIR)/fs/udf/udf.ko
327 AUTOLOAD:=$(call AutoLoad,30,udf)
328 DEPENDS:=+kmod-lib-crc-itu-t
329 $(call AddDepends/nls)
330 endef
331
332 define KernelPackage/fs-udf/description
333 Kernel module for UDF filesystem support
334 endef
335
336 $(eval $(call KernelPackage,fs-udf))
337
338
339 define KernelPackage/fs-vfat
340 SUBMENU:=$(FS_MENU)
341 TITLE:=VFAT filesystem support
342 KCONFIG:= \
343 CONFIG_FAT_FS \
344 CONFIG_VFAT_FS
345 FILES:= \
346 $(LINUX_DIR)/fs/fat/fat.ko \
347 $(LINUX_DIR)/fs/fat/vfat.ko
348 AUTOLOAD:=$(call AutoLoad,30,fat vfat)
349 $(call AddDepends/nls)
350 endef
351
352 define KernelPackage/fs-vfat/description
353 Kernel module for VFAT filesystem support
354 endef
355
356 $(eval $(call KernelPackage,fs-vfat))
357
358
359 define KernelPackage/fs-xfs
360 SUBMENU:=$(FS_MENU)
361 TITLE:=XFS filesystem support
362 KCONFIG:=CONFIG_XFS_FS
363 DEPENDS:= +kmod-fs-exportfs @!avr32
364 FILES:=$(LINUX_DIR)/fs/xfs/xfs.ko
365 AUTOLOAD:=$(call AutoLoad,30,xfs,1)
366 endef
367
368 define KernelPackage/fs-xfs/description
369 Kernel module for XFS support
370 endef
371
372 $(eval $(call KernelPackage,fs-xfs))