mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
configs: at91: at91sam9x5ek: fix bootcmd for NAND flash
The default bootcommand needs to be accurate w.r.t the nand memory map at http://www.at91.com/linux4sam/bin/view/Linux4SAM/AT91sam9x5ekMainPage#NAND_Flash_demo_Memory_map Updated to load kernel + dtb at right offsets and boot the zImage. Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
This commit is contained in:
parent
65b60897a7
commit
6b4dba48ff
1 changed files with 3 additions and 2 deletions
|
@ -85,8 +85,9 @@
|
|||
#define CONFIG_ENV_OFFSET_REDUND 0x100000
|
||||
#define CONFIG_ENV_SIZE 0x20000 /* 1 sector = 128 kB */
|
||||
#define CONFIG_BOOTCOMMAND "nand read " \
|
||||
"0x22000000 0x200000 0x300000; " \
|
||||
"bootm 0x22000000"
|
||||
"0x22000000 0x200000 0x600000; " \
|
||||
"nand read 0x21000000 0x180000 0x20000; " \
|
||||
"bootz 0x22000000 - 0x21000000"
|
||||
#elif defined(CONFIG_SPI_BOOT)
|
||||
/* bootstrap + u-boot + env + linux in spi flash */
|
||||
#define CONFIG_ENV_OFFSET 0x5000
|
||||
|
|
Loading…
Add table
Reference in a new issue