diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-08-06 00:03:13 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-08-10 21:36:17 +0200 |
commit | 42db0ee13b86126b469c04e3d637c01899cc3a76 (patch) | |
tree | 8f9850231d16457a9de9070d5ac82f5a18b40735 /package | |
parent | fed325f4633cb302a5f43c42285e8ab0fd144262 (diff) | |
download | upstream-42db0ee13b86126b469c04e3d637c01899cc3a76.tar.gz upstream-42db0ee13b86126b469c04e3d637c01899cc3a76.tar.bz2 upstream-42db0ee13b86126b469c04e3d637c01899cc3a76.zip |
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 <hauke@hauke-m.de>
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 6 |
1 files changed, 4 insertions, 2 deletions
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 |