diff options
author | Michael Walle <michael@walle.cc> | 2022-12-28 16:27:15 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-29 09:50:53 -0500 |
commit | 20422d693004f7a18714c9f9818450821bd78f43 (patch) | |
tree | 1d6a6bebb98b3951bf255a02c81ba24abbd31c88 | |
parent | fe1489bc6d25de34baa50fe5798820b0dae537d4 (diff) | |
download | u-boot-20422d693004f7a18714c9f9818450821bd78f43.zip u-boot-20422d693004f7a18714c9f9818450821bd78f43.tar.gz u-boot-20422d693004f7a18714c9f9818450821bd78f43.tar.bz2 |
cmd: net: wget: fix Kconfig dependency
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@walle.cc>
-rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index d93731f..b2d7598 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. |