From: Gabor Juhos Date: Sat, 27 Oct 2012 12:33:00 +0000 (+0000) Subject: package/kernel: arc4 needs blkcipher support on 3.6 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=53051ea1acb30b7f67ac83e13d81563559df7100 package/kernel: arc4 needs blkcipher support on 3.6 [ 78.530000] arc4: Unknown symbol blkcipher_walk_done (err 0) [ 78.530000] arc4: Unknown symbol blkcipher_walk_virt (err 0) [ 78.540000] arc4: Unknown symbol crypto_blkcipher_type (err 0) Signed-off-by: Gabor Juhos SVN-Revision: 33965 --- diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 43a7cc3431..dc21c1d53a 100644 --- a/package/kernel/modules/crypto.mk +++ b/package/kernel/modules/crypto.mk @@ -192,7 +192,7 @@ define KernelPackage/crypto-arc4 KCONFIG:=CONFIG_CRYPTO_ARC4 FILES:=$(LINUX_DIR)/crypto/arc4.ko AUTOLOAD:=$(call AutoLoad,09,arc4) - $(call AddDepends/crypto) + $(call AddDepends/crypto,+!LINUX_3_3:kmod-crypto-manager) endef $(eval $(call KernelPackage,crypto-arc4))