kernel: fix chainiv crypto modules in 4.3+ kernels

Signed-off-by: Steven Barth <cyrus@openwrt.org>

SVN-Revision: 48745
This commit is contained in:
Steven Barth 2016-02-19 11:49:03 +00:00
parent b9e910d658
commit d179611006

View file

@ -123,11 +123,12 @@ $(eval $(call KernelPackage,crypto-rng))
define KernelPackage/crypto-iv
TITLE:=CryptoAPI initialization vectors
DEPENDS:=+kmod-crypto-manager +kmod-crypto-rng +kmod-crypto-wq
KCONFIG:= CONFIG_CRYPTO_BLKCIPHER2
KCONFIG:= CONFIG_CRYPTO_BLKCIPHER2 CONFIG_CRYPTO_ECHAINIV
FILES:= \
$(LINUX_DIR)/crypto/eseqiv.ko \
$(LINUX_DIR)/crypto/chainiv.ko
AUTOLOAD:=$(call AutoLoad,10,eseqiv chainiv)
$(LINUX_DIR)/crypto/chainiv.ko \
$(LINUX_DIR)/crypto/echainiv.ko@ge4.3
AUTOLOAD:=$(call AutoLoad,10,eseqiv chainiv echainiv@ge4.3)
$(call AddDepends/crypto)
endef