diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:33:30 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:05:13 +0200 |
commit | 46da1e96b7db14f4fcd2c92544e7c0862024bc76 (patch) | |
tree | 796323dd9f5b1b9d193dafc038ae8c26ed53cad3 /include/configs/scb9328.h | |
parent | 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8 (diff) |
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/scb9328.h')
-rw-r--r-- | include/configs/scb9328.h | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/include/configs/scb9328.h b/include/configs/scb9328.h index a4249c47c62..489c35ff4b4 100644 --- a/include/configs/scb9328.h +++ b/include/configs/scb9328.h @@ -36,20 +36,18 @@ /* - * Definition of u-boot build in commands. Check out CONFIG_CMD_DFL if - * neccessary in include/cmd_confdefs.h file. (Un)comment for getting - * functionality or size of u-boot code. + * Command line configuration. */ -#define CONFIG_COMMANDS (CONFIG_CMD_DFL \ - & ~CFG_CMD_LOADS \ - & ~CFG_CMD_CONSOLE \ - & ~CFG_CMD_AUTOSCRIPT \ - | CFG_CMD_NET \ - | CFG_CMD_PING \ - | CFG_CMD_DHCP \ - ) - -#include <cmd_confdefs.h> +#include <config_cmd_default.h> + +#define CONFIG_CMD_NET +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP + +#undef CONFIG_CMD_LOADS +#undef CONFIG_CMD_CONSOLE +#undef CONFIG_CMD_AUTOSCRIPT + /* * Boot options. Setting delay to -1 stops autostart count down. |