diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:32:51 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:04:58 +0200 |
commit | bc234c129fa04fb9fa33530930e5cbc6084cd47a (patch) | |
tree | ab433773e028bc3d3afea63ff7c89b1dc16545a3 /include/configs/kb9202.h | |
parent | 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31 (diff) | |
download | u-boot-imx-bc234c129fa04fb9fa33530930e5cbc6084cd47a.zip u-boot-imx-bc234c129fa04fb9fa33530930e5cbc6084cd47a.tar.gz u-boot-imx-bc234c129fa04fb9fa33530930e5cbc6084cd47a.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/kb9202.h')
-rw-r--r-- | include/configs/kb9202.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/include/configs/kb9202.h b/include/configs/kb9202.h index 6590f6f..4741ead 100644 --- a/include/configs/kb9202.h +++ b/include/configs/kb9202.h @@ -78,17 +78,20 @@ #define CONFIG_BOOTDELAY 3 #define CONFIG_ENV_OVERWRITE 1 -#define CONFIG_COMMANDS \ - ((CONFIG_CMD_DFL | \ - CFG_CMD_I2C | \ - CFG_CMD_PING | \ - CFG_CMD_DHCP ) & \ - ~(CFG_CMD_BDI | \ - CFG_CMD_FPGA | \ - CFG_CMD_MISC)) - -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_I2C +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP + +#undef CONFIG_CMD_BDI +#undef CONFIG_CMD_FPGA +#undef CONFIG_CMD_MISC + #define CONFIG_NR_DRAM_BANKS 1 #define PHYS_SDRAM 0x20000000 |