mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
fe1489bc6d
commit
20422d6930
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue