From: Hauke Mehrtens Date: Sun, 9 Aug 2015 17:17:31 +0000 (+0000) Subject: kernel: crypto: fix module loading of aead.ko X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=3e767d2b285ba20a0df7084e31931fb08991a1c4;p=openwrt%2Fstaging%2Fluka.git kernel: crypto: fix module loading of aead.ko The name of the module was wrong before. This should fix #20283. Signed-off-by: Hauke Mehrtens SVN-Revision: 46574 --- diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 84e5147b6b..7324d1a877 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -41,7 +41,7 @@ define KernelPackage/crypto-aead CONFIG_CRYPTO_AEAD \ CONFIG_CRYPTO_AEAD2 FILES:=$(LINUX_DIR)/crypto/aead.ko - AUTOLOAD:=$(call AutoLoad,09,crypto_aead,1) + AUTOLOAD:=$(call AutoLoad,09,aead,1) $(call AddDepends/crypto) endef