Patrick Williams | 0f19eb5 | 2017-07-27 13:32:33 -0500 | [diff] [blame] | 1 | From 6bfd346da6639a83e17e271e95ce33d1d095334a Mon Sep 17 00:00:00 2001 |
| 2 | From: Patrick Williams <patrick@stwcx.xyz> |
| 3 | Date: Fri, 21 Jul 2017 16:30:01 -0500 |
| 4 | Subject: [PATCH] config/ast-common: hack bootopts |
| 5 | |
| 6 | Signed-off-by: Patrick Williams <patrick@stwcx.xyz> |
| 7 | --- |
| 8 | include/configs/ast-common.h | 6 ++++++ |
| 9 | 1 file changed, 6 insertions(+) |
| 10 | |
| 11 | diff --git a/include/configs/ast-common.h b/include/configs/ast-common.h |
| 12 | index 110c780070..6f2a50b854 100644 |
| 13 | --- 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 |
| 26 | @@ -96,11 +99,14 @@ |
| 27 | #define CONFIG_ENV_OFFSET 0x60000 /* environment starts here */ |
| 28 | #define CONFIG_ENV_SIZE 0x20000 /* Total Size of Environment Sector */ |
| 29 | |
| 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 | -- |
| 42 | 2.13.0 |
| 43 | |