Skip to content
Snippets Groups Projects
Commit a1573db0 authored by Peter Tyser's avatar Peter Tyser Committed by Ben Warren
Browse files

Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions


cmd_net.c command descriptions were updated to describe the optional
hostIPaddr argument.  The dhcp command help message was also updated
to more closely reflect the other commands in cmd_net.c

Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
parent 51dfe138
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,8 @@ int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ...@@ -39,8 +39,8 @@ int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bootp, 3, 1, do_bootp, bootp, 3, 1, do_bootp,
"bootp\t- boot image via network using BootP/TFTP protocol\n", "bootp\t- boot image via network using BOOTP/TFTP protocol\n",
"[loadAddress] [bootfilename]\n" "[loadAddress] [[hostIPaddr:]bootfilename]\n"
); );
int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
...@@ -62,7 +62,7 @@ int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ...@@ -62,7 +62,7 @@ int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
rarpboot, 3, 1, do_rarpb, rarpboot, 3, 1, do_rarpb,
"rarpboot- boot image via network using RARP/TFTP protocol\n", "rarpboot- boot image via network using RARP/TFTP protocol\n",
"[loadAddress] [bootfilename]\n" "[loadAddress] [[hostIPaddr:]bootfilename]\n"
); );
#if defined(CONFIG_CMD_DHCP) #if defined(CONFIG_CMD_DHCP)
...@@ -73,8 +73,8 @@ int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ...@@ -73,8 +73,8 @@ int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
dhcp, 3, 1, do_dhcp, dhcp, 3, 1, do_dhcp,
"dhcp\t- invoke DHCP client to obtain IP/boot params\n", "dhcp\t- boot image via network using DHCP/TFTP protocol\n",
"\n" "[loadAddress] [[hostIPaddr:]bootfilename]\n"
); );
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment