diff options
| author | Jon Loeliger <jdl@freescale.com> | 2007-07-05 19:13:52 -0500 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2007-07-07 20:28:28 -0500 | 
| commit | 498ff9a228485bd4b9f23d066bada268f9add1dd (patch) | |
| tree | 8c83bf9d31475b293462558a843e2d2b9384f855 | |
| parent | dcc0264878406d52b879d2e5a63d3d793371434e (diff) | |
| download | olio-uboot-2014.01-498ff9a228485bd4b9f23d066bada268f9add1dd.tar.xz olio-uboot-2014.01-498ff9a228485bd4b9f23d066bada268f9add1dd.zip | |
include/configs: Use new CONFIG_CMD_* in various A* named board config files.
Since ADS860.h includes "board/fads/fads.h" with ramifications
on the CONFIG_COMMAND treatment, it too has to be adjusted to
exclude already configured commands in this same commit.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
| -rw-r--r-- | board/fads/fads.h | 30 | ||||
| -rw-r--r-- | include/configs/A3000.h | 22 | ||||
| -rw-r--r-- | include/configs/ADCIOP.h | 20 | ||||
| -rw-r--r-- | include/configs/ADNPESC1.h | 77 | ||||
| -rw-r--r-- | include/configs/ADS860.h | 18 | ||||
| -rw-r--r-- | include/configs/AMX860.h | 40 | ||||
| -rw-r--r-- | include/configs/AP1000.h | 30 | ||||
| -rw-r--r-- | include/configs/APC405.h | 36 | ||||
| -rw-r--r-- | include/configs/AR405.h | 27 | ||||
| -rw-r--r-- | include/configs/ASH405.h | 31 | ||||
| -rw-r--r-- | include/configs/Adder.h | 18 | ||||
| -rw-r--r-- | include/configs/Alaska8220.h | 51 | ||||
| -rw-r--r-- | include/configs/AmigaOneG3SE.h | 41 | 
13 files changed, 224 insertions, 217 deletions
| diff --git a/board/fads/fads.h b/board/fads/fads.h index 29c226af9..ac37f96d7 100644 --- a/board/fads/fads.h +++ b/board/fads/fads.h @@ -95,21 +95,23 @@  #define CFG_DISCOVER_PHY  #endif -#ifndef CONFIG_COMMANDS -#define CONFIG_COMMANDS	(CONFIG_CMD_DFL   \ -			 | CFG_CMD_ASKENV \ -			 | CFG_CMD_DHCP   \ -			 | CFG_CMD_ECHO   \ -			 | CFG_CMD_IMMAP  \ -			 | CFG_CMD_JFFS2  \ -			 | CFG_CMD_MII    \ -			 | CFG_CMD_PCMCIA \ -			 | CFG_CMD_PING   \ -			) -#endif /* !CONFIG_COMMANDS */ +#if !defined(FADS_COMMANDS_ALREADY_DEFINED) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_ECHO +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_MII +#define CONFIG_CMD_PCMCIA +#define CONFIG_CMD_PING + +#endif -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  /*   * Miscellaneous configurable options diff --git a/include/configs/A3000.h b/include/configs/A3000.h index ca9592c23..eb0749076 100644 --- a/include/configs/A3000.h +++ b/include/configs/A3000.h @@ -52,23 +52,11 @@  #define CONFIG_BOOTDELAY	5 -#if 0 -#define CONFIG_COMMANDS		( CONFIG_CMD_DFL | \ -				  CFG_CMD_BEDBUG | \ -				  CFG_CMD_BSP    | \ -				  CFG_CMD_ELF    | \ -				  CFG_CMD_I2C 	 | \ -				  CFG_CMD_FLASH | \ -				  CFG_CMD_BEDBUG | \ -				  CFG_CMD_NET    | \ -				  CFG_CMD_PCI ) -#endif - -#define CONFIG_COMMANDS		( CONFIG_CMD_DFL ) - -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) 	*/ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h>  /* @@ -309,7 +297,7 @@   * Cache Configuration   */  #define CFG_CACHELINE_SIZE	32 -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #  define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/ADCIOP.h b/include/configs/ADCIOP.h index 821efe5d4..f79fad186 100644 --- a/include/configs/ADCIOP.h +++ b/include/configs/ADCIOP.h @@ -59,21 +59,23 @@  #define CONFIG_IPADDR		10.0.18.222  #define CONFIG_SERVERIP		10.0.18.190 -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_ASKENV	) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_ELF +#define CONFIG_CMD_ASKENV -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  /*   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory		*/  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt	*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CBSIZE	1024		/* Console I/O Buffer Size	*/  #else  #define CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -185,7 +187,7 @@   */  #define CFG_DCACHE_SIZE		2048	/* For PLX IOP480			*/  #define CFG_CACHELINE_SIZE	16	/* For AMCC 401/403 CPUs		*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	4	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/ADNPESC1.h b/include/configs/ADNPESC1.h index 2efca1056..0635506e6 100644 --- a/include/configs/ADNPESC1.h +++ b/include/configs/ADNPESC1.h @@ -401,15 +401,8 @@  #define	CONFIG_RTC_DS1306	1	/* Dallas 1306 real time clock	*/  #define CFG_SPI_RTC_DEVID	0	/*        as 1st SPI device	*/ -#define	__SPI_CMD_OFF		0	/* allow default commands:	*/ -					/*	CFG_CMD_SPI		*/ -					/*	CFG_CMD_DATE		*/ -  #else  #undef	CONFIG_NIOS_SPI				/* NO SPI support	*/ -#define	__SPI_CMD_OFF	(	CFG_CMD_SPI	\ -			|	CFG_CMD_DATE	\ -			)  #endif  /*------------------------------------------------------------------------ @@ -570,45 +563,49 @@  #define	CONFIG_POST			CFG_POST_RTC  #define	CFG_NIOS_POST_WORD_ADDR		(CFG_MONITOR_BASE + CFG_MONITOR_LEN) -/*------------------------------------------------------------------------ - * COMMANDS - *----------------------------------------------------------------------*/ -#define CONFIG_COMMANDS		(CFG_CMD_ALL & ~( \ -				 CFG_CMD_ASKENV | \ -				 CFG_CMD_BEDBUG | \ -				 CFG_CMD_BMP	| \ -				 CFG_CMD_CACHE	| \ -				 CFG_CMD_DOC	| \ -				 CFG_CMD_DTT	| \ -				 CFG_CMD_EEPROM | \ -				 CFG_CMD_ELF    | \ -				 CFG_CMD_FAT	| \ -				 CFG_CMD_FDC	| \ -				 CFG_CMD_FDOS	| \ -				 CFG_CMD_HWFLOW	| \ -				 CFG_CMD_IDE	| \ -				 CFG_CMD_I2C	| \ -				 CFG_CMD_JFFS2	| \ -				 CFG_CMD_KGDB	| \ -				 CFG_CMD_NAND	| \ -				 CFG_CMD_NFS	| \ -				 CFG_CMD_MMC	| \ -				 CFG_CMD_MII	| \ -				 CFG_CMD_PCI	| \ -				 CFG_CMD_PCMCIA | \ -				 CFG_CMD_SCSI	| \ -				 CFG_CMD_VFD	| \ -				 CFG_CMD_USB	| \ -				 CFG_CMD_XIMG	| \ -				 __SPI_CMD_OFF	) ) +/* + * Command line configuration. + */ +#include <config_cmd_all.h> + +#undef CONFIG_CMD_ASKENV +#undef CONFIG_CMD_BEDBUG +#undef CONFIG_CMD_BMP +#undef CONFIG_CMD_CACHE +#undef CONFIG_CMD_DOC +#undef CONFIG_CMD_DTT +#undef CONFIG_CMD_EEPROM +#undef CONFIG_CMD_ELF    +#undef CONFIG_CMD_FAT +#undef CONFIG_CMD_FDC +#undef CONFIG_CMD_FDOS +#undef CONFIG_CMD_HWFLOW +#undef CONFIG_CMD_IDE +#undef CONFIG_CMD_I2C +#undef CONFIG_CMD_JFFS2 +#undef CONFIG_CMD_KGDB +#undef CONFIG_CMD_NAND +#undef CONFIG_CMD_NFS +#undef CONFIG_CMD_MMC +#undef CONFIG_CMD_MII +#undef CONFIG_CMD_PCI +#undef CONFIG_CMD_PCMCIA +#undef CONFIG_CMD_SCSI +#undef CONFIG_CMD_VFD +#undef CONFIG_CMD_USB +#undef CONFIG_CMD_XIMG + +#if (CFG_NIOS_CPU_SPI_NUMS != 1) +#undef CONFIG_CMD_SPI +#undef CONFIG_CMD_DATE +#endif -#include <cmd_confdefs.h>  /*------------------------------------------------------------------------   * KGDB   *----------------------------------------------------------------------*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CONFIG_KGDB_BAUDRATE	9600  #endif diff --git a/include/configs/ADS860.h b/include/configs/ADS860.h index df2096564..2ee8c61ce 100644 --- a/include/configs/ADS860.h +++ b/include/configs/ADS860.h @@ -37,13 +37,19 @@  #define CONFIG_DRAM_50MHZ		1 -#define CONFIG_COMMANDS (CONFIG_CMD_DFL   \ -			 | CFG_CMD_DHCP   \ -			 | CFG_CMD_IMMAP  \ -			 | CFG_CMD_PCMCIA \ -			 | CFG_CMD_PING   \ -			) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_PCMCIA +#define CONFIG_CMD_PING + +/* This is picked up again in fads.h */ +#define FADS_COMMANDS_ALREADY_DEFINED  #include "fads.h" diff --git a/include/configs/AMX860.h b/include/configs/AMX860.h index 14d56bfd9..9e4303fb9 100644 --- a/include/configs/AMX860.h +++ b/include/configs/AMX860.h @@ -61,38 +61,40 @@  #undef CONFIG_BOOTARGS -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) -#undef	CONFIG_KGDB_ON_SMC		/* define if kgdb on SMC */ -#define	CONFIG_KGDB_ON_SCC		/* define if kgdb on SCC */ -#undef	CONFIG_KGDB_NONE		/* define if kgdb on something else */ -#define CONFIG_KGDB_INDEX	1	/* which serial channel for kgdb */ -#define CONFIG_KGDB_BAUDRATE	9600	/* speed to run kgdb serial port at */ -#endif - -  #undef	CONFIG_WATCHDOG			/* watchdog disabled		*/  #define	CONFIG_SCC1_ENET	1	/* use SCC1 ethernet */  #define	CONFIG_RTC_MPC8xx		/* use internal RTC of MPC8xx	*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_SNTP	) -#define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_DATE +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP + + +#if defined(CONFIG_CMD_KGDB) +#undef	CONFIG_KGDB_ON_SMC		/* define if kgdb on SMC */ +#define	CONFIG_KGDB_ON_SCC		/* define if kgdb on SCC */ +#undef	CONFIG_KGDB_NONE		/* define if kgdb on something else */ +#define CONFIG_KGDB_INDEX	1	/* which serial channel for kgdb */ +#define CONFIG_KGDB_BAUDRATE	9600	/* speed to run kgdb serial port at */ +#endif + +#define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE)  /*   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory		*/  #define	CFG_PROMPT		"=> "	/* Monitor Command Prompt	*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define	CFG_CBSIZE	1024		/* Console I/O Buffer Size	*/  #else  #define	CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -196,7 +198,7 @@   * Cache Configuration   */  #define CFG_CACHELINE_SIZE	16	/* For all MPC8xx CPUs			*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	4	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/AP1000.h b/include/configs/AP1000.h index ba4b1a2bc..015699dbd 100644 --- a/include/configs/AP1000.h +++ b/include/configs/AP1000.h @@ -66,18 +66,20 @@  #define CONFIG_LOADS_ECHO	1	/* echo on for serial download	*/  #define CFG_LOADS_BAUD_CHANGE	1	/* allow baudrate change	*/ -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_ASKENV	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_MVENV	| \ -				CFG_CMD_PCI	| \ -				CFG_CMD_PING	\ -			       ) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_ELF +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_MVENV +#define CONFIG_CMD_PCI +#define CONFIG_CMD_PING +  #undef CONFIG_WATCHDOG			/* watchdog disabled	    */ @@ -89,7 +91,7 @@   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	    */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CBSIZE	1024		/* Console I/O Buffer Size  */  #else  #define CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -188,7 +190,7 @@   */  #define CFG_DCACHE_SIZE		16384  #define CFG_CACHELINE_SIZE	32 -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value    */  #endif @@ -228,7 +230,7 @@  #define BOOTFLAG_COLD	0x01		/* Normal Power-On: Boot from FLASH */  #define BOOTFLAG_WARM	0x02		/* Software reboot		*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CONFIG_KGDB_BAUDRATE	230400	/* speed to run kgdb serial port */  #define CONFIG_KGDB_SER_INDEX	2	/* which serial port to use */  #endif diff --git a/include/configs/APC405.h b/include/configs/APC405.h index 3df99a008..5ac86bef8 100644 --- a/include/configs/APC405.h +++ b/include/configs/APC405.h @@ -67,27 +67,29 @@  #define CONFIG_PHY_CLK_FREQ	EMAC_STACR_CLK_66MHZ /* 66 MHz OPB clock*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_PCI	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_FAT	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_MII	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_EEPROM  ) + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_PCI +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_IDE +#define CONFIG_CMD_FAT +#define CONFIG_CMD_ELF +#define CONFIG_CMD_DATE +#define CONFIG_CMD_I2C +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_EEPROM   #define CONFIG_MAC_PARTITION  #define CONFIG_DOS_PARTITION  #define CONFIG_SUPPORT_VFAT -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> -  #undef  CONFIG_WATCHDOG			/* watchdog disabled		*/  #define CONFIG_RTC_MC146818             /* DS1685 is MC146818 compatible*/ @@ -106,7 +108,7 @@  #define	CFG_PROMPT_HUSH_PS2	"> "  #endif -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define	CFG_CBSIZE	1024		/* Console I/O Buffer Size	*/  #else  #define	CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -266,7 +268,7 @@  #define CFG_DCACHE_SIZE		16384	/* For AMCC 405 CPUs, older 405 ppc's   */  					/* have only 8kB, 16kB is save here     */  #define CFG_CACHELINE_SIZE	32	/* ...			*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/AR405.h b/include/configs/AR405.h index 1cd0280e2..785f94550 100644 --- a/include/configs/AR405.h +++ b/include/configs/AR405.h @@ -71,17 +71,20 @@  #define CONFIG_PHY_ADDR		0	/* PHY address			*/  #define CONFIG_LXT971_NO_SLEEP  1       /* disable sleep mode in LXT971 */ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_PCI	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_MII	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_BSP	) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_PCI +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_ELF +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_BSP +  #undef CONFIG_WATCHDOG			/* watchdog disabled		*/ @@ -92,7 +95,7 @@   */  #define CFG_LONGHELP			/* undef to save memory		*/  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt	*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CBSIZE	1024		/* Console I/O Buffer Size	*/  #else  #define CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -207,7 +210,7 @@  #define CFG_DCACHE_SIZE		16384	/* For AMCC 405 CPUs, older 405 ppc's	*/  					/* have only 8kB, 16kB is save here	*/  #define CFG_CACHELINE_SIZE	32	/* ...			*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/ASH405.h b/include/configs/ASH405.h index d03c05bf3..f0ec761eb 100644 --- a/include/configs/ASH405.h +++ b/include/configs/ASH405.h @@ -59,19 +59,22 @@  #define CONFIG_PHY_CLK_FREQ	EMAC_STACR_CLK_66MHZ /* 66 MHz OPB clock*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_NAND	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_MII	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_EEPROM	) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_ELF +#define CONFIG_CMD_NAND +#define CONFIG_CMD_DATE +#define CONFIG_CMD_I2C +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_EEPROM +  #undef	CONFIG_WATCHDOG			/* watchdog disabled		*/ @@ -91,7 +94,7 @@  #define CFG_PROMPT_HUSH_PS2	"> "  #endif -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CBSIZE	1024		/* Console I/O Buffer Size	*/  #else  #define CFG_CBSIZE	256		/* Console I/O Buffer Size	*/ @@ -270,7 +273,7 @@  #define CFG_DCACHE_SIZE		16384	/* For AMCC 405 CPUs, older 405 ppc's	*/  					/* have only 8kB, 16kB is save here	*/  #define CFG_CACHELINE_SIZE	32	/* ...			*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value	*/  #endif diff --git a/include/configs/Adder.h b/include/configs/Adder.h index 0e6b50f8b..9a429442f 100644 --- a/include/configs/Adder.h +++ b/include/configs/Adder.h @@ -52,15 +52,17 @@  #define CFG_8xx_CPUCLK_MAX		133000000  #endif /* CONFIG_MPC852T */ -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL  \ -				| CFG_CMD_DHCP   \ -				| CFG_CMD_IMMAP  \ -				| CFG_CMD_MII    \ -				| CFG_CMD_PING   \ -				) -/* This must be included AFTER the definition of CONFIG_COMMANDS */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP   +#define CONFIG_CMD_IMMAP  +#define CONFIG_CMD_MII    +#define CONFIG_CMD_PING   +  #define CONFIG_BOOTDELAY	5		/* Autoboot after 5 seconds	*/  #define CONFIG_BOOTCOMMAND	"bootm fe040000"	/* Autoboot command	*/ diff --git a/include/configs/Alaska8220.h b/include/configs/Alaska8220.h index c08b2c39f..e47872d27 100644 --- a/include/configs/Alaska8220.h +++ b/include/configs/Alaska8220.h @@ -39,12 +39,6 @@  #define BOOTFLAG_COLD		0x01	/* Normal Power-On: Boot from FLASH */  #define BOOTFLAG_WARM		0x02	/* Software reboot	*/ -#define CFG_CACHELINE_SIZE	32	/* For MPC8220 CPUs */ - -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) -#  define CFG_CACHELINE_SHIFT	5   /* log base 2 of the above value */ -#endif -  /*   * Serial console configuration   */ @@ -70,31 +64,31 @@  #define CONFIG_TIMESTAMP			/* Print image info with timestamp */ +  /* - * Supported commands + * Command line configuration.   */ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_BOOTD	| \ -				CFG_CMD_CACHE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_DIAG	| \ -				CFG_CMD_EEPROM	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_NET	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_PCI	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_REGINFO | \ -				CFG_CMD_SDRAM	| \ -				CFG_CMD_SNTP	) +#include <config_cmd_default.h> + +#define CONFIG_CMD_BOOTD +#define CONFIG_CMD_CACHE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_DIAG +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_ELF +#define CONFIG_CMD_I2C +#define CONFIG_CMD_NET +#define CONFIG_CMD_NFS +#define CONFIG_CMD_PCI +#define CONFIG_CMD_PING +#define CONFIG_CMD_REGINFO +#define CONFIG_CMD_SDRAM +#define CONFIG_CMD_SNTP +  #define CONFIG_NET_MULTI  #define CONFIG_MII -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> -  /*   * Autobooting   */ @@ -282,7 +276,7 @@   */  #define CFG_LONGHELP			    /* undef to save memory	*/  #define CFG_PROMPT		"=> "	    /* Monitor Command Prompt	*/ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #define CFG_CBSIZE		1024	    /* Console I/O Buffer Size	*/  #else  #define CFG_CBSIZE		256	    /* Console I/O Buffer Size	*/ @@ -298,6 +292,11 @@  #define CFG_HZ			1000	    /* decrementer freq: 1 ms ticks */ +#define CFG_CACHELINE_SIZE	32	/* For MPC8220 CPUs */ +#if defined(CONFIG_CMD_KGDB) +#  define CFG_CACHELINE_SHIFT	5   /* log base 2 of the above value */ +#endif +  /*   * Various low-level settings   */ diff --git a/include/configs/AmigaOneG3SE.h b/include/configs/AmigaOneG3SE.h index ea50f4150..8e902fef8 100644 --- a/include/configs/AmigaOneG3SE.h +++ b/include/configs/AmigaOneG3SE.h @@ -63,32 +63,31 @@  #define CONFIG_DOS_PARTITION  #define CONFIG_AMIGA_PARTITION -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL | \ -				 CFG_CMD_ASKENV | \ -				 CFG_CMD_BSP	| \ -				 CFG_CMD_DATE	| \ -				 CFG_CMD_DHCP	| \ -				 CFG_CMD_ELF	| \ -				 CFG_CMD_NET	| \ -				 CFG_CMD_IDE	| \ -				 CFG_CMD_FDC	| \ -				 CFG_CMD_CACHE	| \ -				 CFG_CMD_CONSOLE| \ -				 CFG_CMD_USB	| \ -				 CFG_CMD_BSP	| \ -				 CFG_CMD_PCI	) -/*				    CFG_CMD_MII	   | \ */ +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_BSP +#define CONFIG_CMD_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_ELF +#define CONFIG_CMD_NET +#define CONFIG_CMD_IDE +#define CONFIG_CMD_FDC +#define CONFIG_CMD_CACHE +#define CONFIG_CMD_CONSOLE| +#define CONFIG_CMD_USB +#define CONFIG_CMD_BSP +#define CONFIG_CMD_PCI +  #define CONFIG_PCI		1  /* #define CONFIG_PCI_SCAN_SHOW 1 */  #define CONFIG_PCI_PNP		1	/* PCI plug-and-play */ -/* This must be included AFTER the definition of CONFIG_COMMANDS (if any) - */ -#include <cmd_confdefs.h> - -  /*   * Miscellaneous configurable options   */ @@ -247,7 +246,7 @@   * Cache Configuration   */  #define CFG_CACHELINE_SIZE	32 -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #  define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value	*/  #endif |