diff options
Diffstat (limited to 'include/configs/sacsng.h')
| -rw-r--r-- | include/configs/sacsng.h | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/include/configs/sacsng.h b/include/configs/sacsng.h index bce8c9c8f..560bf0550 100644 --- a/include/configs/sacsng.h +++ b/include/configs/sacsng.h @@ -124,7 +124,7 @@   *		       Monitor Stack Buffer (0x80)   *     0x03F5 FFB0     Board Info Data   *     0x03F6 0000     Malloc Arena - *	     :		    CFG_ENV_SECT_SIZE, 16k + *	     :		    CONFIG_ENV_SECT_SIZE, 16k   *	     :		    CFG_MALLOC_LEN,    128k   *     0x03FC 0000     RAM Copy of Monitor Code   *	     :		    CFG_MONITOR_LEN,   256k @@ -316,7 +316,7 @@   * put in the same sector as U-Boot, and changing variables   * will erase U-Boot temporarily   */ -#define CFG_ENV_IN_OWN_SECT	1 +#define CONFIG_ENV_IN_OWN_SECT	1  /* Define this to contain any number of null terminated strings that   * will be part of the default enviroment compiled into the boot image. @@ -610,7 +610,7 @@  #define CFG_STACK_USAGE		0x10000 /* Reserve 64k for the stack usage */  #define CFG_MEM_END_USAGE	( CFG_MONITOR_LEN \  				+ CFG_MALLOC_LEN \ -				+ CFG_ENV_SECT_SIZE \ +				+ CONFIG_ENV_SECT_SIZE \  				+ CFG_STACK_USAGE )  #define CFG_MEMTEST_END		( CFG_SDRAM_SIZE * 1024 * 1024 \ @@ -709,19 +709,19 @@  #ifndef CFG_RAMBOOT  #  define CONFIG_ENV_IS_IN_FLASH	1 -#  ifdef CFG_ENV_IN_OWN_SECT -#    define CFG_ENV_ADDR	(CFG_MONITOR_BASE + CFG_MONITOR_LEN) -#    define CFG_ENV_SECT_SIZE	0x10000 +#  ifdef CONFIG_ENV_IN_OWN_SECT +#    define CONFIG_ENV_ADDR	(CFG_MONITOR_BASE + CFG_MONITOR_LEN) +#    define CONFIG_ENV_SECT_SIZE	0x10000  #  else -#    define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN - CFG_ENV_SECT_SIZE) -#    define CFG_ENV_SIZE	0x1000	/* Total Size of Environment Sector	*/ -#    define CFG_ENV_SECT_SIZE	0x10000 /* see README - env sect real size	*/ -#  endif /* CFG_ENV_IN_OWN_SECT */ +#    define CONFIG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN - CONFIG_ENV_SECT_SIZE) +#    define CONFIG_ENV_SIZE	0x1000	/* Total Size of Environment Sector	*/ +#    define CONFIG_ENV_SECT_SIZE	0x10000 /* see README - env sect real size	*/ +#  endif /* CONFIG_ENV_IN_OWN_SECT */  #else  #  define CONFIG_ENV_IS_IN_NVRAM	1 -#  define CFG_ENV_ADDR		(CFG_MONITOR_BASE - 0x1000) -#  define CFG_ENV_SIZE		0x200 +#  define CONFIG_ENV_ADDR		(CFG_MONITOR_BASE - 0x1000) +#  define CONFIG_ENV_SIZE		0x200  #endif /* CFG_RAMBOOT */  /*----------------------------------------------------------------------- |