From: Jagannadha Sutradharudu Teki Date: Wed, 12 Jun 2013 08:29:57 +0000 (+0530) Subject: zynq_common: Use cp.b instead of cp in nor autoboot X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b0988d5a4707f38bd12f23affd47a3d608ea82c;p=thirdparty%2Fu-boot.git zynq_common: Use cp.b instead of cp in nor autoboot Used cp.b instead of cp in nor autoboot, cp had an issue while using in autoboot as per the latest test. Signed-off-by: Jagannadha Sutradharudu Teki --- diff --git a/include/configs/zynq_common.h b/include/configs/zynq_common.h index d80fd3a36bd..75b381c00e9 100644 --- a/include/configs/zynq_common.h +++ b/include/configs/zynq_common.h @@ -216,10 +216,10 @@ "fatload mmc 0 ${loadbit_addr} ${bitstream_image} && " \ "fpga load 0 ${loadbit_addr} ${filesize}\0" \ "norboot=echo Copying Linux from NOR flash to RAM... && " \ - "cp 0xE2100000 0x3000000 ${kernel_size} && " \ - "cp 0xE2600000 0x2A00000 ${devicetree_size} && " \ + "cp.b 0xE2100000 0x3000000 ${kernel_size} && " \ + "cp.b 0xE2600000 0x2A00000 ${devicetree_size} && " \ "echo Copying ramdisk... && " \ - "cp 0xE2620000 0x2000000 ${ramdisk_size} && " \ + "cp.b 0xE2620000 0x2000000 ${ramdisk_size} && " \ "bootm 0x3000000 0x2000000 0x2A00000\0" \ "qspiboot=echo Copying Linux from QSPI flash to RAM... && " \ "sf probe 0 0 0 && " \