summaryrefslogtreecommitdiff
path: root/include/configs/usbarmory.h
diff options
context:
space:
mode:
authorAndrej Rosano <andrej@inversepath.com>2016-06-20 15:21:48 (GMT)
committerStefano Babic <sbabic@denx.de>2016-07-12 15:58:50 (GMT)
commit9a45ec3ea0858026d5715f16e3bdb596057f727e (patch)
treeb5cd3c8635d30aa6f55206c616525f525e1dc326 /include/configs/usbarmory.h
parent1f1756279604c3c77933ef2a7db745dc1d22a95c (diff)
downloadu-boot-9a45ec3ea0858026d5715f16e3bdb596057f727e.tar.xz
usbarmory: switch to using kernel zImage
Switch to using zImage instead of uImage. Signed-off-by: Andrej Rosano <andrej@inversepath.com>
Diffstat (limited to 'include/configs/usbarmory.h')
-rw-r--r--include/configs/usbarmory.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/configs/usbarmory.h b/include/configs/usbarmory.h
index 8568663..c0e093f 100644
--- a/include/configs/usbarmory.h
+++ b/include/configs/usbarmory.h
@@ -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)