From: hauke Date: Sun, 9 Aug 2015 17:19:00 +0000 (+0000) Subject: CC: kernel: crypto: fix module loading of aead.ko X-Git-Tag: 15.05~34 X-Git-Url: https://git.archive.openwrt.org/?p=15.05%2Fopenwrt.git;a=commitdiff_plain;h=60b91c44ed02891621dcc8e04eed88acff6e8d02 CC: kernel: crypto: fix module loading of aead.ko The name of the module was wrong before. This should fix #20283. backport of r46574. Signed-off-by: Hauke Mehrtens git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@46577 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 22c790d2ee..c8e0fbb043 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