diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:33:46 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:05:18 +0200 |
commit | dca3b3d6d6396b67e5e84af53452164923c73443 (patch) | |
tree | 5042b752f194f2e2ce3668c41d92837c656be811 /include/configs/xm250.h | |
parent | 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7 (diff) | |
download | u-boot-imx-dca3b3d6d6396b67e5e84af53452164923c73443.zip u-boot-imx-dca3b3d6d6396b67e5e84af53452164923c73443.tar.gz u-boot-imx-dca3b3d6d6396b67e5e84af53452164923c73443.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/xm250.h')
-rw-r--r-- | include/configs/xm250.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/include/configs/xm250.h b/include/configs/xm250.h index 825bfd1..225d46a 100644 --- a/include/configs/xm250.h +++ b/include/configs/xm250.h @@ -81,14 +81,17 @@ #define CONFIG_BAUDRATE 115200 -#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \ - CFG_CMD_ELF | \ - CFG_CMD_EEPROM | \ - CFG_CMD_DATE | \ - CFG_CMD_I2C ) - -/* 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_ELF +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_DATE +#define CONFIG_CMD_I2C + #define CONFIG_BOOTDELAY 3 |