diff options
Diffstat (limited to 'include/configs/rmu.h')
| -rw-r--r-- | include/configs/rmu.h | 35 | 
1 files changed, 23 insertions, 12 deletions
| diff --git a/include/configs/rmu.h b/include/configs/rmu.h index b319cf497..2ca60b731 100644 --- a/include/configs/rmu.h +++ b/include/configs/rmu.h @@ -87,17 +87,28 @@  #undef	CONFIG_WATCHDOG			/* watchdog disabled		*/ -#define CONFIG_COMMANDS	      ( CONFIG_CMD_DFL	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DHCP	| \ -				CFG_CMD_I2C	| \ -				CFG_CMD_NFS	| \ -				CFG_CMD_SNTP	) -#define CONFIG_BOOTP_MASK	(CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_DATE +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_I2C +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP + + +/* + * BOOTP options + */ +#define CONFIG_BOOTP_SUBNETMASK +#define CONFIG_BOOTP_GATEWAY +#define CONFIG_BOOTP_HOSTNAME +#define CONFIG_BOOTP_BOOTPATH +#define CONFIG_BOOTP_BOOTFILESIZE -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  #define	CONFIG_AUTOBOOT_KEYED		/* Enable password protection */  #define	CONFIG_AUTOBOOT_PROMPT		"\nEnter password - autoboot in %d sec...\n" @@ -108,7 +119,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	*/ @@ -152,7 +163,7 @@   */  #define	CFG_SDRAM_BASE		0x00000000  #define CFG_FLASH_BASE		(0-flash_info[0].size)	/* Put flash at end	*/ -#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	*/ @@ -193,7 +204,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 |