diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:06 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:06 +0200 | 
| commit | 0e8d158664a913392cb01fb11a948d83f72e105e (patch) | |
| tree | 9e0a45c86828b4549b77c7867320e867401d9c86 /include/configs/at91sam9261ek.h | |
| parent | 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df (diff) | |
| download | olio-uboot-2014.01-0e8d158664a913392cb01fb11a948d83f72e105e.tar.xz olio-uboot-2014.01-0e8d158664a913392cb01fb11a948d83f72e105e.zip | |
rename CFG_ENV macros to CONFIG_ENV
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/configs/at91sam9261ek.h')
| -rw-r--r-- | include/configs/at91sam9261ek.h | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h index a4a08315d..80c3b034e 100644 --- a/include/configs/at91sam9261ek.h +++ b/include/configs/at91sam9261ek.h @@ -150,9 +150,9 @@  /* bootstrap + u-boot + env + linux in dataflash on CS0 */  #define CONFIG_ENV_IS_IN_DATAFLASH	1  #define CFG_MONITOR_BASE	(CFG_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400) -#define CFG_ENV_OFFSET		0x4200 -#define CFG_ENV_ADDR		(CFG_DATAFLASH_LOGIC_ADDR_CS0 + CFG_ENV_OFFSET) -#define CFG_ENV_SIZE		0x4200 +#define CONFIG_ENV_OFFSET		0x4200 +#define CONFIG_ENV_ADDR		(CFG_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET) +#define CONFIG_ENV_SIZE		0x4200  #define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\  				"root=/dev/mtdblock0 "			\ @@ -163,9 +163,9 @@  /* bootstrap + u-boot + env + linux in nandflash */  #define CONFIG_ENV_IS_IN_NAND	1 -#define CFG_ENV_OFFSET		0x60000 -#define CFG_ENV_OFFSET_REDUND	0x80000 -#define CFG_ENV_SIZE		0x20000		/* 1 sector = 128 kB */ +#define CONFIG_ENV_OFFSET		0x60000 +#define CONFIG_ENV_OFFSET_REDUND	0x80000 +#define CONFIG_ENV_SIZE		0x20000		/* 1 sector = 128 kB */  #define CONFIG_BOOTCOMMAND	"nand read 0x22000000 0xA0000 0x200000; bootm"  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\  				"root=/dev/mtdblock5 "			\ @@ -190,7 +190,7 @@  /*   * Size of malloc() pool   */ -#define CFG_MALLOC_LEN		ROUND(3 * CFG_ENV_SIZE + 128*1024, 0x1000) +#define CFG_MALLOC_LEN		ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)  #define CFG_GBL_DATA_SIZE	128	/* 128 bytes for initial data */  #define CONFIG_STACKSIZE	(32*1024)	/* regular stack */ |