[openwrt/openwrt] kernel: crypto: remove geniv from aead with kernel 6.6
LEDE Commits
lede-commits at lists.infradead.org
Mon Mar 11 12:18:04 PDT 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/e12945032149eb3da7f62b516f0a249711ec7275
commit e12945032149eb3da7f62b516f0a249711ec7275
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Thu Mar 7 15:04:59 2024 +0100
kernel: crypto: remove geniv from aead with kernel 6.6
geniv was separated intentionally from aead in kernel 6.5, and since
we now have it packaged separately as well remove it from kmod-aead
in 6.6.
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
package/kernel/linux/modules/crypto.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk
index 335930cfaa..36b03bcdef 100644
--- a/package/kernel/linux/modules/crypto.mk
+++ b/package/kernel/linux/modules/crypto.mk
@@ -40,10 +40,10 @@ define KernelPackage/crypto-aead
KCONFIG:= \
CONFIG_CRYPTO_AEAD \
CONFIG_CRYPTO_AEAD2 \
- CONFIG_CRYPTO_GENIV
+ CONFIG_CRYPTO_GENIV at lt6.6
FILES:= \
$(LINUX_DIR)/crypto/aead.ko \
- $(LINUX_DIR)/crypto/geniv.ko
+ $(LINUX_DIR)/crypto/geniv.ko at lt6.6
AUTOLOAD:=$(call AutoLoad,09,aead,1)
$(call AddDepends/crypto, +kmod-crypto-null)
endef
More information about the lede-commits
mailing list