diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-08 15:12:40 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-08 16:05:39 -0500 |
commit | e9a0f8f15c11f337967aa0600ad6e8af33037f50 (patch) | |
tree | ce956f729e6db3ad0994a955a18c0d3d31ecf33c /include/configs/RPXlite.h | |
parent | 12aa9fd23d724bd6ab88e1baa0db35133a27303f (diff) | |
download | u-boot-imx-e9a0f8f15c11f337967aa0600ad6e8af33037f50.zip u-boot-imx-e9a0f8f15c11f337967aa0600ad6e8af33037f50.tar.gz u-boot-imx-e9a0f8f15c11f337967aa0600ad6e8af33037f50.tar.bz2 |
include/configs: Use new CONFIG_CMD_* in various R* named board config files.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs/RPXlite.h')
-rw-r--r-- | include/configs/RPXlite.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/configs/RPXlite.h b/include/configs/RPXlite.h index 48ada0e..a478a06 100644 --- a/include/configs/RPXlite.h +++ b/include/configs/RPXlite.h @@ -64,15 +64,18 @@ #define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) -/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */ -#include <cmd_confdefs.h> +/* + * Command line configuration. + */ +#include <config_cmd_default.h> + /* * Miscellaneous configurable options */ #define CFG_LONGHELP /* undef to save memory */ #define CFG_PROMPT "=> " /* Monitor Command Prompt */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ #else #define CFG_CBSIZE 256 /* Console I/O Buffer Size */ @@ -154,7 +157,7 @@ * Cache Configuration */ #define CFG_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */ -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB) #define CFG_CACHELINE_SHIFT 4 /* log base 2 of the above value */ #endif |