mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
cmd: correct short text for tftpboot
The command's name is a misnomer. The command loads a file but does not run (boot) it. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
5f46c6eba5
commit
651031ef7c
2 changed files with 2 additions and 2 deletions
|
@ -1719,7 +1719,7 @@ config CMD_TFTPBOOT
|
|||
bool "tftpboot"
|
||||
default y
|
||||
help
|
||||
tftpboot - boot image via network using TFTP protocol
|
||||
tftpboot - load file via network using TFTP protocol
|
||||
|
||||
config CMD_TFTPPUT
|
||||
bool "tftp put"
|
||||
|
|
|
@ -46,7 +46,7 @@ int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|||
|
||||
U_BOOT_CMD(
|
||||
tftpboot, 3, 1, do_tftpb,
|
||||
"boot image via network using TFTP protocol",
|
||||
"load file via network using TFTP protocol",
|
||||
"[loadAddress] [[hostIPaddr:]bootfilename]"
|
||||
);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue