|
@@ -196,20 +196,22 @@
|
|
|
|
|
|
#define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */
|
|
#define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */
|
|
|
|
|
|
-#define CONFIG_COMMANDS (CFG_CMD_BDI | \
|
|
|
|
- CFG_CMD_BOOTD | \
|
|
|
|
- CFG_CMD_CONSOLE | \
|
|
|
|
- CFG_CMD_DATE | \
|
|
|
|
- CFG_CMD_ENV | \
|
|
|
|
- CFG_CMD_FLASH | \
|
|
|
|
- CFG_CMD_IMI | \
|
|
|
|
- CFG_CMD_IMMAP | \
|
|
|
|
- CFG_CMD_MEMORY | \
|
|
|
|
- CFG_CMD_NET | \
|
|
|
|
- CFG_CMD_RUN)
|
|
|
|
-
|
|
|
|
-/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
|
|
|
|
-#include <cmd_confdefs.h>
|
|
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * Command line configuration.
|
|
|
|
+ */
|
|
|
|
+#define CONFIG_CMD_BDI
|
|
|
|
+#define CONFIG_CMD_BOOTD
|
|
|
|
+#define CONFIG_CMD_CONSOLE
|
|
|
|
+#define CONFIG_CMD_DATE
|
|
|
|
+#define CONFIG_CMD_ENV
|
|
|
|
+#define CONFIG_CMD_FLASH
|
|
|
|
+#define CONFIG_CMD_IMI
|
|
|
|
+#define CONFIG_CMD_IMMAP
|
|
|
|
+#define CONFIG_CMD_MEMORY
|
|
|
|
+#define CONFIG_CMD_NET
|
|
|
|
+#define CONFIG_CMD_RUN
|
|
|
|
+
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
/*-----------------------------------------------------------------------
|
|
* Environment variable storage is in FLASH, one sector before U-boot
|
|
* Environment variable storage is in FLASH, one sector before U-boot
|
|
@@ -228,7 +230,7 @@
|
|
#define CFG_HUSH_PARSER 1 /* use "hush" command parser */
|
|
#define CFG_HUSH_PARSER 1 /* use "hush" command parser */
|
|
#define CFG_PROMPT_HUSH_PS2 "> "
|
|
#define CFG_PROMPT_HUSH_PS2 "> "
|
|
|
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
|
|
|
+#if defined(CONFIG_CMD_KGDB)
|
|
#define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
#define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
|
|
#else
|
|
#else
|
|
#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
|
|
#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
|
|
@@ -303,7 +305,7 @@
|
|
* Cache Configuration
|
|
* Cache Configuration
|
|
*/
|
|
*/
|
|
#define CFG_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */
|
|
#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 */
|
|
#define CFG_CACHELINE_SHIFT 4 /* log base 2 of the above value */
|
|
#endif
|
|
#endif
|
|
|
|
|