diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:33:01 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:05:02 +0200 |
commit | 5dc11a511960d490f7f01ffd746edfe6277f99b0 (patch) | |
tree | c12bd9d9f7898f5d56077986dda1ddf40613ca99 /include/configs/mx1fs2.h | |
parent | 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4 (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/mx1fs2.h')
-rw-r--r-- | include/configs/mx1fs2.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/include/configs/mx1fs2.h b/include/configs/mx1fs2.h index 9816be8dc4f..47ca0f1eee2 100644 --- a/include/configs/mx1fs2.h +++ b/include/configs/mx1fs2.h @@ -34,22 +34,21 @@ #undef _CONFIG_UART4 /* internal uart 4 */ #undef CONFIG_SILENT_CONSOLE /* use this to disable output */ + /* - * 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 \ - | CFG_CMD_JFFS2 \ - ) - -#include <cmd_confdefs.h> +#include <config_cmd_default.h> + +#define CONFIG_CMD_JFFS2 + +#undef CONFIG_CMD_LOADS +#undef CONFIG_CMD_CONSOLE +#undef CONFIG_CMD_AUTOSCRIPT +#undef CONFIG_CMD_NET +#undef CONFIG_CMD_PING +#undef CONFIG_CMD_DHCP + /* * Boot options. Setting delay to -1 stops autostart count down. |