[coreboot] [v2] r4580 - in trunk/coreboot-v2/src: . mainboard/amd/serengeti_cheetah

svn at coreboot.org svn at coreboot.org
Tue Aug 25 19:38:24 CEST 2009


Author: oxygene
Date: 2009-08-25 19:38:24 +0200 (Tue, 25 Aug 2009)
New Revision: 4580

Modified:
   trunk/coreboot-v2/src/Kconfig
   trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig
Log:
Make PCI_ROM_RUN a boolean (like it is elsewhere) which
is the correct choice. Avoids type problems in kconfig

Signed-off-by: Patrick Georgi <patrick.georgi at coresystems.de>
Acked-by: Myles Watson <mylesgw at gmail.com>


Modified: trunk/coreboot-v2/src/Kconfig
===================================================================
--- trunk/coreboot-v2/src/Kconfig	2009-08-25 16:18:11 UTC (rev 4579)
+++ trunk/coreboot-v2/src/Kconfig	2009-08-25 17:38:24 UTC (rev 4580)
@@ -85,8 +85,8 @@
 	default 1
 
 config PCI_ROM_RUN
-	int
-	default 0
+	bool
+	default n
 
 config HT_CHAIN_UNITID_BASE
 	int

Modified: trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig	2009-08-25 16:18:11 UTC (rev 4579)
+++ trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig	2009-08-25 17:38:24 UTC (rev 4580)
@@ -189,7 +189,7 @@
 	depends on BOARD_AMD_SERENGETI_CHEETAH
 
 config PCI_ROM_RUN
-	int
-	default 1
+	bool
+	default y
 	depends on BOARD_AMD_SERENGETI_CHEETAH
 





More information about the coreboot mailing list