diff options
Diffstat (limited to 'include/configs/csb272.h')
| -rw-r--r-- | include/configs/csb272.h | 46 | 
1 files changed, 24 insertions, 22 deletions
| diff --git a/include/configs/csb272.h b/include/configs/csb272.h index 27d64c1e4..c43b49737 100644 --- a/include/configs/csb272.h +++ b/include/configs/csb272.h @@ -73,30 +73,32 @@  #endif  /* - * BOOTP/DHCP protocol configuration - * + * BOOTP options   */ -#define CONFIG_BOOTP_MASK	( CONFIG_BOOTP_DEFAULT		| \ -				  CONFIG_BOOTP_DNS2		| \ -				  CONFIG_BOOTP_BOOTFILESIZE	) +#define CONFIG_BOOTP_SUBNETMASK +#define CONFIG_BOOTP_GATEWAY +#define CONFIG_BOOTP_HOSTNAME +#define CONFIG_BOOTP_BOOTPATH +#define CONFIG_BOOTP_BOOTFILESIZE +#define CONFIG_BOOTP_DNS2 + +  /* - * U-Boot Monitor Command Line Functions Configuration - * + * Command line configuration.   */ -#define CONFIG_COMMANDS		( CONFIG_CMD_DFL	| \ -				  CFG_CMD_ASKENV	| \ -				  CFG_CMD_BEDBUG	| \ -				  CFG_CMD_ELF		| \ -				  CFG_CMD_IRQ		| \ -				  CFG_CMD_I2C		| \ -				  CFG_CMD_PCI		| \ -				  CFG_CMD_DATE		| \ -				  CFG_CMD_MII		| \ -				  CFG_CMD_PING		| \ -				  CFG_CMD_DHCP		 ) +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_BEDBUG +#define CONFIG_CMD_ELF +#define CONFIG_CMD_IRQ +#define CONFIG_CMD_I2C +#define CONFIG_CMD_PCI +#define CONFIG_CMD_DATE +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h>  /*   * Serial download configuration @@ -109,7 +111,7 @@   * KGDB Configuration   *   */ -#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 @@ -125,7 +127,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 */ |