diff options
author | Liu Ying <Ying.Liu@freescale.com> | 2013-12-06 16:32:31 +0800 |
---|---|---|
committer | Liu Ying <Ying.Liu@freescale.com> | 2013-12-09 15:30:00 +0800 |
commit | a3696740eba4027a8d61ca06edc650d90f2e6d2a (patch) | |
tree | fe2a6fe8d53a7ac208e6feae4eee9e77e331b22f | |
parent | 9045ce4122e55c7c0df979042cf98b3612ae8cfd (diff) | |
download | u-boot-imx-a3696740eba4027a8d61ca06edc650d90f2e6d2a.zip u-boot-imx-a3696740eba4027a8d61ca06edc650d90f2e6d2a.tar.gz u-boot-imx-a3696740eba4027a8d61ca06edc650d90f2e6d2a.tar.bz2 |
ENGR00291115-1 MX6 common:Increase env offset for MMC
Uboot image size will be larger than 400KiB, when we
add the splash screen with IPUv3 at this stage.
So, the patch increases CONFIG_ENV_OFFSET from 384KiB
to 512KiB for MMC to avoid overlapping bewteen the
Uboot image and the environmental data.
Signed-off-by: Liu Ying <Ying.Liu@freescale.com>
-rw-r--r-- | include/configs/mx6qsabre_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6qsabre_common.h b/include/configs/mx6qsabre_common.h index 1920968..08a6e2f 100644 --- a/include/configs/mx6qsabre_common.h +++ b/include/configs/mx6qsabre_common.h @@ -359,7 +359,7 @@ #endif #if defined(CONFIG_ENV_IS_IN_MMC) -#define CONFIG_ENV_OFFSET (6 * 64 * 1024) +#define CONFIG_ENV_OFFSET (8 * 64 * 1024) #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) #define CONFIG_ENV_OFFSET (768 * 1024) #define CONFIG_ENV_SECT_SIZE (64 * 1024) |