]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
8610: Make some extra debug environment variables conditional.
authorYork Sun <yorksun@freescale.com>
Mon, 29 Oct 2007 18:57:53 +0000 (13:57 -0500)
committerJon Loeliger <jdl@freescale.com>
Wed, 7 Nov 2007 20:09:08 +0000 (14:09 -0600)
One may #define ENV_DEBUG to get them back again.

Signed-off-by: York Sun <yorksun@freescale.com>
include/configs/MPC8610HPCD.h

index 8b6b117f30b9ec60509c2e4cbddb545f61dcc4f5..9fa42f32daa71a7a7ac1340fa823fa2ce2d666f5 100644 (file)
  "dma3=mw ${d}284 ffffffff;mw ${d}290 50000;mw ${d}294 $sad3;mw ${d}298 50000;"\
        "mw ${d}2a0 $bc3;mw ${d}280 f03c404; mw ${d}29c $dad3; md ${d}280 9\0"
 
-
+#ifdef ENV_DEBUG
 #define        CONFIG_EXTRA_ENV_SETTINGS                               \
  "netdev=eth0\0"                                               \
  "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"                                \
  PCI_ENV \
  PCIE_ENV \
  DMA_ENV
+#else
+#define CONFIG_EXTRA_ENV_SETTINGS                               \
+ "netdev=eth0\0"                                                \
+ "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"                         \
+ "consoledev=ttyS0\0"                                           \
+ "ramdiskaddr=2000000\0"                                        \
+ "ramdiskfile=8610hpcd/ramdisk.uboot\0"                         \
+ "dtbaddr=c00000\0"                                             \
+ "dtbfile=8610hpcd/mpc8610_hpcd.dtb\0"                          \
+ "bdev=sda3\0"
+#endif
 
 #define CONFIG_NFSBOOTCOMMAND                                  \
  "setenv bootargs root=/dev/nfs rw "                           \