diff options
author | Michal Simek <michal.simek@xilinx.com> | 2014-02-05 07:56:07 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-02-13 15:25:52 +0100 |
commit | dfa94058f550e06405e80df4fb277fd306a77cbd (patch) | |
tree | 2c27256cdf6d403a9e98bb81f0f25e13112a459b /include | |
parent | e60cfd531a5066f95ece02e1e76fa2c6326761b3 (diff) | |
download | u-boot-imx-dfa94058f550e06405e80df4fb277fd306a77cbd.zip u-boot-imx-dfa94058f550e06405e80df4fb277fd306a77cbd.tar.gz u-boot-imx-dfa94058f550e06405e80df4fb277fd306a77cbd.tar.bz2 |
zynq: Use full tftpboot command instead of shortcut tftp
The reason is enabling tftpput command where
tftp shorcut stops to work for tftpboot.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/zynq-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index e7a8e9f..3b461e0 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -164,7 +164,7 @@ "fatload mmc 0 ${load_addr} ${fit_image} && " \ "bootm ${load_addr}\0" \ "jtagboot=echo TFTPing FIT to RAM... && " \ - "tftp ${load_addr} ${fit_image} && " \ + "tftpboot ${load_addr} ${fit_image} && " \ "bootm ${load_addr}\0" #define CONFIG_BOOTCOMMAND "run $modeboot" #define CONFIG_BOOTDELAY 3 /* -1 to Disable autoboot */ |