From: Hauke Mehrtens Date: Fri, 5 Aug 2022 22:03:13 +0000 (+0200) Subject: kernel: kmod-crypto-authenc: Add authencesn.ko X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=42db0ee13b86126b469c04e3d637c01899cc3a76;p=openwrt%2Fstaging%2Fdangole.git kernel: kmod-crypto-authenc: Add authencesn.ko The kernel configuration option CONFIG_CRYPTO_AUTHENC builds authenc.ko and authencesn.ko, pack both kernel modules. Signed-off-by: Hauke Mehrtens --- diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index ed4e51079e..72ed6ca2fd 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -69,8 +69,10 @@ define KernelPackage/crypto-authenc TITLE:=Combined mode wrapper for IPsec DEPENDS:=+kmod-crypto-manager +kmod-crypto-null KCONFIG:=CONFIG_CRYPTO_AUTHENC - FILES:=$(LINUX_DIR)/crypto/authenc.ko - AUTOLOAD:=$(call AutoLoad,09,authenc) + FILES:= \ + $(LINUX_DIR)/crypto/authenc.ko \ + $(LINUX_DIR)/crypto/authencesn.ko + AUTOLOAD:=$(call AutoLoad,09,authenc authencesn) $(call AddDepends/crypto) endef