net: lwip: wget: update help string

The lwIP version of wget also supports the legacy syntax. Document it in
the help string.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
Jerome Forissier 2024-11-14 15:20:40 +01:00 committed by Tom Rini
parent 7d80e7368e
commit 572b5b0d5a

View file

@ -27,6 +27,9 @@ U_BOOT_CMD(dns, 3, 1, do_dns, "lookup the IP of a hostname",
#endif
#if defined(CONFIG_CMD_WGET)
U_BOOT_CMD(wget, 3, 1, do_wget, "boot image via network using HTTP protocol",
"[loadAddress] URL");
U_BOOT_CMD(wget, 3, 1, do_wget,
"boot image via network using HTTP/HTTPS protocol",
"[loadAddress] url\n"
"wget [loadAddress] [host:]path"
);
#endif