diff options
| author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:31:15 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:04:23 +0200 | 
| commit | d794cfefead5fc177cf4f41164e80382e9c9484a (patch) | |
| tree | 75af803077c7ab7abb8bc09ee7ca41a686bc83d6 /include/configs/pf5200.h | |
| parent | ef0df52ab49eea4a30c15087fd27d54c1d946f2c (diff) | |
| download | olio-uboot-2014.01-d794cfefead5fc177cf4f41164e80382e9c9484a.tar.xz olio-uboot-2014.01-d794cfefead5fc177cf4f41164e80382e9c9484a.zip | |
include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/pf5200.h')
| -rw-r--r-- | include/configs/pf5200.h | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/include/configs/pf5200.h b/include/configs/pf5200.h index 7151a9ec2..3e72c652b 100644 --- a/include/configs/pf5200.h +++ b/include/configs/pf5200.h @@ -49,11 +49,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   */ @@ -112,20 +107,20 @@  #define ADD_USB_CMD		0  #endif +  /* - * 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_BSP	| \ -				 CFG_CMD_ELF	| \ -				 ADD_PCI_CMD	  ) +#include <config_cmd_default.h> + +#define CONFIG_CMD_BSP +#define CONFIG_PCI_CMD +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_ELF +#define CONFIG_CMD_FAT +#define CONFIG_CMD_I2C +#define CONFIG_CMD_IDE -/* 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 @@ -263,7 +258,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  */ @@ -281,6 +276,11 @@  #define CFG_VXWORKS_MAC_PTR	0x00000000	/* Pass Ethernet MAC to VxWorks */ +#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   */ |