diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-10-16 11:50:39 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-10-18 16:17:28 +0200 |
| commit | 82c98b9464d1c4473f9c695a0bbe1579c2de9682 (patch) | |
| tree | 1ce2b344fbc87e24a3a8a67897dac68465b36eba /cmd | |
| parent | 8ac96c25e4a0df85f5069100ce1697d431bd0e12 (diff) | |
cmd: wget: CONFIG_CMD_WGET must depend on CONFIG_CMD_NET
do_wget is defined in cmd/net.c.
cmd/net.c is not compiled if CONFIG_CMD_NET=n.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index bff22b94de2..2f63959e91c 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2117,6 +2117,7 @@ config CMD_TFTPBOOT config CMD_WGET bool "wget" + depends on CMD_NET default y if SANDBOX select PROT_TCP if NET select PROT_TCP_LWIP if NET_LWIP |
