diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2012-05-06 20:43:17 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2012-05-06 20:43:17 +0000 |
commit | 8ff6417c419a50cd0f3b3ff450df6e7f5a426478 (patch) | |
tree | 6b9d1420203da6402f8416fcb6450b33a2d660fe /package/kernel/modules/fs.mk | |
parent | a42570bc3e5c952d643c1d3ad90ad8cba270f568 (diff) | |
download | upstream-8ff6417c419a50cd0f3b3ff450df6e7f5a426478.tar.gz upstream-8ff6417c419a50cd0f3b3ff450df6e7f5a426478.tar.bz2 upstream-8ff6417c419a50cd0f3b3ff450df6e7f5a426478.zip |
kernel: remove kernel modules and references to kernels <= 2.6.36
OpenWrt does not support kernel version <= 2.6.36 any more, remove all modules only build for those kernels and all conditions specific for those kernel versions.
SVN-Revision: 31634
Diffstat (limited to 'package/kernel/modules/fs.mk')
-rw-r--r-- | package/kernel/modules/fs.mk | 50 |
1 files changed, 7 insertions, 43 deletions
diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index b8bfa899fd..1d65f66f0a 100644 --- a/package/kernel/modules/fs.mk +++ b/package/kernel/modules/fs.mk @@ -25,7 +25,7 @@ $(eval $(call KernelPackage,fs-autofs4)) define KernelPackage/fs-btrfs SUBMENU:=$(FS_MENU) TITLE:=BTRFS filesystem support - DEPENDS:=+kmod-lib-crc32c +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36||LINUX_2_6_37):kmod-lib-lzo +kmod-lib-zlib + DEPENDS:=+kmod-lib-crc32c +!(LINUX_2_6_37):kmod-lib-lzo +kmod-lib-zlib KCONFIG:=\ CONFIG_BTRFS_FS \ CONFIG_BTRFS_FS_POSIX_ACL=n \ @@ -53,12 +53,12 @@ define KernelPackage/fs-cifs AUTOLOAD:=$(call AutoLoad,30,cifs) $(call AddDepends/nls) DEPENDS+= \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36):kmod-crypto-arc4 \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36):kmod-crypto-hmac \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36):kmod-crypto-md5 \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36||LINUX_2_6_37):kmod-crypto-md4 \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36||LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39):kmod-crypto-des \ - +!(LINUX_2_6_30||LINUX_2_6_31||LINUX_2_6_32||LINUX_2_6_36||LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39):kmod-crypto-ecb + +kmod-crypto-arc4 \ + +kmod-crypto-hmac \ + +kmod-crypto-md5 \ + +!(LINUX_2_6_37):kmod-crypto-md4 \ + +!(LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39):kmod-crypto-des \ + +!(LINUX_2_6_37||LINUX_2_6_38||LINUX_2_6_39):kmod-crypto-ecb endef define KernelPackage/fs-cifs/description @@ -83,42 +83,6 @@ endef $(eval $(call KernelPackage,fs-exportfs)) -define KernelPackage/fs-ext2 - SUBMENU:=$(FS_MENU) - TITLE:=EXT2 filesystem support - KCONFIG:=CONFIG_EXT2_FS - DEPENDS:=@LINUX_2_6_30||LINUX_2_6_31 - FILES:=$(LINUX_DIR)/fs/ext2/ext2.ko - AUTOLOAD:=$(call AutoLoad,32,ext2,1) -endef - -define KernelPackage/fs-ext2/description - Kernel module for EXT2 filesystem support -endef - -$(eval $(call KernelPackage,fs-ext2,1)) - - -define KernelPackage/fs-ext3 - SUBMENU:=$(FS_MENU) - TITLE:=EXT3 filesystem support - KCONFIG:= \ - CONFIG_EXT3_FS \ - CONFIG_JBD - DEPENDS:=@LINUX_2_6_30||LINUX_2_6_31 - FILES:= \ - $(LINUX_DIR)/fs/ext3/ext3.ko \ - $(LINUX_DIR)/fs/jbd/jbd.ko - AUTOLOAD:=$(call AutoLoad,31,jbd ext3,1) -endef - -define KernelPackage/fs-ext3/description - Kernel module for EXT3 filesystem support -endef - -$(eval $(call KernelPackage,fs-ext3)) - - define KernelPackage/fs-ext4 SUBMENU:=$(FS_MENU) TITLE:=EXT4 filesystem support |