diff options
Diffstat (limited to 'include/configs/BMW.h')
| -rw-r--r-- | include/configs/BMW.h | 37 | 
1 files changed, 22 insertions, 15 deletions
| diff --git a/include/configs/BMW.h b/include/configs/BMW.h index 3bd43d836..bb7856f67 100644 --- a/include/configs/BMW.h +++ b/include/configs/BMW.h @@ -64,28 +64,35 @@  #define CFG_DOC_SUPPORT_2000    1  #define CFG_DOC_SUPPORT_MILLENNIUM 1  #define CFG_DOC_SHORT_TIMEOUT    1 -#define CONFIG_COMMANDS		(CONFIG_CMD_DFL	| \ -				CFG_CMD_DATE	| \ -				CFG_CMD_DOC	| \ -				CFG_CMD_ELF	| \ -				0 ) -/* CFG_CMD_DOC required legacy NAND support */ + +/* + * 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_DATE +#define CONFIG_CMD_DOC +#define CONFIG_CMD_ELF + + +/* CONFIG_CMD_DOC required legacy NAND support */  #define CFG_NAND_LEGACY  #if 0 -#define CONFIG_COMMANDS	        (CONFIG_CMD_DFL	| CFG_CMD_DHCP | \ -				 CFG_CMD_PCI | CFG_CMD_DOC | CFG_CMD_DATE) -  #define CONFIG_PCI		1  #define CONFIG_PCI_PNP		1	/* PCI plug-and-play */  #endif -/* This must be included AFTER the definition of CONFIG_COMMANDS (if any) - */ -#include <cmd_confdefs.h> - -  /*   * Miscellaneous configurable options   */ @@ -293,7 +300,7 @@   * Cache Configuration   */  #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 |