diff options
author | Sjoerd Simons | 2015-09-18 23:49:12 +0200 |
---|---|---|
committer | Simon Glass | 2015-12-01 08:07:22 -0700 |
commit | abe919ec5487bda93245369eb103b20e182fd8b5 (patch) | |
tree | ae8ca356ece8e40abbc51d832658a97e597f0802 /include/configs | |
parent | 9550e799e5c982c7cc3ec8bbfb24cdfde8dc747d (diff) |
rockchip: firefly: Save the environment on SD card
Save the environment on the SD card for Firefly in the empty space
between the SPL and the u-boot image.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/chromebook_jerry.h | 1 | ||||
-rw-r--r-- | include/configs/firefly-rk3288.h | 8 | ||||
-rw-r--r-- | include/configs/rk3288_common.h | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/include/configs/chromebook_jerry.h b/include/configs/chromebook_jerry.h index a22b123be6d..058325c0b49 100644 --- a/include/configs/chromebook_jerry.h +++ b/include/configs/chromebook_jerry.h @@ -9,6 +9,7 @@ #include <configs/rk3288_common.h> +#define CONFIG_ENV_IS_NOWHERE #define CONFIG_SPL_SPI_SUPPORT #define CONFIG_SPL_SPI_FLASH_SUPPORT #define CONFIG_SPL_SPI_LOAD diff --git a/include/configs/firefly-rk3288.h b/include/configs/firefly-rk3288.h index a82adc852d1..4c5c4ddefd5 100644 --- a/include/configs/firefly-rk3288.h +++ b/include/configs/firefly-rk3288.h @@ -11,4 +11,12 @@ #define CONFIG_SPL_MMC_SUPPORT +#define CONFIG_ENV_IS_IN_MMC +#define CONFIG_SYS_MMC_ENV_DEV 0 +/* SPL @ 32k for ~36k + * ENV @ 96k + * u-boot @ 128K + */ +#define CONFIG_ENV_OFFSET (96 * 1024) + #endif diff --git a/include/configs/rk3288_common.h b/include/configs/rk3288_common.h index 56f72a97731..a513ac4f04b 100644 --- a/include/configs/rk3288_common.h +++ b/include/configs/rk3288_common.h @@ -11,7 +11,6 @@ #define CONFIG_SYS_NO_FLASH #define CONFIG_NR_DRAM_BANKS 1 -#define CONFIG_ENV_IS_NOWHERE #define CONFIG_ENV_SIZE 0x2000 #define CONFIG_SYS_MAXARGS 16 #define CONFIG_BAUDRATE 115200 |