diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-01-18 01:14:03 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-05 00:41:55 +0100 |
commit | a93907c43f847f076dd0e34ee3b69b5e8e6d0d29 (patch) | |
tree | 4e468add2e33cbc00bac922b9cc401ed11b58b16 /common/cmd_net.c | |
parent | 7ec8bb15ee368ea54d48d64867767a704d9ab4c2 (diff) | |
download | u-boot-midas-a93907c43f847f076dd0e34ee3b69b5e8e6d0d29.tar.gz u-boot-midas-a93907c43f847f076dd0e34ee3b69b5e8e6d0d29.tar.bz2 u-boot-midas-a93907c43f847f076dd0e34ee3b69b5e8e6d0d29.zip |
TFTP: add host ip addr support
allow to use a different server as set in serverip
add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
if not defined the max length will be at 128
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/cmd_net.c')
-rw-r--r-- | common/cmd_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_net.c b/common/cmd_net.c index 56eb684d55..dbf6b861b1 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -51,7 +51,7 @@ int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) U_BOOT_CMD( tftpboot, 3, 1, do_tftpb, "tftpboot- boot image via network using TFTP protocol\n", - "[loadAddress] [bootfilename]\n" + "[loadAddress] [[hostIPaddr:]bootfilename]\n" ); int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |