From 572b5b0d5a04a255dea7b83d4edfdd71b886f229 Mon Sep 17 00:00:00 2001 From: Jerome Forissier Date: Thu, 14 Nov 2024 15:20:40 +0100 Subject: 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 Reviewed-by: Ilias Apalodimas --- cmd/net-lwip.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'cmd') 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 -- cgit v1.2.3 From 0e3cd1313f031acd7e2e29b5742e625f842b52fa Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Mon, 11 Nov 2024 10:50:35 +0100 Subject: cmd: improve description of the cdp command Users might not know what 'CDP' refers to. Provide basic information. Signed-off-by: Heinrich Schuchardt --- cmd/Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index b2d0348fe30..1d7ddb4ed36 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2016,7 +2016,9 @@ config CMD_PING6 config CMD_CDP bool "cdp" help - Perform CDP network configuration + The cdp command is used to announce the U-Boot device in the network + and to retrieve configuration data including the VLAN id using the + proprietary Cisco Discovery Protocol (CDP). config CMD_SNTP bool "sntp" -- cgit v1.2.3