[coreboot] r239 - buildrom-devel/config/platforms

svn at coreboot.org svn at coreboot.org
Mon Sep 29 19:44:32 CEST 2008


Author: jcrouse
Date: 2008-09-29 19:44:31 +0200 (Mon, 29 Sep 2008)
New Revision: 239

Modified:
   buildrom-devel/config/platforms/Config.in
Log:

buildrom: Fix the headless dbm690t option

Apparently the && usage doesn't work for "depends on".  Oh, well -
make sure that the headless option only appears when DBM690T is
selected.  Also, don't enable DBM690T for CBv3.  Trivial.

Signed-off-by: Jordan Crouse <jordan.crouse at amd.com>
Acked-by: Jordan Crouse <jordan.crouse at amd.com>



Modified: buildrom-devel/config/platforms/Config.in
===================================================================
--- buildrom-devel/config/platforms/Config.in	2008-09-29 17:40:48 UTC (rev 238)
+++ buildrom-devel/config/platforms/Config.in	2008-09-29 17:44:31 UTC (rev 239)
@@ -167,6 +167,7 @@
 config PLATFORM_DBM690T
         bool "AMD dbM690T"
         depends on VENDOR_AMD
+	depends on COREBOOT_V2
         select PLATFORM
         select PLATFORM_SUPPORT_64BIT
 endchoice
@@ -216,7 +217,8 @@
 
 config AMD_R690_HEADLESS
 	bool "Build the R690 platform as headless (without VGA)"
-	depends on ADVANCED && PLATFORM_DBM690T
+	depends on ADVANCED
+	depends on PLATFORM_DBM690T
 	default n
 	help
 	  Say 'y' here to build without the VGA BIOS for the
@@ -227,6 +229,7 @@
 
 config AMD_R690_USE_VBIOS
 	bool
+	depends on PLATFORM_DBM690T
 	depends on !AMD_R690_HEADLESS
 	default y
 





More information about the coreboot mailing list