From 9e8c5f4930c39389ddf02e6b56d4fd384b077a98 Mon Sep 17 00:00:00 2001 From: Jagannadha Sutradharudu Teki Date: Tue, 4 Dec 2012 18:26:38 +0530 Subject: [PATCH] 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 --- include/configs/zynq_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" \ -- 2.47.3