public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] tbs2910: explicitly set boot address
@ 2015-10-01 20:48 Soeren Moch
  2015-10-01 20:52 ` Soeren Moch
  0 siblings, 1 reply; 3+ messages in thread
From: Soeren Moch @ 2015-10-01 20:48 UTC (permalink / raw)
  To: u-boot

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 <scheffler.u@web.de>
Signed-off-by: Soeren Moch <smoch@web.de>
Tested-by: Uwe Scheffler <scheffler.u@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
Cc: Uwe Scheffler <scheffler.u@web.de>
---
 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; " \
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] tbs2910: explicitly set boot address
  2015-10-01 20:48 [U-Boot] [PATCH] tbs2910: explicitly set boot address Soeren Moch
@ 2015-10-01 20:52 ` Soeren Moch
  2015-10-02  8:27   ` Stefano Babic
  0 siblings, 1 reply; 3+ messages in thread
From: Soeren Moch @ 2015-10-01 20:52 UTC (permalink / raw)
  To: u-boot

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 <scheffler.u@web.de>
> Signed-off-by: Soeren Moch <smoch@web.de>
> Tested-by: Uwe Scheffler <scheffler.u@web.de>
> ---
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Uwe Scheffler <scheffler.u@web.de>

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; " \
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] tbs2910: explicitly set boot address
  2015-10-01 20:52 ` Soeren Moch
@ 2015-10-02  8:27   ` Stefano Babic
  0 siblings, 0 replies; 3+ messages in thread
From: Stefano Babic @ 2015-10-02  8:27 UTC (permalink / raw)
  To: u-boot

Hi Soeren,

On 01/10/2015 22:52, Soeren Moch wrote:
> 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 <scheffler.u@web.de>
>> Signed-off-by: Soeren Moch <smoch@web.de>
>> Tested-by: Uwe Scheffler <scheffler.u@web.de>
>> ---
>> Cc: Stefano Babic <sbabic@denx.de>
>> Cc: Uwe Scheffler <scheffler.u@web.de>
> 
> Stefano, Tom,
> 
> since this fixes a user reported error, can we pull this in for v2015.10?
> 

ok, I'll pick it up.

Regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-10-02  8:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-01 20:48 [U-Boot] [PATCH] tbs2910: explicitly set boot address Soeren Moch
2015-10-01 20:52 ` Soeren Moch
2015-10-02  8:27   ` Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox