SHA256
1
0
forked from pool/u-boot
u-boot/mx53loco-bootscr.patch
Stephan Kulow 7b56261a82 Accepting request 234407 from Base:System
- Enhance pre_checkin.sh script to handle arch restrictions

- Fix builds :
  * 'tools' target is now 'tools-only'
  * kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
  * Enhanced pre_checkin.sh script to handle uppercases in config name
  * Renamed config from cubieboard to Cubieboard
  * Renamed config from cubieboard2 to Cubieboard2
  * Renamed config from hyundai_a7hd to Hyundai_A7HD
  * Renamed config from mele_a1000 to Mele_A1000

- Add vexpress_aemv8a board

- Update to v2014.04
  * Update mlo-ext2.patch
  * Update mx53loco-bootscr.patch
  * Update origen-ext2.patch
  * Dropped v2014.01-sunxi.patch and created
  v2014.04-sunxi.patch by diffing u-boot-2014.04 with 
  u-boot-sunxi.git d9fe0a1e061e2bde6c24a0f7cef4f5023f3bd579
  * Update rpi_b-bootscr.patch
  * Drop gnuhash.patch (upstreamed)

- Enhance pre_checkin.sh script to handle arch restrictions

- Fix builds :
  * 'tools' target is now 'tools-only'
  * kermit scripts moved from 'tools/scripts' to 'tools/kermit/'
  * Enhanced pre_checkin.sh script to handle uppercases in config name
  * Renamed config from cubieboard to Cubieboard

OBS-URL: https://build.opensuse.org/request/show/234407
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=25
2014-05-17 19:45:20 +00:00

26 lines
1.1 KiB
Diff

--- include/configs/mx53loco.h.orig 2014-04-14 21:19:24.000000000 +0200
+++ include/configs/mx53loco.h 2014-04-29 11:53:24.669579194 +0200
@@ -92,6 +92,7 @@
/* Command definition */
#include <config_cmd_default.h>
#define CONFIG_CMD_BOOTZ
+#define CONFIG_SUPPORT_RAW_INITRD /* bootz raw initrd support */
#undef CONFIG_CMD_IMLS
@@ -114,11 +115,11 @@
"mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
"mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \
"loadbootscript=" \
- "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
+ "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
"bootscript=echo Running bootscript from mmc ...; " \
"source\0" \
- "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
- "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
+ "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
+ "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
"mmcboot=echo Booting from mmc ...; " \
"run mmcargs; " \
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \