diff options
author | Soeren Moch <smoch@web.de> | 2015-10-01 22:48:04 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-10-02 10:42:31 +0200 |
commit | b9a1609915f68bad51b15cb12546723519a9be41 (patch) | |
tree | 9378012708e937c4fe9b3d0b4ea1751241ac08e1 /include | |
parent | e2748b416798be31f035c8314787bf1867005b57 (diff) | |
download | u-boot-b9a1609915f68bad51b15cb12546723519a9be41.tar.gz |
tbs2910: explicitly set boot address
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tbs2910.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h index 70b440340f..4534695598 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; " \ |