diff mbox

[U-Boot,1/3] tt01: fix environment size

Message ID 1327933315-11197-2-git-send-email-helmut.raiger@hale.at
State Accepted
Commit 0b87e010f8774a975c2353f03105de824c55fb83
Delegated to: Stefano Babic
Headers show

Commit Message

Helmut Raiger Jan. 30, 2012, 2:21 p.m. UTC
size of environment must match erasable block size in the flash.

Signed-off-by: Helmut Raiger <helmut.raiger@hale.at>
---
 include/configs/tt01.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Stefano Babic Feb. 17, 2012, 8:48 a.m. UTC | #1
On 30/01/2012 15:21, Helmut Raiger wrote:
> size of environment must match erasable block size in the flash.
> 
> Signed-off-by: Helmut Raiger <helmut.raiger@hale.at>
> ---

Applied to u-boot-imx, thanks.

Best regards,
Stefano Babic
diff mbox

Patch

diff --git a/include/configs/tt01.h b/include/configs/tt01.h
index 6846816..8dd657c 100644
--- a/include/configs/tt01.h
+++ b/include/configs/tt01.h
@@ -131,7 +131,7 @@ 
 
 #define CONFIG_ENV_IS_IN_FLASH
 #define CONFIG_ENV_SECT_SIZE	(128 * 1024)
-#define CONFIG_ENV_SIZE		(8 * 1024) /* smaller for faster access */
+#define CONFIG_ENV_SIZE		(128 * 1024)
 
 /* Address and size of Redundant Environment Sector	*/
 #define CONFIG_ENV_OFFSET_REDUND	(CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)