diff options
author | Ye.Li <B37916@freescale.com> | 2015-10-27 15:53:43 +0800 |
---|---|---|
committer | Ye.Li <B37916@freescale.com> | 2015-10-27 16:04:17 +0800 |
commit | 7a12e5c20a0cdf156862e1a5002659495556e36f (patch) | |
tree | 102f58f01b1c12c68bbd9fc9cb9bf7a782844249 /include/configs/mx6sxsabreauto.h | |
parent | 1e771cb709b71b9a471de94a1b8f22c345ca2bb3 (diff) | |
download | u-boot-imx-7a12e5c20a0cdf156862e1a5002659495556e36f.zip u-boot-imx-7a12e5c20a0cdf156862e1a5002659495556e36f.tar.gz u-boot-imx-7a12e5c20a0cdf156862e1a5002659495556e36f.tar.bz2 |
MLK-11767:imx: Modify the u-boot ENV offset for NAND storage
The current 36M offset will conflict with NAND FCB firmware2 when the
nand chip block is 1MB size. This patch change it to 36M + 1M offset,
so the redundant u-boot at firmware2 will not be broken.
Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'include/configs/mx6sxsabreauto.h')
-rw-r--r-- | include/configs/mx6sxsabreauto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6sxsabreauto.h b/include/configs/mx6sxsabreauto.h index 2dc1d72..26bba25 100644 --- a/include/configs/mx6sxsabreauto.h +++ b/include/configs/mx6sxsabreauto.h @@ -377,7 +377,7 @@ #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED #elif defined(CONFIG_ENV_IS_IN_NAND) #undef CONFIG_ENV_SIZE -#define CONFIG_ENV_OFFSET (36 << 20) +#define CONFIG_ENV_OFFSET (37 << 20) #define CONFIG_ENV_SECT_SIZE (128 << 10) #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE #endif |