From 3e767d2b285ba20a0df7084e31931fb08991a1c4 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 9 Aug 2015 17:17:31 +0000 Subject: [PATCH] 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 --- package/kernel/linux/modules/crypto.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2