git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe1489b
)
cmd: net: wget: fix Kconfig dependency
author
Michael Walle
<michael@walle.cc>
Wed, 28 Dec 2022 15:27:15 +0000
(16:27 +0100)
committer
Tom Rini
<trini@konsulko.com>
Thu, 29 Dec 2022 14:50:53 +0000
(09:50 -0500)
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>
cmd/Kconfig
patch
|
blob
|
history
diff --git
a/cmd/Kconfig
b/cmd/Kconfig
index
d93731f
..
b2d7598
100644
(file)
--- 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.