diff options
| author | Tom Rini <[email protected]> | 2025-03-14 19:28:56 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-01 08:46:02 -0600 |
| commit | be7693386d7f2e46e4907ef55bf9cd1ae4af2903 (patch) | |
| tree | 57b48c4b5bd7f68b848e9dba9a4db51740ac6a26 /cmd/Kconfig | |
| parent | da20dfb2e901d499fe18c6302987432604e6f999 (diff) | |
cmd: Correct dependency for CMD_LINK_LOCAL
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 <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index cd391d422ae..aaebdfdd0c1 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 |
