[openwrt/openwrt] kernel: kmod-crypto-user: Add missing dependency

LEDE Commits lede-commits at lists.infradead.org
Thu Mar 14 13:03:58 PDT 2024


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/091897fad2efa7d0fea0bddd38c06ff491761e55

commit 091897fad2efa7d0fea0bddd38c06ff491761e55
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Wed Mar 13 18:09:22 2024 +0100

    kernel: kmod-crypto-user: Add missing dependency
    
    The algif_rng.ko kernel module depends on the rng.ko kernel module with
    kernel 6.6 when compiling for MIPS malta.
    
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 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 49882c58df..ea2a104335 100644
--- a/package/kernel/linux/modules/crypto.mk
+++ b/package/kernel/linux/modules/crypto.mk
@@ -1119,7 +1119,7 @@ $(eval $(call KernelPackage,crypto-test))
 
 define KernelPackage/crypto-user
   TITLE:=CryptoAPI userspace interface
-  DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager
+  DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager +LINUX_6_6:kmod-crypto-rng
   KCONFIG:= \
 	CONFIG_CRYPTO_USER \
 	CONFIG_CRYPTO_USER_API \




More information about the lede-commits mailing list