linux: fix kmod-fs-nfs to include nfsv3.ko, it was split out of nfs.ko in Linux 3.6
[openwrt.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-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 +(LINUX_3_9||LINUX_3_10||LINUX_3_12):kmod-lib-raid6 +(LINUX_3_9||LINUX_3_10||LINUX_3_12):kmod-lib-xor
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,1)
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   DEPENDS:=+kmod-fs-vfat
207   KCONFIG:=CONFIG_MSDOS_FS
208   FILES:=$(LINUX_DIR)/fs/fat/msdos.ko
209   AUTOLOAD:=$(call AutoLoad,40,msdos)
210   $(call AddDepends/nls)
211 endef
212
213 define KernelPackage/fs-msdos/description
214  Kernel module for MSDOS filesystem support
215 endef
216
217 $(eval $(call KernelPackage,fs-msdos))
218
219
220 define KernelPackage/fs-nfs
221   SUBMENU:=$(FS_MENU)
222   TITLE:=NFS filesystem support
223   DEPENDS:=+kmod-fs-nfs-common
224   KCONFIG:= \
225         CONFIG_NFS_FS \
226         CONFIG_NFS_USE_LEGACY_DNS=n \
227         CONFIG_NFS_USE_NEW_IDMAPPER=n
228   FILES:= \
229         $(LINUX_DIR)/fs/nfs/nfs.ko \
230         $(LINUX_DIR)/fs/nfs/nfsv3.ko
231   AUTOLOAD:=$(call AutoLoad,40,nfs nfsv3)
232 endef
233
234 define KernelPackage/fs-nfs/description
235  Kernel module for NFS support
236 endef
237
238 $(eval $(call KernelPackage,fs-nfs))
239
240
241 define KernelPackage/fs-nfs-common
242   SUBMENU:=$(FS_MENU)
243   TITLE:=Common NFS filesystem modules
244   KCONFIG:= \
245         CONFIG_LOCKD \
246         CONFIG_SUNRPC
247   FILES:= \
248         $(LINUX_DIR)/fs/lockd/lockd.ko \
249         $(LINUX_DIR)/net/sunrpc/sunrpc.ko
250   AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
251 endef
252
253 $(eval $(call KernelPackage,fs-nfs-common))
254
255
256 define KernelPackage/fs-nfs-common-v4
257   SUBMENU:=$(FS_MENU)
258   TITLE:=Common NFS V4 filesystem modules
259   KCONFIG+=\
260         CONFIG_SUNRPC_GSS\
261         CONFIG_NFS_V4=y\
262         CONFIG_NFSD_V4=y
263   DEPENDS:= @BROKEN
264   FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.ko
265   AUTOLOAD=$(call AutoLoad,30,auth_rpcgss)
266 endef
267
268 define KernelPackage/fs-nfs-common-v4/description
269  Kernel modules for NFS V4 & NFSD V4 kernel support
270 endef
271
272 $(eval $(call KernelPackage,fs-nfs-common-v4))
273
274
275 define KernelPackage/fs-nfsd
276   SUBMENU:=$(FS_MENU)
277   TITLE:=NFS kernel server support
278   DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
279   KCONFIG:= \
280         CONFIG_NFSD \
281         CONFIG_NFSD_FAULT_INJECTION=n
282   FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.ko
283   AUTOLOAD:=$(call AutoLoad,40,nfsd)
284 endef
285
286 define KernelPackage/fs-nfsd/description
287  Kernel module for NFS kernel server support
288 endef
289
290 $(eval $(call KernelPackage,fs-nfsd))
291
292
293 define KernelPackage/fs-ntfs
294   SUBMENU:=$(FS_MENU)
295   TITLE:=NTFS filesystem support
296   KCONFIG:=CONFIG_NTFS_FS
297   FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.ko
298   AUTOLOAD:=$(call AutoLoad,30,ntfs)
299   $(call AddDepends/nls)
300 endef
301
302 define KernelPackage/fs-ntfs/description
303  Kernel module for NTFS filesystem support
304 endef
305
306 $(eval $(call KernelPackage,fs-ntfs))
307
308
309 define KernelPackage/fs-reiserfs
310   SUBMENU:=$(FS_MENU)
311   TITLE:=ReiserFS filesystem support
312   KCONFIG:=CONFIG_REISERFS_FS
313   FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.ko
314   AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
315 endef
316
317 define KernelPackage/fs-reiserfs/description
318  Kernel module for ReiserFS support
319 endef
320
321 $(eval $(call KernelPackage,fs-reiserfs))
322
323
324 define KernelPackage/fs-udf
325   SUBMENU:=$(FS_MENU)
326   TITLE:=UDF filesystem support
327   KCONFIG:=CONFIG_UDF_FS
328   FILES:=$(LINUX_DIR)/fs/udf/udf.ko
329   AUTOLOAD:=$(call AutoLoad,30,udf)
330   DEPENDS:=+kmod-lib-crc-itu-t
331   $(call AddDepends/nls)
332 endef
333
334 define KernelPackage/fs-udf/description
335  Kernel module for UDF filesystem support
336 endef
337
338 $(eval $(call KernelPackage,fs-udf))
339
340
341 define KernelPackage/fs-vfat
342   SUBMENU:=$(FS_MENU)
343   TITLE:=VFAT filesystem support
344   KCONFIG:= \
345         CONFIG_FAT_FS \
346         CONFIG_VFAT_FS
347   FILES:= \
348         $(LINUX_DIR)/fs/fat/fat.ko \
349         $(LINUX_DIR)/fs/fat/vfat.ko
350   AUTOLOAD:=$(call AutoLoad,30,fat vfat)
351   $(call AddDepends/nls)
352 endef
353
354 define KernelPackage/fs-vfat/description
355  Kernel module for VFAT filesystem support
356 endef
357
358 $(eval $(call KernelPackage,fs-vfat))
359
360
361 define KernelPackage/fs-xfs
362   SUBMENU:=$(FS_MENU)
363   TITLE:=XFS filesystem support
364   KCONFIG:=CONFIG_XFS_FS
365   DEPENDS:= +kmod-fs-exportfs +kmod-lib-crc32c @!avr32
366   FILES:=$(LINUX_DIR)/fs/xfs/xfs.ko
367   AUTOLOAD:=$(call AutoLoad,30,xfs,1)
368 endef
369
370 define KernelPackage/fs-xfs/description
371  Kernel module for XFS support
372 endef
373
374 $(eval $(call KernelPackage,fs-xfs))