diff options
author | Ye Li <ye.li@nxp.com> | 2017-04-05 10:17:47 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 19:48:58 +0800 |
commit | 5061ff951fe41403baba7c37c02123ea78435d79 (patch) | |
tree | 6c91d661144b939687437119d1d943651e18d07c /include/configs/mx6sll_arm2.h | |
parent | ce4339b757d66230adb345e07c08ac0a134d13cc (diff) | |
download | u-boot-imx-5061ff951fe41403baba7c37c02123ea78435d79.zip u-boot-imx-5061ff951fe41403baba7c37c02123ea78435d79.tar.gz u-boot-imx-5061ff951fe41403baba7c37c02123ea78435d79.tar.bz2 |
MLK-14606 mx6/7: Modify ENV offset to 896K
Since the u-boot size increases after using OF_CONTROL to including DTB,
we have to adjust ENV_OFFSET to 896K for SD/eMMC/FLASH/SATA.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'include/configs/mx6sll_arm2.h')
-rw-r--r-- | include/configs/mx6sll_arm2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6sll_arm2.h b/include/configs/mx6sll_arm2.h index b25e7ed..3aa1f26 100644 --- a/include/configs/mx6sll_arm2.h +++ b/include/configs/mx6sll_arm2.h @@ -169,9 +169,9 @@ #endif #if defined(CONFIG_ENV_IS_IN_MMC) -#define CONFIG_ENV_OFFSET (13 * SZ_64K) +#define CONFIG_ENV_OFFSET (14 * SZ_64K) #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) -#define CONFIG_ENV_OFFSET (864 * 1024) +#define CONFIG_ENV_OFFSET (896 * 1024) #define CONFIG_ENV_SECT_SIZE (64 * 1024) #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS |