From 7a12e5c20a0cdf156862e1a5002659495556e36f Mon Sep 17 00:00:00 2001 From: "Ye.Li" Date: Tue, 27 Oct 2015 15:53:43 +0800 Subject: 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 --- include/configs/mx7dsabresd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs/mx7dsabresd.h') diff --git a/include/configs/mx7dsabresd.h b/include/configs/mx7dsabresd.h index 363ff68..2324a31 100644 --- a/include/configs/mx7dsabresd.h +++ b/include/configs/mx7dsabresd.h @@ -357,7 +357,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 -- cgit v1.1