diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-07-04 22:33:38 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-07-05 11:05:16 +0200 |
commit | 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7 (patch) | |
tree | 2cb350eff8e3761995869460b2c4bbb32e24d3ce /include/configs/tb0229.h | |
parent | 46da1e96b7db14f4fcd2c92544e7c0862024bc76 (diff) | |
download | u-boot-6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7.tar.gz u-boot-6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7.tar.xz u-boot-6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7.zip |
include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/tb0229.h')
-rw-r--r-- | include/configs/tb0229.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/include/configs/tb0229.h b/include/configs/tb0229.h index dac1eb736d..df031753d6 100644 --- a/include/configs/tb0229.h +++ b/include/configs/tb0229.h @@ -87,13 +87,18 @@ /*#define CONFIG_BOOTCOMMAND "run flash_local" */ #define CONFIG_BOOTCOMMAND "run netboot" -#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \ - CFG_CMD_ASKENV | \ - CFG_CMD_DHCP | \ - CFG_CMD_PING | \ - CFG_CMD_PCI | \ - CFG_CMD_ELF ) -#include <cmd_confdefs.h> + +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_PING +#define CONFIG_CMD_PCI +#define CONFIG_CMD_ELF + /* * Miscellaneous configurable options |