[openwrt/openwrt] kernel: iscsi-initator: fix missing dependency

LEDE Commits lede-commits at lists.infradead.org
Wed Jul 8 15:13:41 EDT 2020


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/bbdd99619c714d338c14982913d3879f0a088c2d

commit bbdd99619c714d338c14982913d3879f0a088c2d
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Wed Jul 8 21:11:40 2020 +0200

    kernel: iscsi-initator: fix missing dependency
    
    Fixes following issue:
    
     Package kmod-iscsi-initiator is missing dependencies for the following libraries:
     crypto_hash.ko
    
    Fixes: b88f8202c4ce ("kernel: add iscsi-initator support")
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 package/kernel/linux/modules/block.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/kernel/linux/modules/block.mk b/package/kernel/linux/modules/block.mk
index a86c60da2a..faea5cc34e 100644
--- a/package/kernel/linux/modules/block.mk
+++ b/package/kernel/linux/modules/block.mk
@@ -273,7 +273,7 @@ $(eval $(call KernelPackage,dm-raid))
 define KernelPackage/iscsi-initiator
   SUBMENU:=$(BLOCK_MENU)
   TITLE:=iSCSI Initiator over TCP/IP
-  DEPENDS:=+kmod-scsi-core
+  DEPENDS:=+kmod-scsi-core +kmod-crypto-hash
   KCONFIG:= \
 	CONFIG_INET \
 	CONFIG_SCSI_LOWLEVEL \



More information about the lede-commits mailing list