diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-08 13:46:18 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-08 16:05:28 -0500 |
commit | 348f258f24253433e4a2302a0bbceb6740a67246 (patch) | |
tree | 45ba7b5fb90325cd20dd680d4da4711746e6937f /include/configs/ISPAN.h | |
parent | 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a (diff) |
include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/ISPAN.h')
-rw-r--r-- | include/configs/ISPAN.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/include/configs/ISPAN.h b/include/configs/ISPAN.h index 706bdb94f57..75dea18f571 100644 --- a/include/configs/ISPAN.h +++ b/include/configs/ISPAN.h @@ -106,17 +106,19 @@ #define CONFIG_8260_CLKIN 65536000 /* in Hz */ #define CONFIG_BAUDRATE 38400 -#define CONFIG_COMMANDS ( CONFIG_CMD_DFL \ - | CFG_CMD_ASKENV \ - | CFG_CMD_DHCP \ - | CFG_CMD_IMMAP \ - | CFG_CMD_MII \ - | CFG_CMD_PING \ - | CFG_CMD_REGINFO \ - ) - -/* This must be included AFTER the definition of CONFIG_COMMANDS */ -#include <cmd_confdefs.h> + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_IMMAP +#define CONFIG_CMD_MII +#define CONFIG_CMD_PING +#define CONFIG_CMD_REGINFO + #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ #define CONFIG_BOOTCOMMAND "bootm fe010000" /* autoboot command */ |