diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:32:10 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:04:51 +0200 |
commit | 1bec3d3002d3bbbae6f2468a0f7376db1120d33e (patch) | |
tree | dccf12fd5a3a22a0d0c870cf2369d06692089748 /include/configs/ep7312.h | |
parent | ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4 (diff) | |
download | u-boot-imx-1bec3d3002d3bbbae6f2468a0f7376db1120d33e.zip u-boot-imx-1bec3d3002d3bbbae6f2468a0f7376db1120d33e.tar.gz u-boot-imx-1bec3d3002d3bbbae6f2468a0f7376db1120d33e.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various e* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/ep7312.h')
-rw-r--r-- | include/configs/ep7312.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/configs/ep7312.h b/include/configs/ep7312.h index bdda629..12be151 100644 --- a/include/configs/ep7312.h +++ b/include/configs/ep7312.h @@ -64,10 +64,14 @@ #define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT|CONFIG_BOOTP_BOOTFILESIZE) -#define CONFIG_COMMANDS (CONFIG_CMD_DFL | CFG_CMD_JFFS2) -/* 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_JFFS2 + #define CONFIG_BOOTDELAY 3 #define CONFIG_BOOTARGS "devfs=mount root=ramfs console=ttyS0,9600" @@ -78,7 +82,7 @@ /*#define CONFIG_BOOTFILE "impa7" */ #define CONFIG_BOOTCOMMAND "bootp;bootm" -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ #endif |