diff options
Diffstat (limited to 'include/configs/spc1920.h')
| -rw-r--r-- | include/configs/spc1920.h | 45 | 
1 files changed, 27 insertions, 18 deletions
| diff --git a/include/configs/spc1920.h b/include/configs/spc1920.h index 09bbebdce..b4ab9ad97 100644 --- a/include/configs/spc1920.h +++ b/include/configs/spc1920.h @@ -80,24 +80,33 @@  #undef	CONFIG_WATCHDOG			/* watchdog disabled		*/  #define CONFIG_BZIP2	 /* include support for bzip2 compressed images */ -#ifndef CONFIG_COMMANDS -#define CONFIG_COMMANDS	(CONFIG_CMD_DFL   \ -			 | CFG_CMD_ASKENV \ -			 | CFG_CMD_DATE \ -			 | CFG_CMD_ECHO   \ -			 | CFG_CMD_IMMAP  \ -			 | CFG_CMD_JFFS2 \ -			 | CFG_CMD_PING \ -			 | CFG_CMD_DHCP \ -			 | CFG_CMD_I2C \ -			 | CFG_CMD_MII) -			/* & ~( CFG_CMD_NET)) */ +/* + * BOOTP options + */ +#define CONFIG_BOOTP_BOOTFILESIZE +#define CONFIG_BOOTP_BOOTPATH +#define CONFIG_BOOTP_GATEWAY +#define CONFIG_BOOTP_HOSTNAME + + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_DATE +#define CONFIG_CMD_ECHO +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_I2C +#define CONFIG_CMD_MII -#endif /* !CONFIG_COMMANDS */ +#undef CONFIG_CMD_NET -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  /*   * Miscellaneous configurable options @@ -107,7 +116,7 @@  #define CFG_HUSH_PARSER  #define CFG_PROMPT_HUSH_PS2	"> " -#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	*/ @@ -194,7 +203,7 @@  #define CFG_CACHELINE_SIZE	16	/* For all MPC8xx CPUs			*/  #define CFG_CACHELINE_SHIFT	4	/* log base 2 of the above value	*/ -#ifdef CFG_CMD_DATE +#ifdef CONFIG_CMD_DATE  # define CONFIG_RTC_DS3231  # define CFG_I2C_RTC_ADDR      0x68  #endif @@ -202,7 +211,7 @@  /*-----------------------------------------------------------------------   * I2C configuration   */ -#if (CONFIG_COMMANDS & CFG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  /* enable I2C and select the hardware/software driver */  #undef CONFIG_HARD_I2C                 /* I2C with hardware support    */  #define CONFIG_SOFT_I2C                1       /* I2C bit-banged               */ |