[PATCH 2/2] cmd: net: wget: fix Kconfig dependency
Michael Walle
michael at walle.cc
Wed Dec 28 16:27:15 CET 2022
The wget command uses TCP, but fails to select PROT_TCP in Kconfig.
Instead it selects the non-existing symbol TCP. Fix the typo.
Signed-off-by: Michael Walle <michael at walle.cc>
---
cmd/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index d93731f2af..b2d7598717 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1814,7 +1814,7 @@ config SYS_DISABLE_AUTOLOAD
config CMD_WGET
bool "wget"
- select TCP
+ select PROT_TCP
help
wget is a simple command to download kernel, or other files,
from a http server over TCP.
--
2.30.2
More information about the U-Boot
mailing list