From 5e7c09c52f16b8ef5e829d16cf9c2e17193f4abd Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Fri, 31 Jan 2014 09:38:38 +0100 Subject: [PATCH] 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 --- include/configs/zynq-common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" -- 2.47.3