2013-12-22 19:38:12 +01:00
|
|
|
--- include/configs/mx53loco.h.orig 2013-11-21 16:01:18.084423858 +0100
|
|
|
|
+++ include/configs/mx53loco.h 2013-11-21 16:05:47.301100793 +0100
|
|
|
|
@@ -93,6 +93,7 @@
|
2013-04-17 09:25:52 +02:00
|
|
|
/* Command definition */
|
|
|
|
#include <config_cmd_default.h>
|
|
|
|
#define CONFIG_CMD_BOOTZ
|
|
|
|
+#define CONFIG_SUPPORT_RAW_INITRD /* bootz raw initrd support */
|
|
|
|
|
|
|
|
#undef CONFIG_CMD_IMLS
|
|
|
|
|
2013-12-22 19:38:12 +01:00
|
|
|
@@ -104,7 +105,7 @@
|
|
|
|
#define CONFIG_SYS_TEXT_BASE 0x77800000
|
|
|
|
|
2012-08-07 08:24:10 +02:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2013-12-22 19:38:12 +01:00
|
|
|
- "script=boot.scr\0" \
|
|
|
|
+ "script=boot/boot.scr\0" \
|
2012-08-07 08:24:10 +02:00
|
|
|
"uimage=uImage\0" \
|
2013-04-17 09:25:52 +02:00
|
|
|
"fdt_file=imx53-qsb.dtb\0" \
|
2013-12-22 19:38:12 +01:00
|
|
|
"fdt_addr=0x71000000\0" \
|
|
|
|
@@ -115,11 +116,11 @@
|
|
|
|
"mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
|
2013-04-17 09:25:52 +02:00
|
|
|
"mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \
|
2012-08-07 08:24:10 +02:00
|
|
|
"loadbootscript=" \
|
|
|
|
- "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
|
2013-12-22 19:38:12 +01:00
|
|
|
+ "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
|
2012-08-07 08:24:10 +02:00
|
|
|
"bootscript=echo Running bootscript from mmc ...; " \
|
|
|
|
"source\0" \
|
|
|
|
- "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
|
2013-04-17 09:25:52 +02:00
|
|
|
- "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
|
2013-12-22 19:38:12 +01:00
|
|
|
+ "loaduimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
|
|
|
|
+ "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
|
2012-08-07 08:24:10 +02:00
|
|
|
"mmcboot=echo Booting from mmc ...; " \
|
|
|
|
"run mmcargs; " \
|
2013-04-17 09:25:52 +02:00
|
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|