blob: a5765e9560c1d4a0d4002420a9f29bb5e358e744 [file] [log] [blame]
Patrick Williams0f19eb52017-07-27 13:32:33 -05001From 6bfd346da6639a83e17e271e95ce33d1d095334a Mon Sep 17 00:00:00 2001
2From: Patrick Williams <patrick@stwcx.xyz>
3Date: Fri, 21 Jul 2017 16:30:01 -0500
4Subject: [PATCH] config/ast-common: hack bootopts
5
6Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
7---
8 include/configs/ast-common.h | 6 ++++++
9 1 file changed, 6 insertions(+)
10
11diff --git a/include/configs/ast-common.h b/include/configs/ast-common.h
Adriana Kobylak6b7e2de2017-08-24 09:33:35 -050012index 0475109..8dfaff7 100644
Patrick Williams0f19eb52017-07-27 13:32:33 -050013--- a/include/configs/ast-common.h
14+++ b/include/configs/ast-common.h
Adriana Kobylak6b7e2de2017-08-24 09:33:35 -050015@@ -96,7 +96,10 @@
16 #define CONFIG_CMD_MTDPARTS
17 #endif
Patrick Williams0f19eb52017-07-27 13:32:33 -050018
19+#if 0
20 #define CONFIG_BOOTARGS "console=ttyS4,115200n8 root=/dev/ram rw"
21+#endif
22+#define CONFIG_BOOTARGS "console=ttyS4,115200n8 root=/dev/mtdblock4 ro"
23
24 #define CONFIG_AST_SPI_NOR /* AST SPI NOR Flash */
25 #define CONFIG_FMC_CS 1
Adriana Kobylak6b7e2de2017-08-24 09:33:35 -050026@@ -111,11 +114,14 @@
Adriana Kobylak48c8fa32017-08-19 09:32:18 -050027 #define CONFIG_ENV_SIZE 0x10000 /* Total Size of Environment Sector */
28 #define CONFIG_ENV_SIZE_REDUND 0x10000
Patrick Williams0f19eb52017-07-27 13:32:33 -050029
30+#if 0
31 #define CONFIG_BOOTCOMMAND \
32 "fdt addr 20080000; " \
33 "if fdt get value ramdisk_conf /configurations/conf@1 ramdisk; then " \
34 " bootm 20080000; else bootm 20080000 20300000; " \
35 "fi"
36+#endif
37+#define CONFIG_BOOTCOMMAND "fdt addr 20080000; bootm 20080000"
38 #define CONFIG_ENV_OVERWRITE
39
40 #define ASPEED_ENV_SETTINGS \
41--
Adriana Kobylak48c8fa32017-08-19 09:32:18 -0500421.8.2.2
Patrick Williams0f19eb52017-07-27 13:32:33 -050043