1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git a/include/configs/rpi-common.h b/include/configs/rpi-common.h
index 30cd319..a561faf 100644
--- a/include/configs/rpi-common.h
+++ b/include/configs/rpi-common.h
@@ -111,7 +111,7 @@
sizeof(CONFIG_SYS_PROMPT) + 16)
/* Environment */
-#define CONFIG_ENV_SIZE SZ_16K
+#define CONFIG_ENV_SIZE SZ_128K
#define CONFIG_ENV_IS_IN_FAT
#define FAT_ENV_INTERFACE "mmc"
#define FAT_ENV_DEVICE_AND_PART "0:1"
@@ -121,6 +121,7 @@
#define CONFIG_SYS_LOAD_ADDR 0x1000000
#define CONFIG_CONSOLE_MUX
#define CONFIG_SYS_CONSOLE_IS_IN_ENV
+#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
#define CONFIG_PREBOOT "usb start"
/* Shell */
@@ -138,6 +139,7 @@
#define CONFIG_SETUP_MEMORY_TAGS
#define CONFIG_CMDLINE_TAG
#define CONFIG_INITRD_TAG
+#define CONFIG_SUPPORT_RAW_INITRD
#include <config_distro_defaults.h>
|