summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-11-22 14:43:17 -0600
committerTom Rini <[email protected]>2024-11-22 15:04:54 -0600
commit52c0e5f8a39ef022ee5ab2dfd67661d1d34941c7 (patch)
treeecb418b0233d67abb0e946128fc5f383c3caac5f /cmd
parent35d5ad6cf25f8c0ac39f90a8a51eb77e6e002d0d (diff)
parent0e3cd1313f031acd7e2e29b5742e625f842b52fa (diff)
Merge branch '2024-11-22-assorted-fixes'
- Assorted additional lwIP fixes - Assorted test fixes - Assorted other localized fixes
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig4
-rw-r--r--cmd/net-lwip.c7
2 files changed, 8 insertions, 3 deletions
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"
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