summaryrefslogtreecommitdiff
path: root/include/configs/eNET.h
diff options
context:
space:
mode:
authorGraeme Russ <graeme.russ@gmail.com>2009-08-23 12:59:48 +1000
committerWolfgang Denk <wd@denx.de>2009-09-04 21:51:22 +0200
commitf3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82 (patch)
tree503cfe87c443f5646510eb07848b85ecc1d30b7f /include/configs/eNET.h
parentea0c37798c3823fdd77edfffd27b20191f8ca1f0 (diff)
Fix environment configuration for eNET board
The current configuration of the Environment has the redundant copy of the environment in the Boot Flash - This was never the intent. The Environment should instead be in the first two sectors of the first Strata Flash Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'include/configs/eNET.h')
-rw-r--r--include/configs/eNET.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/configs/eNET.h b/include/configs/eNET.h
index dde4c8321..435671423 100644
--- a/include/configs/eNET.h
+++ b/include/configs/eNET.h
@@ -188,14 +188,13 @@
* Environment configuration
*/
#define CONFIG_ENV_IS_IN_FLASH 1
-#define CONFIG_ENV_OFFSET 0x20000 /* Offset of Environment Sector */
-#define CONFIG_ENV_SIZE 0x08000 /* Total Size of Environment Sector */
#define CONFIG_ENV_SECT_SIZE 0x20000 /* Total Size of Environment Sector */
-#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE_1 + \
- CONFIG_ENV_OFFSET)
-#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
+#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
+#define CONFIG_ENV_ADDR CONFIG_SYS_FLASH_BASE_1
+/* Redundant Copy */
+#define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE_1 + \
CONFIG_ENV_SECT_SIZE)
-#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
+#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SECT_SIZE
/*-----------------------------------------------------------------------