diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-10-28 19:16:21 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-10-28 19:16:21 +0000 |
commit | 897ab36e93127a9e27f36a4c2d34b30e6eb70834 (patch) | |
tree | d3dc2a7de6867f5347d41603ff48d3fa832d0e28 | |
parent | c824c76aae78d043251d84518826f6d025c55842 (diff) | |
download | mtk-20170518-897ab36e93127a9e27f36a4c2d34b30e6eb70834.zip mtk-20170518-897ab36e93127a9e27f36a4c2d34b30e6eb70834.tar.gz mtk-20170518-897ab36e93127a9e27f36a4c2d34b30e6eb70834.tar.bz2 |
package/kernel: fix kmod-fs-cifs dependencies (closes: #9381, #10055)
SVN-Revision: 28661
-rw-r--r-- | package/kernel/modules/fs.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index 6c253c7..84d2311 100644 --- a/package/kernel/modules/fs.mk +++ b/package/kernel/modules/fs.mk @@ -48,6 +48,14 @@ define KernelPackage/fs-cifs FILES:=$(LINUX_DIR)/fs/cifs/cifs.ko 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-core \ + !(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 endef define KernelPackage/fs-cifs/description |