From: Jagannadha Sutradharudu Teki Date: Tue, 4 Dec 2012 12:56:38 +0000 (+0530) Subject: zynq: Fix to use devicetree_size variable value instead of address X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e8c5f4930c39389ddf02e6b56d4fd384b077a98;p=thirdparty%2Fu-boot.git zynq: Fix to use devicetree_size variable value instead of address Fix typo for devicetree_size env variable where a $ is missed which Results in use of address rather than value. The bug was introduced by this commit: "zynq: Add devicetree_size env variable" (sha1: c99c6282b8f2babf48506a0c98460f44cf72bfba) Signed-off-by: Jagannadha Sutradharudu Teki Acked-by: Michal Simek --- diff --git a/include/configs/zynq_common.h b/include/configs/zynq_common.h index 33734df3a60..361c919fd17 100644 --- a/include/configs/zynq_common.h +++ b/include/configs/zynq_common.h @@ -183,7 +183,7 @@ "initrd_high=0x20000000\0" \ "norboot=echo Copying Linux from NOR flash to RAM...;" \ "cp 0xE2100000 0x3000000 ${kernel_size};" \ - "cp 0xE2600000 0x2A00000 {devicetree_size};" \ + "cp 0xE2600000 0x2A00000 ${devicetree_size};" \ "echo Copying ramdisk...;" \ "cp 0xE3000000 0x2000000 ${ramdisk_size};" \ "bootm 0x3000000 0x2000000 0x2A00000\0" \