summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-20 11:11:41 +0000
committerrwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-20 11:11:41 +0000
commitecd9e20a5183cf0c37bf964fe7d1d6068aaa8489 (patch)
treecda6bdeb712b513ba2c52518383c8c71b551d181
parentb3ae9c1652c80a56411e6dfb6d83819f21fc78c3 (diff)
Add reiserfs module and include it in the FSG-3 profile.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8872 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/kernel/modules/fs.mk21
-rw-r--r--target/linux/ixp4xx/profiles/500-FSG3.mk2
2 files changed, 19 insertions, 4 deletions
diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk
index 93f99efaa..451610588 100644
--- a/package/kernel/modules/fs.mk
+++ b/package/kernel/modules/fs.mk
@@ -174,9 +174,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 +228,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
diff --git a/target/linux/ixp4xx/profiles/500-FSG3.mk b/target/linux/ixp4xx/profiles/500-FSG3.mk
index d7d6a2ef7..f06fa8c66 100644
--- a/target/linux/ixp4xx/profiles/500-FSG3.mk
+++ b/target/linux/ixp4xx/profiles/500-FSG3.mk
@@ -10,7 +10,7 @@ define Profile/FSG3
PACKAGES:= \
kmod-madwifi wireless-tools \
kmod-usb-core kmod-usb-uhci kmod-usb2 kmod-usb-storage \
- kmod-fs-ext2
+ kmod-fs-ext2 kmod-fs-reiserfs
endef
define Profile/FSG3/Description