diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2010-11-22 12:11:50 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2010-11-22 12:11:50 +0000 |
commit | 67d797821c2c20fcd5b56044625ca281b2ab8548 (patch) | |
tree | e423a38e91e42f291a40ee78302b4a91f40ce89d /package/kernel | |
parent | 06e91a553e328a17920b6ee070f6f6d25b3d7308 (diff) | |
download | upstream-67d797821c2c20fcd5b56044625ca281b2ab8548.tar.gz upstream-67d797821c2c20fcd5b56044625ca281b2ab8548.tar.bz2 upstream-67d797821c2c20fcd5b56044625ca281b2ab8548.zip |
use ext4 for ext2/3 on 2.6.32+
SVN-Revision: 24083
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/fs.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index e5714aab64..6f3248a2ab 100644 --- a/package/kernel/modules/fs.mk +++ b/package/kernel/modules/fs.mk @@ -76,7 +76,7 @@ define KernelPackage/fs-ext2 SUBMENU:=$(FS_MENU) TITLE:=EXT2 filesystem support KCONFIG:=CONFIG_EXT2_FS - DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) + DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) +LINUX_2_6_30||LINUX_2_6_31 FILES:=$(LINUX_DIR)/fs/ext2/ext2.ko AUTOLOAD:=$(call AutoLoad,32,ext2,1) endef @@ -94,7 +94,7 @@ define KernelPackage/fs-ext3 KCONFIG:= \ CONFIG_EXT3_FS \ CONFIG_JBD - DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) + DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache) +LINUX_2_6_30||LINUX_2_6_31 FILES:= \ $(LINUX_DIR)/fs/ext3/ext3.ko \ $(LINUX_DIR)/fs/jbd/jbd.ko |