blob: f0895cec82a7cb5a17e94f6de861222250f05fb3 [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 Kobylak48c8fa32017-08-19 09:32:18 -050012index 15e1db4..e7fa6ed 100644
Patrick Williams0f19eb52017-07-27 13:32:33 -050013--- a/include/configs/ast-common.h
14+++ b/include/configs/ast-common.h
15@@ -84,7 +84,10 @@
16 #define CONFIG_SYS_MAXARGS 16
17 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
18
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 Kobylak48c8fa32017-08-19 09:32:18 -050026@@ -99,11 +102,14 @@
27 #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