From mboxrd@z Thu Jan 1 00:00:00 1970 From: Soeren Moch Date: Thu, 1 Oct 2015 22:52:37 +0200 Subject: [U-Boot] [PATCH] tbs2910: explicitly set boot address In-Reply-To: <1443732484-2822-1-git-send-email-smoch@web.de> References: <1443732484-2822-1-git-send-email-smoch@web.de> Message-ID: <560D9D15.8020108@web.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 01.10.2015 22:48, Soeren Moch wrote: > Set missing boot address in bootm command. This fixes the error: > Wrong Image Format for bootm command > ERROR: can't get kernel image! > > Reported-by: Uwe Scheffler > Signed-off-by: Soeren Moch > Tested-by: Uwe Scheffler > --- > Cc: Stefano Babic > Cc: Uwe Scheffler Stefano, Tom, since this fixes a user reported error, can we pull this in for v2015.10? Thanks, Soeren > --- > include/configs/tbs2910.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h > index 66cb274..5943104 100644 > --- a/include/configs/tbs2910.h > +++ b/include/configs/tbs2910.h > @@ -190,7 +190,7 @@ > "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \ > "rdinit=/sbin/init enable_wait_mode=off\0" \ > "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \ > - "mmc read 0x10800000 0x800 0x4000; bootm\0" \ > + "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \ > "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \ > "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \ > "run bootargs_upd; " \ >