diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2008-08-26 11:17:48 -0500 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2008-08-26 22:46:23 -0700 | 
| commit | a1573db0c07c8ba99e9c373bb07ecd6f59da672c (patch) | |
| tree | a355703f17bd8367c2c8a32fc13e8ece20a601ce /common/cmd_net.c | |
| parent | 51dfe1382ebaf691485badfa0ea5e75b0710531b (diff) | |
| download | olio-uboot-2014.01-a1573db0c07c8ba99e9c373bb07ecd6f59da672c.tar.xz olio-uboot-2014.01-a1573db0c07c8ba99e9c373bb07ecd6f59da672c.zip | |
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: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'common/cmd_net.c')
| -rw-r--r-- | common/cmd_net.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/common/cmd_net.c b/common/cmd_net.c index 79e910c76..af691a474 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -39,8 +39,8 @@ int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  U_BOOT_CMD(  	bootp,	3,	1,	do_bootp, -	"bootp\t- boot image via network using BootP/TFTP protocol\n", -	"[loadAddress] [bootfilename]\n" +	"bootp\t- boot image via network using BOOTP/TFTP protocol\n", +	"[loadAddress] [[hostIPaddr:]bootfilename]\n"  );  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[])  U_BOOT_CMD(  	rarpboot,	3,	1,	do_rarpb,  	"rarpboot- boot image via network using RARP/TFTP protocol\n", -	"[loadAddress] [bootfilename]\n" +	"[loadAddress] [[hostIPaddr:]bootfilename]\n"  );  #if defined(CONFIG_CMD_DHCP) @@ -73,8 +73,8 @@ int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  U_BOOT_CMD(  	dhcp,	3,	1,	do_dhcp, -	"dhcp\t- invoke DHCP client to obtain IP/boot params\n", -	"\n" +	"dhcp\t- boot image via network using DHCP/TFTP protocol\n", +	"[loadAddress] [[hostIPaddr:]bootfilename]\n"  );  #endif |