mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 00:49:43 +00:00
usbarmory: switch to using kernel zImage
Switch to using zImage instead of uImage. Signed-off-by: Andrej Rosano <andrej@inversepath.com>
This commit is contained in:
parent
1f17562796
commit
9a45ec3ea0
1 changed files with 5 additions and 3 deletions
|
@ -69,17 +69,19 @@
|
|||
#define CONFIG_CMD_FUSE
|
||||
#define CONFIG_FSL_IIM
|
||||
|
||||
/* Linux boot */
|
||||
/* U-Boot memory offsets */
|
||||
#define CONFIG_LOADADDR 0x72000000
|
||||
#define CONFIG_SYS_TEXT_BASE 0x77800000
|
||||
#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
|
||||
|
||||
/* Linux boot */
|
||||
#define CONFIG_HOSTNAME usbarmory
|
||||
#define CONFIG_BOOTCOMMAND \
|
||||
"run distro_bootcmd; " \
|
||||
"setenv bootargs console=${console} ${bootargs_default}; " \
|
||||
"ext2load mmc 0:1 ${kernel_addr_r} /boot/uImage; " \
|
||||
"ext2load mmc 0:1 ${kernel_addr_r} /boot/zImage; " \
|
||||
"ext2load mmc 0:1 ${fdt_addr_r} /boot/${fdtfile}; " \
|
||||
"bootm ${kernel_addr_r} - ${fdt_addr_r}"
|
||||
"bootz ${kernel_addr_r} - ${fdt_addr_r}"
|
||||
|
||||
#define BOOT_TARGET_DEVICES(func) func(MMC, mmc, 0)
|
||||
|
||||
|
|
Loading…
Reference in a new issue