mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-21 22:21:36 +00:00
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>
This commit is contained in:
parent
7c49b523e7
commit
99d672fa54
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue