diff options
Diffstat (limited to 'include/configs/CANBT.h')
| -rw-r--r-- | include/configs/CANBT.h | 29 | 
1 files changed, 21 insertions, 8 deletions
| diff --git a/include/configs/CANBT.h b/include/configs/CANBT.h index e0262a8f6..0e082b318 100644 --- a/include/configs/CANBT.h +++ b/include/configs/CANBT.h @@ -56,13 +56,26 @@  #define CONFIG_PHY_ADDR		0	/* PHY address			*/ -#define CONFIG_COMMANDS	     (( CONFIG_CMD_DFL	|	\ -				CFG_CMD_IRQ	|	\ -				CFG_CMD_EEPROM	    ) & \ -			       ~CFG_CMD_NET) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * 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_IRQ +#define CONFIG_CMD_EEPROM	    + +#undef CONFIG_CMD_NET +  #undef CONFIG_WATCHDOG			/* watchdog disabled		*/ @@ -73,7 +86,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	*/ @@ -173,7 +186,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 value	*/  #endif |