]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: net: wget: fix Kconfig dependency
authorMichael Walle <michael@walle.cc>
Wed, 28 Dec 2022 15:27:15 +0000 (16:27 +0100)
committerTom 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

index d93731f2af686cc5c7786e82efbd3bab2b41e7c8..b2d75987170e73f2c009a17fb69eb3137ca89656 100644 (file)
@@ -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.