diff options
author | wdenk <wdenk> | 2005-06-20 10:28:38 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-06-20 10:28:38 +0000 |
commit | 024447b186cca55c2d803ab96b4c8f8674363b86 (patch) | |
tree | cddd81402a320b7d750eb4fcb306786a2477f5db | |
parent | b2532eff87c73b11212dd63403ee9ae18c56b53a (diff) | |
download | u-boot-imx-024447b186cca55c2d803ab96b4c8f8674363b86.zip u-boot-imx-024447b186cca55c2d803ab96b4c8f8674363b86.tar.gz u-boot-imx-024447b186cca55c2d803ab96b4c8f8674363b86.tar.bz2 |
Enable redundant environment, disable HW flash protection of HMI1001 board
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | include/configs/hmi1001.h | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -2,6 +2,9 @@ Changes for U-Boot 1.1.3: ====================================================================== +* Enable redundant environment, disable HW flash protection of + HMI1001 board + * Patch by Travis Sawyer, 10 Jun 2005: Initialize allocated dev and private hw structures after their respective allocation in 440gx_enet.c diff --git a/include/configs/hmi1001.h b/include/configs/hmi1001.h index 9e5a0ab..fc97b8d 100644 --- a/include/configs/hmi1001.h +++ b/include/configs/hmi1001.h @@ -119,7 +119,6 @@ #define CFG_FLASH_CFI #define CFG_FLASH_EMPTY_INFO #define CFG_FLASH_CFI_AMD_RESET -#define CFG_FLASH_PROTECTION /* * Environment settings @@ -127,6 +126,8 @@ #define CFG_ENV_IS_IN_FLASH 1 #define CFG_ENV_SIZE 0x4000 #define CFG_ENV_SECT_SIZE 0x20000 +#define CFG_ENV_OFFSET_REDUND (CFG_ENV_OFFSET+CFG_ENV_SECT_SIZE) +#define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE) /* * Memory map |