From 62896dcbf37b478f7f719e2ce456d9bfe91a291a Mon Sep 17 00:00:00 2001 From: Adam Ford Date: Mon, 26 Mar 2018 10:24:12 -0500 Subject: [PATCH] omap3_logic: Fix FDT ADDR for ramdisk booting The boot scripts for booting from ramdisk are using ${fdtimage} when they really should be using ${fdtaddr} This patch will fix it so the RAMdisk bootscripts operate correctly. Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/omap3_logic.h b/include/configs/omap3_logic.h index c9a154c..162b05d 100644 --- a/include/configs/omap3_logic.h +++ b/include/configs/omap3_logic.h @@ -153,10 +153,10 @@ "run loadramdisk\0" \ "mmcramboot=setenv bootfile uImage; " \ "run mmcrambootcommon; " \ - "bootm ${loadaddr} ${rdaddr} ${fdtimage}\0" \ + "bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \ "mmcrambootz=setenv bootfile zImage; " \ "run mmcrambootcommon; " \ - "bootz ${loadaddr} ${rdaddr} ${fdtimage}\0" \ + "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \ "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \ "run ramargs; " \ "run common_bootargs; " \ -- 2.7.4