[PATCH] cmd: Correct dependency for CMD_LINK_LOCAL

Tom Rini trini at konsulko.com
Sat Mar 15 02:28:56 CET 2025


Given how LIB_RAND is handled now, we should be depending on one of the
implementations and not selecting one of them.

Signed-off-by: Tom Rini <trini at konsulko.com>
---
 cmd/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/Kconfig b/cmd/Kconfig
index cd391d422ae2..aaebdfdd0c1c 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2062,7 +2062,7 @@ config CMD_SNTP
 
 config CMD_LINK_LOCAL
 	bool "linklocal"
-	select LIB_RAND
+	depends on (LIB_RAND || LIB_HW_RAND)
 	help
 	  Acquire a network IP address using the link-local protocol
 
-- 
2.43.0



More information about the U-Boot mailing list