mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-09 20:18:54 -04:00
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>
This commit is contained in:
parent
ea0c37798c
commit
f3a8d6b29b
@ -188,14 +188,13 @@
|
|||||||
* Environment configuration
|
* Environment configuration
|
||||||
*/
|
*/
|
||||||
#define CONFIG_ENV_IS_IN_FLASH 1
|
#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_SECT_SIZE 0x20000 /* Total Size of Environment Sector */
|
||||||
#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE_1 + \
|
#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
|
||||||
CONFIG_ENV_OFFSET)
|
#define CONFIG_ENV_ADDR CONFIG_SYS_FLASH_BASE_1
|
||||||
#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
|
/* Redundant Copy */
|
||||||
|
#define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE_1 + \
|
||||||
CONFIG_ENV_SECT_SIZE)
|
CONFIG_ENV_SECT_SIZE)
|
||||||
#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
|
#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SECT_SIZE
|
||||||
|
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------
|
/*-----------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user