summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBin Meng <bmeng@tinylab.org>2023-07-31 16:33:23 +0800
committerTom Rini <trini@konsulko.com>2023-08-14 17:55:53 -0400
commiteed99ce360a3e9d26092723ea4b0ffa4e910137e (patch)
treeea91c838460d20838a7c48dcb5930abbf9cdc326
parent852467de92c38c6c5b9338dd75989e306461dd08 (diff)
downloadu-boot-eed99ce360a3e9d26092723ea4b0ffa4e910137e.tar.gz
u-boot-eed99ce360a3e9d26092723ea4b0ffa4e910137e.tar.bz2
u-boot-eed99ce360a3e9d26092723ea4b0ffa4e910137e.zip
cmd: pxe: Update the command help
Currently the "help" displays pxe command help text like this: => help ... printenv - print environment variables pxe - commands to get and boot from pxe files To use IPv6 add -ipv6 parameter qfw - QEMU firmware interface ... This does not read clearly. Remove the IPv6 stuff as it is in the detailed help text so that it fits just a single line. Signed-off-by: Bin Meng <bmeng@tinylab.org> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/pxe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/pxe.c b/cmd/pxe.c
index 677142520b..7bfb1b9b28 100644
--- a/cmd/pxe.c
+++ b/cmd/pxe.c
@@ -333,8 +333,7 @@ static int do_pxe(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
}
U_BOOT_CMD(pxe, 4, 1, do_pxe,
- "commands to get and boot from pxe files\n"
- "To use IPv6 add -ipv6 parameter",
+ "get and boot from pxe files",
"get [" USE_IP6_CMD_PARAM "] - try to retrieve a pxe file using tftp\n"
"pxe boot [pxefile_addr_r] [-ipv6] - boot from the pxe file at pxefile_addr_r\n"
);