From patchwork Tue Mar 12 13:41:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot] spl:falcon:trats: Fix SPL image size computing. From: Przemyslaw Marczak X-Patchwork-Id: 227162 Message-Id: <1363095709-11085-1-git-send-email-p.marczak@samsung.com> To: u-boot@lists.denx.de Cc: Kyungmin Park , Przemyslaw Marczak Date: Tue, 12 Mar 2013 14:41:49 +0100 "spl_imgsize" was set as decimal variable by "setexpr" and this causes wrong image size written by "ext4write". Preset this val with "0x" prefix allow to fix this issue. Signed-off-by: Przemyslaw Marczak Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- include/configs/trats.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/trats.h b/include/configs/trats.h index 63745ac..1fd7943 100644 --- a/include/configs/trats.h +++ b/include/configs/trats.h @@ -199,6 +199,7 @@ "splfile=falcon.bin\0" \ "spl_export=" \ "setexpr spl_imgsize ${splsize} + 8 ;" \ + "setenv spl_imgsize 0x${spl_imgsize};" \ "setexpr spl_imgaddr ${spladdr} - 8 ;" \ "setexpr spl_addr_tmp ${spladdr} - 4 ;" \ "mw.b ${spl_imgaddr} 0x00 ${spl_imgsize};run loaduimage;" \