diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:33:01 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:05:02 +0200 |
commit | 5dc11a511960d490f7f01ffd746edfe6277f99b0 (patch) | |
tree | c12bd9d9f7898f5d56077986dda1ddf40613ca99 /include/configs/ml300.h | |
parent | 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4 (diff) | |
download | u-boot-imx-5dc11a511960d490f7f01ffd746edfe6277f99b0.zip u-boot-imx-5dc11a511960d490f7f01ffd746edfe6277f99b0.tar.gz u-boot-imx-5dc11a511960d490f7f01ffd746edfe6277f99b0.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various m* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/ml300.h')
-rw-r--r-- | include/configs/ml300.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/configs/ml300.h b/include/configs/ml300.h index 6762cd6..423c6eb 100644 --- a/include/configs/ml300.h +++ b/include/configs/ml300.h @@ -87,13 +87,19 @@ #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ #define CFG_LOADS_BAUD_CHANGE 1 /* allow baudrate change */ -#define REMOVE_COMMANDS (CFG_CMD_FLASH | CFG_CMD_LOADS | CFG_CMD_FAT | \ - CFG_CMD_IMLS ) -#define CONFIG_COMMANDS ((CONFIG_CMD_DFL | CFG_CMD_NET) \ - & ~REMOVE_COMMANDS) -/* 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_NET + +#undef CONFIG_CMD_FLASH +#undef CONFIG_CMD_LOADS +#undef CONFIG_CMD_FAT +#undef CONFIG_CMD_IMLS + /* #define CONFIG_SYS_CLK_FREQ XPAR_CORE_CLOCK_FREQ_HZ */ /* 300000000 */ |