diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-08 15:02:44 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-08 16:05:42 -0500 |
commit | fe7f782d5b8c64a0195c68c31a0a11d4f641355e (patch) | |
tree | d74891b5263420f5c12dd9b63b11d274342f68ba /include/configs/SMN42.h | |
parent | e9a0f8f15c11f337967aa0600ad6e8af33037f50 (diff) | |
download | u-boot-imx-fe7f782d5b8c64a0195c68c31a0a11d4f641355e.zip u-boot-imx-fe7f782d5b8c64a0195c68c31a0a11d4f641355e.tar.gz u-boot-imx-fe7f782d5b8c64a0195c68c31a0a11d4f641355e.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various S* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/SMN42.h')
-rw-r--r-- | include/configs/SMN42.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/include/configs/SMN42.h b/include/configs/SMN42.h index d588818..7b6d276 100644 --- a/include/configs/SMN42.h +++ b/include/configs/SMN42.h @@ -101,21 +101,20 @@ PUT32(IO0DIR, i2ctmp); } #endif /* CONFIG_SOFT_I2C */ + /* - * Supported commands + * Command line configuration. */ -#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \ - CFG_CMD_DHCP | \ - CFG_CMD_FAT | \ - CFG_CMD_MMC | \ - CFG_CMD_NET | \ - CFG_CMD_EEPROM | \ - CFG_CMD_PING) +#include <config_cmd_default.h> +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_FAT +#define CONFIG_CMD_MMC +#define CONFIG_CMD_NET +#define CONFIG_CMD_EEPROM +#define CONFIG_CMD_PING -#define CONFIG_DOS_PARTITION -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +#define CONFIG_DOS_PARTITION #define CONFIG_BOOTDELAY 5 |