diff options
| author | Jon Loeliger <jdl@freescale.com> | 2007-07-08 13:46:18 -0500 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2007-07-08 16:05:28 -0500 | 
| commit | 348f258f24253433e4a2302a0bbceb6740a67246 (patch) | |
| tree | 45ba7b5fb90325cd20dd680d4da4711746e6937f | |
| parent | 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a (diff) | |
| download | olio-uboot-2014.01-348f258f24253433e4a2302a0bbceb6740a67246.tar.xz olio-uboot-2014.01-348f258f24253433e4a2302a0bbceb6740a67246.zip | |
include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
| -rw-r--r-- | include/configs/IAD210.h | 19 | ||||
| -rw-r--r-- | include/configs/ICU862.h | 29 | ||||
| -rw-r--r-- | include/configs/IDS8247.h | 27 | ||||
| -rw-r--r-- | include/configs/IP860.h | 26 | ||||
| -rw-r--r-- | include/configs/IPHASE4539.h | 13 | ||||
| -rw-r--r-- | include/configs/ISPAN.h | 22 | ||||
| -rw-r--r-- | include/configs/IVML24.h | 19 | ||||
| -rw-r--r-- | include/configs/IVMS8.h | 18 | ||||
| -rw-r--r-- | include/configs/IceCube.h | 36 | ||||
| -rw-r--r-- | include/configs/JSE.h | 35 | ||||
| -rw-r--r-- | include/configs/KAREF.h | 46 | ||||
| -rw-r--r-- | include/configs/KUP4K.h | 27 | ||||
| -rw-r--r-- | include/configs/KUP4X.h | 31 | ||||
| -rw-r--r-- | include/configs/LANTEC.h | 88 | 
14 files changed, 227 insertions, 209 deletions
| diff --git a/include/configs/IAD210.h b/include/configs/IAD210.h index 35d84aedf..59ea919be 100644 --- a/include/configs/IAD210.h +++ b/include/configs/IAD210.h @@ -123,20 +123,23 @@  #define	CONFIG_RTC_MPC8xx		/* use internal RTC of MPC8xx	*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_ASKENV	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_DATE	) -/* 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_DATE +  /*   * 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	*/ @@ -217,7 +220,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/ICU862.h b/include/configs/ICU862.h index cd1793589..9750c8718 100644 --- a/include/configs/ICU862.h +++ b/include/configs/ICU862.h @@ -123,25 +123,28 @@  #define	CONFIG_RTC_MPC8xx		/* use internal RTC of MPC8xx	*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_ASKENV	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_EEPROM	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_NFS	| \ -				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_ASKENV +#define CONFIG_CMD_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP +  /*   * 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/IDS8247.h b/include/configs/IDS8247.h index 29eb874db..45a96ae78 100644 --- a/include/configs/IDS8247.h +++ b/include/configs/IDS8247.h @@ -161,22 +161,25 @@  #define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE) -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_NAND	| \ -				CFG_CMD_I2C	| \ -				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_DHCP +#define CONFIG_CMD_NFS +#define CONFIG_CMD_NAND +#define CONFIG_CMD_I2C +#define CONFIG_CMD_SNTP +  /*   * 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	*/ @@ -234,7 +237,7 @@   * NAND-FLASH stuff   *-----------------------------------------------------------------------   */ -#if (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #define CFG_NAND_LEGACY  #define CFG_NAND0_BASE 0xE1000000 @@ -355,7 +358,7 @@   * Cache Configuration   */  #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 @@ -474,7 +477,7 @@  #define CFG_OR0_PRELIM  (MEG_TO_AM(CFG_FLASH_SIZE)      |\  			 ORxG_SCY_6_CLK                 ) -#if (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  /* Bank 1 - NAND Flash  */  #define	CFG_NAND_BASE		CFG_NAND0_BASE diff --git a/include/configs/IP860.h b/include/configs/IP860.h index 0e20e5676..07c7955d1 100644 --- a/include/configs/IP860.h +++ b/include/configs/IP860.h @@ -88,28 +88,26 @@  #define	CONFIG_TIMESTAMP		/* Print image info with timestamp */ -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_BEDBUG	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_EEPROM	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_SNTP	) -#define CONFIG_BOOTP_MASK	CONFIG_BOOTP_DEFAULT - -/*----------------------------------------------------------------------*/ +/* + * 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_BEDBUG +#define CONFIG_CMD_I2C +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP -/*----------------------------------------------------------------------*/ +#define CONFIG_BOOTP_MASK	CONFIG_BOOTP_DEFAULT  /*   * 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	*/ @@ -202,7 +200,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/IPHASE4539.h b/include/configs/IPHASE4539.h index c1565fc03..383ffe2e2 100644 --- a/include/configs/IPHASE4539.h +++ b/include/configs/IPHASE4539.h @@ -124,17 +124,18 @@  #define I2C_DELAY	udelay(5)	/* 1/4 I2C clock duration */  #endif /* CONFIG_SOFT_I2C */ -#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>  #define CONFIG_BOOTDELAY	5	/* autoboot after 5 seconds */  #define CONFIG_BOOTCOMMAND	"bootm 100000"	/* autoboot command */  #define CONFIG_BOOTARGS		"root=/dev/ram rw" -#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 */ @@ -149,7 +150,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	*/ @@ -257,7 +258,7 @@   * Cache Configuration   */  #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/ISPAN.h b/include/configs/ISPAN.h index 706bdb94f..75dea18f5 100644 --- a/include/configs/ISPAN.h +++ b/include/configs/ISPAN.h @@ -106,17 +106,19 @@  #define CONFIG_8260_CLKIN	65536000	/* in Hz */  #define CONFIG_BAUDRATE		38400 -#define CONFIG_COMMANDS		( CONFIG_CMD_DFL  \ -				| CFG_CMD_ASKENV  \ -				| CFG_CMD_DHCP    \ -				| CFG_CMD_IMMAP   \ -				| CFG_CMD_MII     \ -				| CFG_CMD_PING    \ -				| CFG_CMD_REGINFO \ -				) -/* 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_ASKENV +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_REGINFO +  #define CONFIG_BOOTDELAY	5		/* autoboot after 5 seconds	*/  #define CONFIG_BOOTCOMMAND	"bootm fe010000"	/* autoboot command	*/ diff --git a/include/configs/IVML24.h b/include/configs/IVML24.h index a0cb1dd48..313f8d8b2 100644 --- a/include/configs/IVML24.h +++ b/include/configs/IVML24.h @@ -72,24 +72,27 @@  #define	CONFIG_STATUS_LED	1	/* Status LED enabled		*/ -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL | CFG_CMD_IDE) + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_IDE + +  #define CONFIG_MAC_PARTITION  #define CONFIG_DOS_PARTITION  #define CONFIG_BOOTP_MASK \      ((CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) & ~CONFIG_BOOTP_GATEWAY) -/* 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	*/ @@ -182,7 +185,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/IVMS8.h b/include/configs/IVMS8.h index 46b4d5354..763367954 100644 --- a/include/configs/IVMS8.h +++ b/include/configs/IVMS8.h @@ -72,24 +72,26 @@  #define	CONFIG_STATUS_LED	1	/* Status LED enabled		*/ -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL | CFG_CMD_IDE) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_IDE + +  #define CONFIG_MAC_PARTITION  #define CONFIG_DOS_PARTITION  #define CONFIG_BOOTP_MASK \      ((CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) & ~CONFIG_BOOTP_GATEWAY) -/* 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	*/ @@ -179,7 +181,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/IceCube.h b/include/configs/IceCube.h index 73be06950..c80c2d4ad 100644 --- a/include/configs/IceCube.h +++ b/include/configs/IceCube.h @@ -37,11 +37,6 @@  #define BOOTFLAG_COLD		0x01	/* Normal Power-On: Boot from FLASH  */  #define BOOTFLAG_WARM		0x02	/* Software reboot	     */ -#define CFG_CACHELINE_SIZE	32	/* For MPC5xxx CPUs */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) -#  define CFG_CACHELINE_SHIFT	5	/* log base 2 of the above value */ -#endif -  /*   * Serial console configuration   */ @@ -103,21 +98,21 @@  #define	CONFIG_TIMESTAMP		/* Print image info with timestamp */ +  /* - * Supported commands + * Command line configuration.   */ -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_EEPROM	| \ -				CFG_CMD_FAT	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_SNTP	| \ -				ADD_PCI_CMD	| \ -				ADD_USB_CMD	) +#include <config_cmd_default.h> + +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_FAT +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP +#define CONFIG_PCI_CMD +#define CONFIG_USB_CMD -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  #if (TEXT_BASE == 0xFF000000)		/* Boot low with 16 MB Flash */  #   define CFG_LOWBOOT	        1 @@ -312,7 +307,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  */ @@ -328,6 +323,11 @@  #define CFG_HZ			1000	/* decrementer freq: 1 ms ticks */ +#define CFG_CACHELINE_SIZE	32	/* For MPC5xxx 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/JSE.h b/include/configs/JSE.h index 7fa9ed2d4..c67c063e8 100644 --- a/include/configs/JSE.h +++ b/include/configs/JSE.h @@ -135,20 +135,23 @@  #define CONFIG_MII		1	/* MII PHY management		*/  #define CONFIG_PHY_ADDR		1	/* PHY address			*/ -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_EEPROM	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_FAT	| \ -				CFG_CMD_FLASH	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_MII	| \ -				CFG_CMD_NET	| \ -				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_DHCP +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_ELF +#define CONFIG_CMD_FAT +#define CONFIG_CMD_FLASH +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_MII +#define CONFIG_CMD_NET +#define CONFIG_CMD_PCI +#define CONFIG_CMD_PING +    /* watchdog disabled */  #undef CONFIG_WATCHDOG @@ -167,7 +170,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	*/ @@ -272,7 +275,7 @@   */  #define CFG_DCACHE_SIZE		16384	/* For AMCC 405GPr CPUs	*/  #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 @@ -298,7 +301,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/KAREF.h b/include/configs/KAREF.h index 48b94ee45..f0368049d 100644 --- a/include/configs/KAREF.h +++ b/include/configs/KAREF.h @@ -178,23 +178,25 @@  #define CFG_RX_ETH_BUFFER     32	     /* #eth rx buff & descrs	*/ -/*----------------------------------------------------------------------- - * Console/Commands/Parser - *----------------------------------------------------------------------*/ -#define CONFIG_COMMANDS	       (CONFIG_CMD_DFL	| \ -				CFG_CMD_PCI	| \ -				CFG_CMD_IRQ	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_BEDBUG	| \ -				CFG_CMD_PING	| \ -				CFG_CMD_DIAG	| \ -				CFG_CMD_MII	| \ -				CFG_CMD_NET	| \ -				CFG_CMD_ELF	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_FAT) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_PCI +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_I2C +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_DATE +#define CONFIG_CMD_BEDBUG +#define CONFIG_CMD_PING +#define CONFIG_CMD_DIAG +#define CONFIG_CMD_MII +#define CONFIG_CMD_NET +#define CONFIG_CMD_ELF +#define CONFIG_CMD_IDE +#define CONFIG_CMD_FAT +  /* Include NetConsole support */  #define CONFIG_NETCONSOLE @@ -203,10 +205,6 @@  #define CONFIG_AUTO_COMPLETE 1  #define CFG_ALT_MEMTEST	     1	     /* use real memory test	 */ - -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> -  #define CFG_LONGHELP			     /* undef to save memory	*/  #define CFG_PROMPT	      "KaRefDes=> "  /* Monitor Command Prompt	*/ @@ -217,7 +215,7 @@  /*-----------------------------------------------------------------------   * Console Buffer   *----------------------------------------------------------------------*/ -#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 */ @@ -279,7 +277,7 @@   */  #define CFG_DCACHE_SIZE	      8192	     /* For AMCC 405 CPUs	*/  #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 */  #endif @@ -291,7 +289,7 @@  #define BOOTFLAG_COLD	      0x01	     /* Normal PowerOn: 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	     /* kgdb serial port baud	*/  #define CONFIG_KGDB_SER_INDEX 2		     /* kgdb serial port	*/  #endif diff --git a/include/configs/KUP4K.h b/include/configs/KUP4K.h index 9b950fc5d..242220176 100644 --- a/include/configs/KUP4K.h +++ b/include/configs/KUP4K.h @@ -164,24 +164,27 @@  #endif  #endif -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_POST_DIAG	| \ -				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_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_NFS +#define CONFIG_CMD_POST_DIAG +#define CONFIG_CMD_SNTP +  /*   * 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	*/ @@ -269,7 +272,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/KUP4X.h b/include/configs/KUP4X.h index cd38b0f2c..184338b97 100644 --- a/include/configs/KUP4X.h +++ b/include/configs/KUP4X.h @@ -175,26 +175,29 @@  #endif  #endif -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_FAT	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_IDE	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_POST_DIAG	| \ -				CFG_CMD_SNTP	| \ -				CFG_CMD_USB	) -/* 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_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_FAT +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE +#define CONFIG_CMD_NFS +#define CONFIG_CMD_POST_DIAG +#define CONFIG_CMD_SNTP +#define CONFIG_CMD_USB +  /*   * 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	*/ @@ -281,7 +284,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/LANTEC.h b/include/configs/LANTEC.h index e44f1cc62..089fb9df8 100644 --- a/include/configs/LANTEC.h +++ b/include/configs/LANTEC.h @@ -76,62 +76,58 @@  #define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) -#define CONFIG_CMD_MINIMAL	0 -#define CONFIG_CMD_TINY		(CFG_CMD_FLASH  | \ -				 CFG_CMD_MEMORY | \ -				 CFG_CMD_LOADS  | \ -				 CFG_CMD_LOADB) -#define CONFIG_CMD_NORMAL	(CONFIG_CMD_DFL & ~CFG_CMD_BOOTD & ~CFG_CMD_REISER) -#define CONFIG_CMD_GDB		(CONFIG_CMD_NORMAL | CFG_CMD_KGDB) -#define CONFIG_CMD_FULL		(CFG_CMD_ALL & ~CFG_CMD_BEDBUG	\ -					     & ~CFG_CMD_BMP	\ -					     & ~CFG_CMD_BSP	\ -					     & ~CFG_CMD_DISPLAY	\ -					     & ~CFG_CMD_DOC	\ -					     & ~CFG_CMD_DTT	\ -					     & ~CFG_CMD_EEPROM	\ -					     & ~CFG_CMD_ELF	\ -					     & ~CFG_CMD_EXT2	\ -					     & ~CFG_CMD_FDC	\ -					     & ~CFG_CMD_FDOS	\ -					     & ~CFG_CMD_HWFLOW	\ -					     & ~CFG_CMD_I2C	\ -					     & ~CFG_CMD_IDE	\ -					     & ~CFG_CMD_IRQ	\ -					     & ~CFG_CMD_JFFS2	\ -					     & ~CFG_CMD_KGDB	\ -					     & ~CFG_CMD_MII	\ -					     & ~CFG_CMD_MMC	\ -					     & ~CFG_CMD_NAND	\ -					     & ~CFG_CMD_PCI	\ -					     & ~CFG_CMD_PCMCIA	\ -					     & ~CFG_CMD_REISER	\ -					     & ~CFG_CMD_SCSI	\ -					     & ~CFG_CMD_SPI	\ -					     & ~CFG_CMD_UNIVERSE\ -					     & ~CFG_CMD_USB	\ -					     & ~CFG_CMD_VFD	\ -					     & ~CFG_CMD_XIMG	) -#if CONFIG_LANTEC >= 2 -#define	CONFIG_RTC_MPC8xx		/* use internal RTC of MPC8xx	*/ +/* + * Command line configuration. + */ +#include <config_cmd_all.h> + +#undef CONFIG_CMD_BEDBUG +#undef CONFIG_CMD_BMP +#undef CONFIG_CMD_BSP +#undef CONFIG_CMD_DISPLAY +#undef CONFIG_CMD_DOC +#undef CONFIG_CMD_DTT +#undef CONFIG_CMD_EEPROM +#undef CONFIG_CMD_ELF +#undef CONFIG_CMD_EXT2 +#undef CONFIG_CMD_FDC +#undef CONFIG_CMD_FDOS +#undef CONFIG_CMD_HWFLOW +#undef CONFIG_CMD_I2C +#undef CONFIG_CMD_IDE +#undef CONFIG_CMD_IRQ +#undef CONFIG_CMD_JFFS2 +#undef CONFIG_CMD_KGDB +#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_SPI +#undef CONFIG_CMD_UNIVERSE +#undef CONFIG_CMD_USB +#undef CONFIG_CMD_VFD +#undef CONFIG_CMD_XIMG + +#if !(CONFIG_LANTEC >= 2) +    #undef CONFIG_CMD_DATE +    #undef CONFIG_CMD_NET  #endif +  #if CONFIG_LANTEC >= 2 -# define CONFIG_COMMANDS	CONFIG_CMD_FULL -#else -# define CONFIG_COMMANDS	(CONFIG_CMD_FULL & ~CFG_CMD_DATE & ~CFG_CMD_NET) +#define	CONFIG_RTC_MPC8xx		/* use internal RTC of MPC8xx	*/  #endif -/* 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	*/ @@ -203,7 +199,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 |