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-11 11:17:12 +0800 |
commit | 3e421ea34d0478021dd8829a59f97e82c5ff2bf5 (patch) | |
tree | 6aecc8f744ed4c7eb8d76203660ec28bc673cd06 | |
parent | 29e06b0554969b34c1b8b577f40174c54c3a2dca (diff) | |
download | u-boot-imx-3e421ea34d0478021dd8829a59f97e82c5ff2bf5.zip u-boot-imx-3e421ea34d0478021dd8829a59f97e82c5ff2bf5.tar.gz u-boot-imx-3e421ea34d0478021dd8829a59f97e82c5ff2bf5.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>
(cherry picked from commit a3696740eba4027a8d61ca06edc650d90f2e6d2a)
-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) |