Fresh pull from upstream
[librecmc/librecmc.git] / package / kernel / linux / 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-fscache
11   SUBMENU:=$(FS_MENU)
12   TITLE:=General filesystem local cache manager
13   DEPENDS:=
14   KCONFIG:=\
15         CONFIG_FSCACHE=m \
16         CONFIG_FSCACHE_STATS=y \
17         CONFIG_FSCACHE_HISTOGRAM=n \
18         CONFIG_FSCACHE_DEBUG=n \
19         CONFIG_FSCACHE_OBJECT_LIST=n \
20         CONFIG_CACHEFILES=y \
21         CONFIG_CACHEFILES_DEBUG=n \
22         CONFIG_CACHEFILES_HISTOGRAM=n
23   FILES:=$(LINUX_DIR)/fs/fscache/fscache.ko
24   AUTOLOAD:=$(call AutoLoad,29,fscache)
25 endef
26
27 $(eval $(call KernelPackage,fs-fscache))
28
29 define KernelPackage/fs-9p
30   SUBMENU:=$(FS_MENU)
31   TITLE:=Plan 9 Resource Sharing Support
32   DEPENDS:=+kmod-9pnet
33   KCONFIG:=\
34         CONFIG_9P_FS \
35         CONFIG_9P_FS_POSIX_ACL=n \
36         CONFIG_9P_FS_SECURITY=n \
37         CONFIG_9P_FSCACHE=n
38   FILES:=$(LINUX_DIR)/fs/9p/9p.ko
39   AUTOLOAD:=$(call AutoLoad,30,9p)
40 endef
41
42 define KernelPackage/fs-9p/description
43   Kernel module for Plan 9 Resource Sharing Support support
44 endef
45
46 $(eval $(call KernelPackage,fs-9p))
47
48 define KernelPackage/fs-afs
49   SUBMENU:=$(FS_MENU)
50   TITLE:=Andrew FileSystem client
51   DEFAULT:=n
52   DEPENDS:=+kmod-rxrpc +kmod-dnsresolver +kmod-fs-fscache
53   KCONFIG:=\
54         CONFIG_AFS_FS=m \
55         CONFIG_AFS_DEBUG=n \
56         CONFIG_AFS_FSCACHE=y
57   FILES:=$(LINUX_DIR)/fs/afs/kafs.ko
58   AUTOLOAD:=$(call AutoLoad,30,kafs)
59 endef
60
61 define KernelPackage/fs-afs/description
62   Kernel module for Andrew FileSystem client support
63 endef
64
65 $(eval $(call KernelPackage,fs-afs))
66
67 define KernelPackage/fs-autofs4
68   SUBMENU:=$(FS_MENU)
69   TITLE:=AUTOFS4 filesystem support
70   KCONFIG:=CONFIG_AUTOFS4_FS
71   FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.ko
72   AUTOLOAD:=$(call AutoLoad,30,autofs4)
73 endef
74
75 define KernelPackage/fs-autofs4/description
76  Kernel module for AutoFS4 support
77 endef
78
79 $(eval $(call KernelPackage,fs-autofs4))
80
81
82 define KernelPackage/fs-btrfs
83   SUBMENU:=$(FS_MENU)
84   TITLE:=BTRFS filesystem support
85   DEPENDS:=+kmod-lib-crc32c +kmod-lib-lzo +kmod-lib-zlib-inflate +kmod-lib-zlib-deflate +kmod-lib-raid6 +kmod-lib-xor
86   KCONFIG:=\
87         CONFIG_BTRFS_FS \
88         CONFIG_BTRFS_FS_POSIX_ACL=n \
89         CONFIG_BTRFS_FS_CHECK_INTEGRITY=n
90   FILES:=\
91         $(LINUX_DIR)/fs/btrfs/btrfs.ko
92   AUTOLOAD:=$(call AutoLoad,30,btrfs,1)
93 endef
94
95 define KernelPackage/fs-btrfs/description
96  Kernel module for BTRFS support
97 endef
98
99 $(eval $(call KernelPackage,fs-btrfs))
100
101
102 define KernelPackage/fs-cifs
103   SUBMENU:=$(FS_MENU)
104   TITLE:=CIFS support
105   KCONFIG:= \
106         CONFIG_CIFS \
107         CONFIG_CIFS_XATTR=y \
108         CONFIG_CIFS_DFS_UPCALL=n \
109         CONFIG_CIFS_UPCALL=n
110   FILES:=$(LINUX_DIR)/fs/cifs/cifs.ko
111   AUTOLOAD:=$(call AutoLoad,30,cifs)
112   $(call AddDepends/nls)
113   DEPENDS+= \
114     +kmod-crypto-hmac \
115     +kmod-crypto-md5 \
116     +kmod-crypto-md4 \
117     +kmod-crypto-des \
118     +kmod-crypto-ecb \
119     +kmod-crypto-sha256
120 endef
121
122 define KernelPackage/fs-cifs/description
123  Kernel module for CIFS support
124 endef
125
126 $(eval $(call KernelPackage,fs-cifs))
127
128
129 define KernelPackage/fs-configfs
130   SUBMENU:=$(FS_MENU)
131   TITLE:=Configuration filesystem support
132   KCONFIG:= \
133         CONFIG_CONFIGFS_FS
134   FILES:=$(LINUX_DIR)/fs/configfs/configfs.ko
135   AUTOLOAD:=$(call AutoLoad,30,configfs)
136 endef
137
138 define KernelPackage/fs-configfs/description
139  Kernel module for configfs support
140 endef
141
142 $(eval $(call KernelPackage,fs-configfs))
143
144 define KernelPackage/fs-cramfs
145   SUBMENU:=$(FS_MENU)
146   TITLE:=Compressed RAM/ROM filesystem support
147   DEPENDS:=+kmod-lib-zlib-inflate
148   KCONFIG:= \
149         CONFIG_CRAMFS
150   FILES:=$(LINUX_DIR)/fs/cramfs/cramfs.ko
151   AUTOLOAD:=$(call AutoLoad,30,cramfs)
152 endef
153
154 define KernelPackage/fs-cramfs/description
155  Kernel module for cramfs support
156 endef
157
158 $(eval $(call KernelPackage,fs-cramfs))
159
160 define KernelPackage/fs-exportfs
161   SUBMENU:=$(FS_MENU)
162   TITLE:=exportfs kernel server support
163   KCONFIG:=CONFIG_EXPORTFS
164   FILES=$(LINUX_DIR)/fs/exportfs/exportfs.ko
165   AUTOLOAD:=$(call AutoLoad,20,exportfs,1)
166 endef
167
168 define KernelPackage/fs-exportfs/description
169  Kernel module for exportfs. Needed for some other modules.
170 endef
171
172 $(eval $(call KernelPackage,fs-exportfs))
173
174
175 define KernelPackage/fs-ext4
176   SUBMENU:=$(FS_MENU)
177   TITLE:=EXT4 filesystem support
178   DEPENDS := \
179     +kmod-lib-crc16 \
180     +kmod-crypto-hash \
181     +kmod-crypto-crc32c
182   KCONFIG:= \
183         CONFIG_EXT4_FS \
184         CONFIG_EXT4_ENCRYPTION=n \
185         CONFIG_JBD2
186   FILES:= \
187         $(LINUX_DIR)/fs/ext4/ext4.ko \
188         $(LINUX_DIR)/fs/jbd2/jbd2.ko \
189         $(LINUX_DIR)/fs/mbcache.ko
190   AUTOLOAD:=$(call AutoLoad,30,mbcache jbd2 ext4,1)
191 endef
192
193 define KernelPackage/fs-ext4/description
194  Kernel module for EXT4 filesystem support
195 endef
196
197 $(eval $(call KernelPackage,fs-ext4))
198
199
200 define KernelPackage/fs-f2fs
201   SUBMENU:=$(FS_MENU)
202   TITLE:=F2FS filesystem support
203   KCONFIG:= \
204         CONFIG_F2FS_FS \
205         CONFIG_F2FS_STAT_FS=y \
206         CONFIG_F2FS_FS_XATTR=y \
207         CONFIG_F2FS_FS_POSIX_ACL=n \
208         CONFIG_F2FS_FS_SECURITY=n \
209         CONFIG_F2FS_CHECK_FS=n
210   FILES:=$(LINUX_DIR)/fs/f2fs/f2fs.ko
211   AUTOLOAD:=$(call AutoLoad,30,f2fs,1)
212 endef
213
214 define KernelPackage/fs-f2fs/description
215  Kernel module for F2FS filesystem support
216 endef
217
218 $(eval $(call KernelPackage,fs-f2fs))
219
220
221 define KernelPackage/fuse
222   SUBMENU:=$(FS_MENU)
223   TITLE:=FUSE (Filesystem in Userspace) support
224   KCONFIG:= CONFIG_FUSE_FS
225   FILES:=$(LINUX_DIR)/fs/fuse/fuse.ko
226   AUTOLOAD:=$(call AutoLoad,80,fuse)
227 endef
228
229 define KernelPackage/fuse/description
230  Kernel module for userspace filesystem support
231 endef
232
233 $(eval $(call KernelPackage,fuse))
234
235
236 define KernelPackage/fs-hfs
237   SUBMENU:=$(FS_MENU)
238   TITLE:=HFS filesystem support
239   KCONFIG:=CONFIG_HFS_FS
240   FILES:=$(LINUX_DIR)/fs/hfs/hfs.ko
241   AUTOLOAD:=$(call AutoLoad,30,hfs)
242   $(call AddDepends/nls)
243 endef
244
245 define KernelPackage/fs-hfs/description
246  Kernel module for HFS filesystem support
247 endef
248
249 $(eval $(call KernelPackage,fs-hfs))
250
251
252 define KernelPackage/fs-hfsplus
253   SUBMENU:=$(FS_MENU)
254   TITLE:=HFS+ filesystem support
255   KCONFIG:=CONFIG_HFSPLUS_FS
256   FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.ko
257   AUTOLOAD:=$(call AutoLoad,30,hfsplus)
258   $(call AddDepends/nls,utf8)
259 endef
260
261 define KernelPackage/fs-hfsplus/description
262  Kernel module for HFS+ filesystem support
263 endef
264
265 $(eval $(call KernelPackage,fs-hfsplus))
266
267
268 define KernelPackage/fs-isofs
269   SUBMENU:=$(FS_MENU)
270   TITLE:=ISO9660 filesystem support
271   DEPENDS:=+kmod-lib-zlib-inflate
272   KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
273   FILES:=$(LINUX_DIR)/fs/isofs/isofs.ko
274   AUTOLOAD:=$(call AutoLoad,30,isofs)
275   $(call AddDepends/nls)
276 endef
277
278 define KernelPackage/fs-isofs/description
279  Kernel module for ISO9660 filesystem support
280 endef
281
282 $(eval $(call KernelPackage,fs-isofs))
283
284
285 define KernelPackage/fs-minix
286   SUBMENU:=$(FS_MENU)
287   TITLE:=Minix filesystem support
288   KCONFIG:=CONFIG_MINIX_FS
289   FILES:=$(LINUX_DIR)/fs/minix/minix.ko
290   AUTOLOAD:=$(call AutoLoad,30,minix)
291 endef
292
293 define KernelPackage/fs-minix/description
294  Kernel module for Minix filesystem support
295 endef
296
297 $(eval $(call KernelPackage,fs-minix))
298
299
300 define KernelPackage/fs-msdos
301   SUBMENU:=$(FS_MENU)
302   TITLE:=MSDOS filesystem support
303   DEPENDS:=+kmod-fs-vfat
304   KCONFIG:=CONFIG_MSDOS_FS
305   FILES:=$(LINUX_DIR)/fs/fat/msdos.ko
306   AUTOLOAD:=$(call AutoLoad,40,msdos)
307   $(call AddDepends/nls)
308 endef
309
310 define KernelPackage/fs-msdos/description
311  Kernel module for MSDOS filesystem support
312 endef
313
314 $(eval $(call KernelPackage,fs-msdos))
315
316
317 define KernelPackage/fs-nfs
318   SUBMENU:=$(FS_MENU)
319   TITLE:=NFS filesystem support
320   DEPENDS:=+kmod-fs-nfs-common +kmod-dnsresolver
321   KCONFIG:= \
322         CONFIG_NFS_FS \
323         CONFIG_NFS_USE_LEGACY_DNS=n \
324         CONFIG_NFS_USE_NEW_IDMAPPER=n
325   FILES:= \
326         $(LINUX_DIR)/fs/nfs/nfs.ko \
327         $(LINUX_DIR)/fs/nfs/nfsv3.ko
328   AUTOLOAD:=$(call AutoLoad,40,nfs nfsv3)
329 endef
330
331 define KernelPackage/fs-nfs/description
332  Kernel module for NFS support
333 endef
334
335 $(eval $(call KernelPackage,fs-nfs))
336
337
338 define KernelPackage/fs-nfs-common
339   SUBMENU:=$(FS_MENU)
340   TITLE:=Common NFS filesystem modules
341   KCONFIG:= \
342         CONFIG_LOCKD \
343         CONFIG_SUNRPC \
344         CONFIG_GRACE_PERIOD
345   FILES:= \
346         $(LINUX_DIR)/fs/lockd/lockd.ko \
347         $(LINUX_DIR)/net/sunrpc/sunrpc.ko \
348         $(LINUX_DIR)/fs/nfs_common/grace.ko
349   AUTOLOAD:=$(call AutoLoad,30,grace sunrpc lockd)
350 endef
351
352 $(eval $(call KernelPackage,fs-nfs-common))
353
354
355 define KernelPackage/fs-nfs-common-v4
356   SUBMENU:=$(FS_MENU)
357   TITLE:=Common NFS V4 filesystem modules
358   KCONFIG+=\
359         CONFIG_SUNRPC_GSS\
360         CONFIG_NFS_V4=y\
361         CONFIG_NFSD_V4=y
362   DEPENDS:= @BROKEN
363   FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.ko
364   AUTOLOAD=$(call AutoLoad,30,auth_rpcgss)
365 endef
366
367 define KernelPackage/fs-nfs-common-v4/description
368  Kernel modules for NFS V4 & NFSD V4 kernel support
369 endef
370
371 $(eval $(call KernelPackage,fs-nfs-common-v4))
372
373
374 define KernelPackage/fs-nfsd
375   SUBMENU:=$(FS_MENU)
376   TITLE:=NFS kernel server support
377   DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
378   KCONFIG:= \
379         CONFIG_NFSD \
380         CONFIG_NFSD_FAULT_INJECTION=n
381   FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.ko
382   AUTOLOAD:=$(call AutoLoad,40,nfsd)
383 endef
384
385 define KernelPackage/fs-nfsd/description
386  Kernel module for NFS kernel server support
387 endef
388
389 $(eval $(call KernelPackage,fs-nfsd))
390
391
392 define KernelPackage/fs-ntfs
393   SUBMENU:=$(FS_MENU)
394   TITLE:=NTFS filesystem support
395   KCONFIG:=CONFIG_NTFS_FS
396   FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.ko
397   AUTOLOAD:=$(call AutoLoad,30,ntfs)
398   $(call AddDepends/nls)
399 endef
400
401 define KernelPackage/fs-ntfs/description
402  Kernel module for NTFS filesystem support
403 endef
404
405 $(eval $(call KernelPackage,fs-ntfs))
406
407
408 define KernelPackage/fs-reiserfs
409   SUBMENU:=$(FS_MENU)
410   TITLE:=ReiserFS filesystem support
411   KCONFIG:=CONFIG_REISERFS_FS \
412         CONFIG_REISERFS_FS_XATTR=y
413   FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
414   AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
415 endef
416
417 define KernelPackage/fs-reiserfs/description
418  Kernel module for ReiserFS support
419 endef
420
421 $(eval $(call KernelPackage,fs-reiserfs))
422
423
424 define KernelPackage/fs-squashfs
425   SUBMENU:=$(FS_MENU)
426   TITLE:=SquashFS 4.0 filesystem support
427   KCONFIG:=CONFIG_SQUASHFS \
428         CONFIG_SQUASHFS_XZ=y
429   FILES:=$(LINUX_DIR)/fs/squashfs/squashfs.ko
430   AUTOLOAD:=$(call AutoLoad,30,squashfs,1)
431 endef
432
433 define KernelPackage/fs-squashfs/description
434  Kernel module for SquashFS 4.0 support
435 endef
436
437 $(eval $(call KernelPackage,fs-squashfs))
438
439
440 define KernelPackage/fs-udf
441   SUBMENU:=$(FS_MENU)
442   TITLE:=UDF filesystem support
443   KCONFIG:=CONFIG_UDF_FS
444   FILES:=$(LINUX_DIR)/fs/udf/udf.ko
445   AUTOLOAD:=$(call AutoLoad,30,udf)
446   DEPENDS:=+kmod-lib-crc-itu-t
447   $(call AddDepends/nls)
448 endef
449
450 define KernelPackage/fs-udf/description
451  Kernel module for UDF filesystem support
452 endef
453
454 $(eval $(call KernelPackage,fs-udf))
455
456
457 define KernelPackage/fs-vfat
458   SUBMENU:=$(FS_MENU)
459   TITLE:=VFAT filesystem support
460   KCONFIG:= \
461         CONFIG_FAT_FS \
462         CONFIG_VFAT_FS
463   FILES:= \
464         $(LINUX_DIR)/fs/fat/fat.ko \
465         $(LINUX_DIR)/fs/fat/vfat.ko
466   AUTOLOAD:=$(call AutoLoad,30,fat vfat)
467   $(call AddDepends/nls,cp437 iso8859-1 utf8)
468 endef
469
470 define KernelPackage/fs-vfat/description
471  Kernel module for VFAT filesystem support
472 endef
473
474 $(eval $(call KernelPackage,fs-vfat))
475
476
477 define KernelPackage/fs-xfs
478   SUBMENU:=$(FS_MENU)
479   TITLE:=XFS filesystem support
480   KCONFIG:=CONFIG_XFS_FS
481   DEPENDS:= +kmod-fs-exportfs +kmod-lib-crc32c
482   FILES:=$(LINUX_DIR)/fs/xfs/xfs.ko
483   AUTOLOAD:=$(call AutoLoad,30,xfs,1)
484 endef
485
486 define KernelPackage/fs-xfs/description
487  Kernel module for XFS support
488 endef
489
490 $(eval $(call KernelPackage,fs-xfs))
491
492
493 define KernelPackage/fs-jfs
494   SUBMENU:=$(FS_MENU)
495   TITLE:=JFS filesystem support
496   KCONFIG:=CONFIG_JFS_FS
497   FILES:=$(LINUX_DIR)/fs/jfs/jfs.ko
498   AUTOLOAD:=$(call AutoLoad,30,jfs,1)
499   $(call AddDepends/nls)
500 endef
501
502 define KernelPackage/fs-jfs/description
503  Kernel module for JFS support
504 endef
505
506 $(eval $(call KernelPackage,fs-jfs))