From: Michal Simek Date: Fri, 31 Jan 2014 08:38:38 +0000 (+0100) Subject: zynq: Use full tftpboot command instead of shortcut tftp X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e7c09c52f16b8ef5e829d16cf9c2e17193f4abd;p=thirdparty%2Fu-boot.git 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 --- diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 448b152737d..5dbe835bb21 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -220,9 +220,9 @@ "nand read 0x2000000 0x620000 ${ramdisk_size} && " \ "bootm 0x3000000 0x2000000 0x2A00000\0" \ "jtagboot=echo TFTPing Linux to RAM... && " \ - "tftp 0x3000000 ${kernel_image} && " \ - "tftp 0x2A00000 ${devicetree_image} && " \ - "tftp 0x2000000 ${ramdisk_image} && " \ + "tftpboot 0x3000000 ${kernel_image} && " \ + "tftpboot 0x2A00000 ${devicetree_image} && " \ + "tftpboot 0x2000000 ${ramdisk_image} && " \ "bootm 0x3000000 0x2000000 0x2A00000\0" \ "rsa_norboot=echo Copying Image from NOR flash to RAM... && " \ "cp.b 0xE2100000 0x100000 ${boot_size} && " \ @@ -242,7 +242,7 @@ "zynqrsa 0x100000 && " \ "bootm 0x3000000 0x2000000 0x2A00000\0" \ "rsa_jtagboot=echo TFTPing Image to RAM... && " \ - "tftp 0x100000 ${boot_image} && " \ + "tftpboot 0x100000 ${boot_image} && " \ "zynqrsa 0x100000 && " \ "bootm 0x3000000 0x2000000 0x2A00000\0"