Skip to content
Snippets Groups Projects
Commit 99d672fa authored by Marcel Ziswiler's avatar Marcel Ziswiler Committed by Marek Vasut
Browse files

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: default avatarMarcel Ziswiler <marcel@ziswiler.com>
parent 7c49b523
No related branches found
No related tags found
No related merge requests found
...@@ -26,13 +26,13 @@ ...@@ -26,13 +26,13 @@
#define CONFIG_SYS_MALLOC_LEN (128 * 1024) #define CONFIG_SYS_MALLOC_LEN (128 * 1024)
#define CONFIG_ARCH_CPU_INIT #define CONFIG_ARCH_CPU_INIT
#define CONFIG_BOOTCOMMAND \ #define CONFIG_BOOTCOMMAND \
"if mmc init && fatload mmc 0 0xa0000000 uImage; then " \ "if fatload mmc 0 0xa0000000 uImage; then " \
"bootm 0xa0000000; " \ "bootm 0xa0000000; " \
"fi; " \ "fi; " \
"if usb reset && fatload usb 0 0xa0000000 uImage; then " \ "if usb reset && fatload usb 0 0xa0000000 uImage; then " \
"bootm 0xa0000000; " \ "bootm 0xa0000000; " \
"fi; " \ "fi; " \
"bootm 0x80000;" "bootm 0xc0000;"
#define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200" #define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200"
#define CONFIG_TIMESTAMP #define CONFIG_TIMESTAMP
#define CONFIG_BOOTDELAY 2 /* Autoboot delay */ #define CONFIG_BOOTDELAY 2 /* Autoboot delay */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment