summaryrefslogtreecommitdiff
path: root/include/configs/modnet50.h
diff options
context:
space:
mode:
authorJon Loeliger <jdl@jdl.com>2007-07-04 22:33:01 -0500
committerWolfgang Denk <wd@denx.de>2007-07-05 11:05:02 +0200
commit5dc11a511960d490f7f01ffd746edfe6277f99b0 (patch)
treec12bd9d9f7898f5d56077986dda1ddf40613ca99 /include/configs/modnet50.h
parent9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4 (diff)
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/modnet50.h')
-rw-r--r--include/configs/modnet50.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/configs/modnet50.h b/include/configs/modnet50.h
index 20287674f..33ae43efe 100644
--- a/include/configs/modnet50.h
+++ b/include/configs/modnet50.h
@@ -65,10 +65,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_NETMASK 255.255.255.0
#define CONFIG_IPADDR 192.168.30.2
@@ -81,7 +85,7 @@
#define CONFIG_BOOTCOMMAND "bootm 0x10020000 0x100a0000"
#define CONFIG_BOOTARGS "console=ttyS0,38400 initrd=0x100a0040,530K root=/dev/ram keepinitrd"
-#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