X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/ee3549fd86a48cbc88c67c458b2225ef31e0fb2a..de9bfd35106d8c5033ce113b4967023548e2b9b2:/package/kernel/modules/fs.mk diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index 93f99efaa..2a64c8b78 100644 --- a/package/kernel/modules/fs.mk +++ b/package/kernel/modules/fs.mk @@ -62,10 +62,28 @@ endef $(eval $(call KernelPackage,fs-ntfs)) +define KernelPackage/fs-mbcache + SUBMENU:=$(FS_MENU) + TITLE:=mbcache (used by ext2/ext3) + KCONFIG:=CONFIG_FS_MBCACHE + ifneq ($(CONFIG_FS_MBCACHE),) + FILES:=$(LINUX_DIR)/fs/mbcache.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,20,mbcache) + endif +endef + +define KernelPackage/fs-ext2/description + Meta Block cache used by ext2/ext3 + This package will only be installed if extended attributes + are enabled for ext2/ext3 +endef +$(eval $(call KernelPackage,fs-mbcache)) + define KernelPackage/fs-ext2 SUBMENU:=$(FS_MENU) TITLE:=EXT2 filesystem support KCONFIG:=CONFIG_EXT2_FS + DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) FILES:=$(LINUX_DIR)/fs/ext2/ext2.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,30,ext2) endef @@ -83,6 +101,7 @@ define KernelPackage/fs-ext3 KCONFIG:= \ CONFIG_EXT3_FS \ CONFIG_JBD + DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) FILES:= \ $(LINUX_DIR)/fs/ext3/ext3.$(LINUX_KMOD_SUFFIX) \ $(LINUX_DIR)/fs/jbd/jbd.$(LINUX_KMOD_SUFFIX) @@ -174,9 +193,9 @@ define KernelPackage/fs-nfs CONFIG_LOCKD \ CONFIG_SUNRPC FILES:= \ - $(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX) \ - $(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \ - $(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX) + $(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX) \ + $(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \ + $(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd nfs) endef @@ -228,6 +247,21 @@ endef $(eval $(call KernelPackage,fs-msdos)) +define KernelPackage/fs-reiserfs + SUBMENU:=$(FS_MENU) + TITLE:=ReiserFS filesystem support + KCONFIG:=CONFIG_REISERFS_FS + FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,30,reiserfs) +endef + +define KernelPackage/fs-reiserfs/description + Kernel module for ReiserFS support +endef + +$(eval $(call KernelPackage,fs-reiserfs)) + + define KernelPackage/fs-vfat SUBMENU:=$(FS_MENU) TITLE:=VFAT filesystem support