summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel@ziswiler.com>2015-03-01 00:53:16 +0100
committerMarek Vasut <marex@denx.de>2015-03-02 10:59:51 +0100
commit99d672fa54552e87c92f409efcc2d750511f26c7 (patch)
treef19af4beb3b344b819c74c0dcf55751efc94fd5b /include
parent7c49b523e799fe2c46bfb3ad312c9faf02e2f47e (diff)
downloadtalos-obmc-uboot-99d672fa54552e87c92f409efcc2d750511f26c7.tar.gz
talos-obmc-uboot-99d672fa54552e87c92f409efcc2d750511f26c7.zip
pxa: colibri_pax270: fix CONFIG_BOOTCOMMAND
While 'mmc init' is no longer required the address to bootm the kernel from NOR flash was wrong. Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/colibri_pxa270.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/colibri_pxa270.h b/include/configs/colibri_pxa270.h
index 1b1816ae25..07426d16bf 100644
--- a/include/configs/colibri_pxa270.h
+++ b/include/configs/colibri_pxa270.h
@@ -26,13 +26,13 @@
#define CONFIG_SYS_MALLOC_LEN (128 * 1024)
#define CONFIG_ARCH_CPU_INIT
#define CONFIG_BOOTCOMMAND \
- "if mmc init && fatload mmc 0 0xa0000000 uImage; then " \
+ "if fatload mmc 0 0xa0000000 uImage; then " \
"bootm 0xa0000000; " \
"fi; " \
"if usb reset && fatload usb 0 0xa0000000 uImage; then " \
"bootm 0xa0000000; " \
"fi; " \
- "bootm 0x80000;"
+ "bootm 0xc0000;"
#define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200"
#define CONFIG_TIMESTAMP
#define CONFIG_BOOTDELAY 2 /* Autoboot delay */
OpenPOWER on IntegriCloud