diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-05 19:52:35 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-07 20:30:36 -0500 |
commit | 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c (patch) | |
tree | 15c093e1452b7b7dc3854da115004f631b01f288 /include/configs/CU824.h | |
parent | de8b2a6e33298dcdb10bdda48db25e53c3089eba (diff) | |
download | u-boot-imx-49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c.zip u-boot-imx-49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c.tar.gz u-boot-imx-49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various C* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/CU824.h')
-rw-r--r-- | include/configs/CU824.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/configs/CU824.h b/include/configs/CU824.h index acc8484..1c20335 100644 --- a/include/configs/CU824.h +++ b/include/configs/CU824.h @@ -59,17 +59,17 @@ #define CONFIG_TIMESTAMP /* Print image info with timestamp */ -#define CONFIG_COMMANDS ( CONFIG_CMD_DFL | \ - CFG_CMD_BEDBUG | \ - 0 /* CFG_CMD_DATE */ | \ - CFG_CMD_DHCP | \ - CFG_CMD_PCI | \ - CFG_CMD_NFS | \ - CFG_CMD_SNTP ) - -/* This must be included AFTER the definition of CONFIG_COMMANDS (if any) + +/* + * Command line configuration. */ -#include <cmd_confdefs.h> +#include <config_cmd_default.h> + +#define CONFIG_CMD_BEDBUG +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_PCI +#define CONFIG_CMD_NFS +#define CONFIG_CMD_SNTP /* @@ -278,7 +278,7 @@ * Cache Configuration */ #define CFG_CACHELINE_SIZE 32 -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) # define CFG_CACHELINE_SHIFT 5 /* log base 2 of the above value */ #endif |