diff options
author | Jerome Forissier <jerome.forissier@linaro.org> | 2024-11-14 15:20:40 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-22 14:40:53 -0600 |
commit | 572b5b0d5a04a255dea7b83d4edfdd71b886f229 (patch) | |
tree | 8ce7627b2678bc0818e5c2797f8b74659aaf237d /cmd/net-lwip.c | |
parent | 7d80e7368e1012355695e1fb580e5b20c8de03b9 (diff) | |
download | u-boot-572b5b0d5a04a255dea7b83d4edfdd71b886f229.tar.gz |
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>
Diffstat (limited to 'cmd/net-lwip.c')
-rw-r--r-- | cmd/net-lwip.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cmd/net-lwip.c b/cmd/net-lwip.c index 6f5fc743030..0fd446ecb20 100644 --- a/cmd/net-lwip.c +++ b/cmd/net-lwip.c @@ -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 |