diff options
| -rw-r--r-- | include/configs/R360MPI.h | 33 | ||||
| -rw-r--r-- | include/configs/RBC823.h | 62 | ||||
| -rw-r--r-- | include/configs/RPXClassic.h | 15 | ||||
| -rw-r--r-- | include/configs/RPXlite.h | 11 | ||||
| -rw-r--r-- | include/configs/RPXlite_DW.h | 42 | ||||
| -rw-r--r-- | include/configs/RPXsuper.h | 27 | ||||
| -rw-r--r-- | include/configs/RRvision.h | 25 | ||||
| -rw-r--r-- | include/configs/Rattler.h | 28 | 
8 files changed, 129 insertions, 114 deletions
| diff --git a/include/configs/R360MPI.h b/include/configs/R360MPI.h index 82228c012..c00ed3d4c 100644 --- a/include/configs/R360MPI.h +++ b/include/configs/R360MPI.h @@ -111,20 +111,23 @@  #define CFG_I2C_KEY_ADDR	0x9	/* Keyboard coprocessor */  #define CFG_I2C_TEM_ADDR	0x49	/* Temperature Sensors */ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_BMP	| \ -				CFG_CMD_BSP	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_JFFS2	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_PCMCIA	| \ -				CFG_CMD_SNTP	) -/* 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_BMP +#define CONFIG_CMD_BSP +#define CONFIG_CMD_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_NFS +#define CONFIG_CMD_PCMCIA +#define CONFIG_CMD_SNTP +  /*   * Miscellaneous configurable options @@ -134,7 +137,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	*/ @@ -228,7 +231,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/RBC823.h b/include/configs/RBC823.h index 242c837a3..d73a36761 100644 --- a/include/configs/RBC823.h +++ b/include/configs/RBC823.h @@ -94,42 +94,44 @@  #define CFG_EEPROM_WRITE_BITS		4  #define CFG_EEPROM_WRITE_DELAY_MS	10 -#define CONFIG_COMMANDS	      ( CFG_CMD_ALL	& \ -				~CFG_CMD_BSP	& \ -				~CFG_CMD_DATE	& \ -				~CFG_CMD_DISPLAY& \ -				~CFG_CMD_DTT	& \ -				~CFG_CMD_EXT2	& \ -				~CFG_CMD_FDC	& \ -				~CFG_CMD_FDOS	& \ -				~CFG_CMD_HWFLOW	& \ -				~CFG_CMD_IDE	& \ -				~CFG_CMD_IRQ	& \ -				~CFG_CMD_JFFS2	& \ -				~CFG_CMD_MII	& \ -				~CFG_CMD_MMC	& \ -				~CFG_CMD_NAND	& \ -				~CFG_CMD_PCI	& \ -				~CFG_CMD_PCMCIA	& \ -				~CFG_CMD_REISER	& \ -				~CFG_CMD_SCSI	& \ -				~CFG_CMD_SETGETDCR & \ -				~CFG_CMD_SNTP	& \ -				~CFG_CMD_SPI	& \ -				~CFG_CMD_UNIVERSE & \ -				~CFG_CMD_USB	& \ -				~CFG_CMD_VFD	& \ -				~CFG_CMD_XIMG	) +/* + * Command line configuration. + */ +#include <config_cmd_all.h> + +#undef CONFIG_CMD_BSP +#undef CONFIG_CMD_DATE +#undef CONFIG_CMD_DISPLAY +#undef CONFIG_CMD_DTT +#undef CONFIG_CMD_EXT2 +#undef CONFIG_CMD_FDC +#undef CONFIG_CMD_FDOS +#undef CONFIG_CMD_HWFLOW +#undef CONFIG_CMD_IDE +#undef CONFIG_CMD_IRQ +#undef CONFIG_CMD_JFFS2 +#undef CONFIG_CMD_MII +#undef CONFIG_CMD_MMC +#undef CONFIG_CMD_NAND +#undef CONFIG_CMD_PCI +#undef CONFIG_CMD_PCMCIA +#undef CONFIG_CMD_REISER +#undef CONFIG_CMD_SCSI +#undef CONFIG_CMD_SETGETDCR +#undef CONFIG_CMD_SNTP +#undef CONFIG_CMD_SPI +#undef CONFIG_CMD_UNIVERSE +#undef CONFIG_CMD_USB +#undef CONFIG_CMD_VFD +#undef CONFIG_CMD_XIMG -/* 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	*/ @@ -205,7 +207,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/RPXClassic.h b/include/configs/RPXClassic.h index 591382cd2..2091735aa 100644 --- a/include/configs/RPXClassic.h +++ b/include/configs/RPXClassic.h @@ -93,10 +93,13 @@  #define	CONFIG_CLOCKS_IN_MHZ	1	/* clocks passsed to Linux in MHz */ -#define CONFIG_COMMANDS	((CFG_CMD_ALL & ~CFG_CMD_NONSTD) | CFG_CMD_ELF) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ELF -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  /*   * Miscellaneous configurable options @@ -104,7 +107,7 @@  #define CFG_RESET_ADDRESS	0x80000000  #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	*/ @@ -182,7 +185,7 @@  #define	CFG_SDRAM_BASE		0x00000000  #define CFG_FLASH_BASE	0xFF000000 -#if defined(DEBUG) || defined (CONFIG_VIDEO_SED13806) || (CONFIG_COMMANDS & CFG_CMD_IDE) +#if defined(DEBUG) || defined (CONFIG_VIDEO_SED13806) || defined(CONFIG_CMD_IDE)  #define	CFG_MONITOR_LEN		(256 << 10)	/* Reserve 256 kB for Monitor	*/  #else  #define	CFG_MONITOR_LEN		(128 << 10)	/* Reserve 128 kB for Monitor	*/ @@ -222,7 +225,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/RPXlite.h b/include/configs/RPXlite.h index 48ada0ed9..a478a067d 100644 --- a/include/configs/RPXlite.h +++ b/include/configs/RPXlite.h @@ -64,15 +64,18 @@  #define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.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	*/ @@ -154,7 +157,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/RPXlite_DW.h b/include/configs/RPXlite_DW.h index 31025473f..9bf7770d3 100644 --- a/include/configs/RPXlite_DW.h +++ b/include/configs/RPXlite_DW.h @@ -120,24 +120,23 @@  #if 1	       /* Enable this stuff could make image enlarge about 25KB. Mask it if you  		  don't want the advanced function */ + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_PING +#define CONFIG_CMD_ELF +#define CONFIG_CMD_REGINFO +#define CONFIG_CMD_DHCP +  #ifdef	CONFIG_SPLASH_SCREEN -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_ASKENV	| \ -				CFG_CMD_BMP	| \ -				CFG_CMD_JFFS2	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_REGINFO | \ -				CFG_CMD_DHCP	) -#else -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_ASKENV	| \ -				CFG_CMD_JFFS2	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_REGINFO | \ -				CFG_CMD_DHCP	) -#endif	/* CONFIG_SPLASH_SCREEN */ +#define CONFIG_CMD_BMP +#endif +  /* test-only */  #define CFG_JFFS2_FIRST_BANK	0	    /* use for JFFS2 */ @@ -147,16 +146,13 @@  #endif	/* 1 */ -/* 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	"u-boot>"	/* 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	*/ @@ -200,7 +196,7 @@  #define CFG_SDRAM_BASE		0x00000000  #define CFG_FLASH_BASE		0xFF000000 -#if defined(DEBUG) || (CONFIG_COMMANDS & CFG_CMD_IDE) +#if defined(DEBUG) || defined(CONFIG_CMD_IDE)  #define CFG_MONITOR_LEN		(256 << 10)	/* Reserve 256 kB for Monitor	*/  #else  #define CFG_MONITOR_LEN		(128 << 10)	/* Reserve 128 kB for Monitor */ @@ -239,7 +235,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/RPXsuper.h b/include/configs/RPXsuper.h index 45907aa0e..c39aff19b 100644 --- a/include/configs/RPXsuper.h +++ b/include/configs/RPXsuper.h @@ -150,13 +150,19 @@  /* Monitor Command Prompt       */  #define CFG_PROMPT              "=> " -/* What U-Boot subsytems do you want enabled? */ -#define CONFIG_COMMANDS         ( CONFIG_CMD_DFL | \ -				  CFG_CMD_IMMAP  | \ -				  CFG_CMD_ASKENV | \ -				  CFG_CMD_I2C    | \ -				  CFG_CMD_REGINFO & \ -				 ~CFG_CMD_KGDB ) + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_I2C +#define CONFIG_CMD_REGINFO + +#undef CONFIG_CMD_KGDB +  /* Where do the internal registers live? */  #define CFG_IMMR               0xF0000000 @@ -176,13 +182,10 @@  #define CONFIG_BOARD_EARLY_INIT_F 1	/* Call board_early_init_f	*/ -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> -  /*   * Miscellaneous configurable options   */ -#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      */ @@ -310,7 +313,7 @@   */  #define CFG_CACHELINE_SIZE      32      /* For MPC8260 CPU */ -#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/RRvision.h b/include/configs/RRvision.h index 3885bcdb1..2c590af83 100644 --- a/include/configs/RRvision.h +++ b/include/configs/RRvision.h @@ -135,23 +135,26 @@  #endif	/* CONFIG_SOFT_I2C */ -#define CONFIG_COMMANDS	    ( ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_DATE	) & \ -			     ~( CFG_CMD_PCMCIA  | \ -			        CFG_CMD_IDE	) ) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_DATE + +#undef CONFIG_CMD_PCMCIA +#undef CONFIG_CMD_IDE -/* 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	*/ @@ -228,7 +231,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/Rattler.h b/include/configs/Rattler.h index dbc57e8b2..5c6431487 100644 --- a/include/configs/Rattler.h +++ b/include/configs/Rattler.h @@ -125,22 +125,24 @@  #define CONFIG_BAUDRATE		38400 -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL   \ -				| CFG_CMD_DHCP    \ -				| CFG_CMD_IMMAP   \ -				| CFG_CMD_JFFS2   \ -				| CFG_CMD_MII     \ -				| 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_DHCP +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +  #define CONFIG_BOOTDELAY	5	/* autoboot after 5 seconds */  #define CONFIG_BOOTCOMMAND	"bootm FE040000"	/* autoboot command */  #define CONFIG_BOOTARGS		"root=/dev/mtdblock2 rw mtdparts=phys:1M(ROM)ro,-(root)" -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#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 */ @@ -158,7 +160,7 @@  #define CFG_PROMPT_HUSH_PS2	"> "  #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  */ @@ -184,7 +186,7 @@  #define	CFG_DIRECT_FLASH_TFTP -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) +#if defined(CONFIG_CMD_JFFS2)  #define CFG_JFFS2_NUM_BANKS	CFG_MAX_FLASH_BANKS  #define CFG_JFFS2_SORT_FRAGMENTS @@ -256,7 +258,7 @@  #define CFG_BOOTMAPSZ		(8 << 20)	/* Initial Memory map for Linux */  #define CFG_CACHELINE_SIZE	32	/* For MPC8260 CPUs */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  #  define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value */  #endif |