e6bf81de08
1 OBS-URL: https://build.opensuse.org/request/show/248054 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/u-boot?expand=0&rev=29
49 lines
1.4 KiB
Diff
49 lines
1.4 KiB
Diff
Index: include/configs/arndale.h
|
|
===================================================================
|
|
--- include/configs/arndale.h.orig
|
|
+++ include/configs/arndale.h
|
|
@@ -72,9 +72,6 @@
|
|
"stdout=serial\0" \
|
|
"stderr=serial\0"
|
|
|
|
-#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
- EXYNOS_DEVICE_SETTINGS
|
|
-
|
|
/* SD/MMC configuration */
|
|
#define CONFIG_GENERIC_MMC
|
|
#define CONFIG_MMC
|
|
@@ -105,6 +102,8 @@
|
|
#define CONFIG_CMD_FAT
|
|
#define CONFIG_CMD_NET
|
|
#define CONFIG_CMD_HASH
|
|
+#define CONFIG_SUPPORT_RAW_INITRD
|
|
+#define CONFIG_CMD_BOOTZ
|
|
|
|
#define CONFIG_BOOTDELAY 3
|
|
#define CONFIG_ZERO_BOOTDELAY_CHECK
|
|
@@ -130,7 +129,23 @@
|
|
#define CONFIG_SPL_TEXT_BASE 0x02023400
|
|
#define CONFIG_SPL_MAX_FOOTPRINT (14 * 1024)
|
|
|
|
-#define CONFIG_BOOTCOMMAND "mmc read 40007000 451 2000; bootm 40007000"
|
|
+#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
+ EXYNOS_DEVICE_SETTINGS \
|
|
+ "loadaddr=0x40007000\0" \
|
|
+ "rdaddr=0x4f000000\0" \
|
|
+ "kerneladdr=0x40007000\0" \
|
|
+ "ramdiskaddr=0x4f000000\0" \
|
|
+ "console=ttySAC2,115200n8\0" \
|
|
+ "mmcdev=1\0" \
|
|
+ "bootenv=uEnv.txt\0" \
|
|
+ "loadbootscript=ext2load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
|
|
+ "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
|
|
+ "source ${loadaddr}\0"
|
|
+#define CONFIG_BOOTCOMMAND \
|
|
+ "mmc rescan; " \
|
|
+ "echo SD/MMC found on device ${mmcdev};" \
|
|
+ "run loadbootscript; " \
|
|
+ "run bootscript; " \
|
|
|
|
/* Miscellaneous configurable options */
|
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|