[coreboot] [v2] r4793 - in trunk/coreboot-v2/src: . arch/ppc mainboard/amd/dbm690t mainboard/amd/pistachio mainboard/arima/hdama mainboard/asus/m2v-mx_se mainboard/gigabyte/ga_2761gxdk mainboard/gigabyte/m57sli mainboard/ibm/e325 mainboard/ibm/e326 mainboard/iwill/dk8_htx mainboard/iwill/dk8s2 mainboard/iwill/dk8x mainboard/msi/ms7135 mainboard/msi/ms7260 mainboard/msi/ms9282 mainboard/nvidia/l1_2pvv mainboard/supermicro/h8dme mainboard/technexion/tim8690 mainboard/tyan/s2880 mainboard/tyan/s2881 mainboard/tyan/s2882 mainboard/tyan/s2885 mainboard/tyan/s2891 mainboard/tyan/s2892 mainboard/tyan/s2895 mainboard/tyan/s2912 mainboard/tyan/s2912_fam10

svn at coreboot.org svn at coreboot.org
Fri Oct 16 21:12:50 CEST 2009


Author: myles
Date: 2009-10-16 21:12:49 +0200 (Fri, 16 Oct 2009)
New Revision: 4793

Modified:
   trunk/coreboot-v2/src/Kconfig
   trunk/coreboot-v2/src/arch/ppc/Kconfig
   trunk/coreboot-v2/src/mainboard/amd/dbm690t/Kconfig
   trunk/coreboot-v2/src/mainboard/amd/pistachio/Kconfig
   trunk/coreboot-v2/src/mainboard/arima/hdama/Kconfig
   trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig
   trunk/coreboot-v2/src/mainboard/gigabyte/ga_2761gxdk/Kconfig
   trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig
   trunk/coreboot-v2/src/mainboard/ibm/e325/Kconfig
   trunk/coreboot-v2/src/mainboard/ibm/e326/Kconfig
   trunk/coreboot-v2/src/mainboard/iwill/dk8_htx/Kconfig
   trunk/coreboot-v2/src/mainboard/iwill/dk8s2/Kconfig
   trunk/coreboot-v2/src/mainboard/iwill/dk8x/Kconfig
   trunk/coreboot-v2/src/mainboard/msi/ms7135/Kconfig
   trunk/coreboot-v2/src/mainboard/msi/ms7260/Kconfig
   trunk/coreboot-v2/src/mainboard/msi/ms9282/Kconfig
   trunk/coreboot-v2/src/mainboard/nvidia/l1_2pvv/Kconfig
   trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig
   trunk/coreboot-v2/src/mainboard/technexion/tim8690/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2912/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2912_fam10/Kconfig
Log:
Fix AP_CODE_IN_CAR (only selected for two boards), STACK_SIZE, and HEAP_SIZE.

Signed-off-by: Myles Watson <mylesgw at gmail.com>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>


Modified: trunk/coreboot-v2/src/Kconfig
===================================================================
--- trunk/coreboot-v2/src/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -100,7 +100,7 @@
 
 config HEAP_SIZE
 	hex
-	default 0x2000
+	default 0x4000
 
 config COREBOOT_V2
 	bool
@@ -138,17 +138,8 @@
 	hex
 	default 0x200000
 
-config COMPRESSED_PAYLOAD_LZMA
-	bool
-	default y
-
-config COMPRESSED_PAYLOAD_NRV2B
-	bool
-	default n
-
 config ATI_RAGE_XL
 	bool
-	default n
 
 source src/console/Kconfig
 
@@ -218,7 +209,6 @@
 
 config VIDEO_MB
 	int
-	default 0
 
 config USE_WATCHDOG_ON_BOOT
 	bool
@@ -232,7 +222,6 @@
 
 config GFXUMA
 	bool
-	default n
 	help
 	  Enable Unified Memory Architecture for graphics.
 
@@ -357,6 +346,9 @@
 	  In order to reduce the size payloads take up in the ROM chip
 	  coreboot can compress them using the LZMA algorithm.
 
+config COMPRESSED_PAYLOAD_NRV2B
+	default n
+
 endmenu
 
 menu "VGA BIOS"

Modified: trunk/coreboot-v2/src/arch/ppc/Kconfig
===================================================================
--- trunk/coreboot-v2/src/arch/ppc/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/arch/ppc/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -2,7 +2,6 @@
 # It is usually set in mainboard/*/Kconfig.
 config ARCH_POWERPC
 	bool
-	default n
 
 # This is the name of the respective architecture subdirectory in arch/.
 config ARCH

Modified: trunk/coreboot-v2/src/mainboard/amd/dbm690t/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/amd/dbm690t/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/amd/dbm690t/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select HAVE_ACPI_TABLES

Modified: trunk/coreboot-v2/src/mainboard/amd/pistachio/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/amd/pistachio/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/amd/pistachio/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -13,7 +13,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select HAVE_ACPI_TABLES

Modified: trunk/coreboot-v2/src/mainboard/arima/hdama/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/arima/hdama/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/arima/hdama/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select BOARD_ROMSIZE_KB_512

Modified: trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -76,11 +76,6 @@
 	default 1
 	depends on BOARD_ASUS_M2V_MX_SE
 
-config STACK_SIZE
-	hex
-	default 0x2000
-	depends on BOARD_ASUS_M2V_MX_SE
-
 config HEAP_SIZE
 	hex
 	default 0x40000

Modified: trunk/coreboot-v2/src/mainboard/gigabyte/ga_2761gxdk/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/gigabyte/ga_2761gxdk/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/gigabyte/ga_2761gxdk/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -97,11 +97,6 @@
 	default 1
 	depends on BOARD_GIGABYTE_GA_2761GXDK
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_GIGABYTE_GA_2761GXDK
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/gigabyte/m57sli/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -99,11 +99,6 @@
 	default 1
 	depends on BOARD_GIGABYTE_M57SLI
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_GIGABYTE_M57SLI
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/ibm/e325/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/ibm/e325/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/ibm/e325/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select BOARD_ROMSIZE_KB_512

Modified: trunk/coreboot-v2/src/mainboard/ibm/e326/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/ibm/e326/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/ibm/e326/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select BOARD_ROMSIZE_KB_512

Modified: trunk/coreboot-v2/src/mainboard/iwill/dk8_htx/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/iwill/dk8_htx/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/iwill/dk8_htx/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select HAVE_ACPI_TABLES

Modified: trunk/coreboot-v2/src/mainboard/iwill/dk8s2/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/iwill/dk8s2/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/iwill/dk8s2/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select ATI_RAGE_XL

Modified: trunk/coreboot-v2/src/mainboard/iwill/dk8x/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/iwill/dk8x/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/iwill/dk8x/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -14,7 +14,6 @@
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
 	select IOAPIC
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select BOARD_ROMSIZE_KB_512

Modified: trunk/coreboot-v2/src/mainboard/msi/ms7135/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/msi/ms7135/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/msi/ms7135/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -11,8 +11,6 @@
 	select HAVE_MP_TABLE
 	select USE_DCACHE_RAM
 	select USE_PRINTK_IN_CAR
-	select SERIAL_CPU_INIT
-	select AP_CODE_IN_CAR
 	select BOARD_ROMSIZE_KB_512
 
 config MAINBOARD_DIR
@@ -75,11 +73,6 @@
 	default n
 	depends on BOARD_MSI_MS7135
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_MSI_MS7135
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/msi/ms7260/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/msi/ms7260/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/msi/ms7260/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -98,11 +98,6 @@
 	default 1
 	depends on BOARD_MSI_MS7260
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_MSI_MS7260
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/msi/ms9282/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/msi/ms9282/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/msi/ms9282/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -98,11 +98,6 @@
 	default 1
 	depends on BOARD_MSI_MS9282
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_MSI_MS9282
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/nvidia/l1_2pvv/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/nvidia/l1_2pvv/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/nvidia/l1_2pvv/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -98,11 +98,6 @@
 	default 1
 	depends on BOARD_NVIDIA_L1_2PVV
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_NVIDIA_L1_2PVV
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/supermicro/h8dme/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -12,6 +12,7 @@
 	select USE_PRINTK_IN_CAR
 	select USE_DCACHE_RAM
 	select HAVE_HARD_RESET
+	select AP_CODE_IN_CAR
 	select IOAPIC
 	select BOARD_ROMSIZE_KB_1024
 

Modified: trunk/coreboot-v2/src/mainboard/technexion/tim8690/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/technexion/tim8690/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/technexion/tim8690/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -15,7 +15,6 @@
 	select HAVE_HARD_RESET
 	select IOAPIC
 	select MEM_TRAIN_SEQ
-	select AP_CODE_IN_CAR
 	select SB_HT_CHAIN_UNITID_OFFSET_ONLY
 	select WAIT_BEFORE_CPUS_INIT
 	select HAVE_ACPI_TABLES

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -10,8 +10,6 @@
 	select SUPERIO_WINBOND_W83627HF
 	select HAVE_PIRQ_TABLE
 	select HAVE_MP_TABLE
-	select SERIAL_CPU_INIT
-	select AP_CODE_IN_CAR
 	select BOARD_ROMSIZE_KB_512
 
 config MAINBOARD_DIR
@@ -74,11 +72,6 @@
 	default n
 	depends on BOARD_TYAN_S2880
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2880
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -10,8 +10,6 @@
 	select SUPERIO_WINBOND_W83627HF
 	select HAVE_PIRQ_TABLE
 	select HAVE_MP_TABLE
-	select SERIAL_CPU_INIT
-	select AP_CODE_IN_CAR
 	select BOARD_ROMSIZE_KB_512
 
 config MAINBOARD_DIR
@@ -74,11 +72,6 @@
 	default n
 	depends on BOARD_TYAN_S2881
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2881
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -10,8 +10,6 @@
 	select SUPERIO_WINBOND_W83627HF
 	select HAVE_PIRQ_TABLE
 	select HAVE_MP_TABLE
-	select SERIAL_CPU_INIT
-	select AP_CODE_IN_CAR
 	select BOARD_ROMSIZE_KB_512
 
 config MAINBOARD_DIR
@@ -74,11 +72,6 @@
 	default n
 	depends on BOARD_TYAN_S2882
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2882
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -10,8 +10,6 @@
 	select SUPERIO_WINBOND_W83627HF
 	select HAVE_PIRQ_TABLE
 	select HAVE_MP_TABLE
-	select SERIAL_CPU_INIT
-	select AP_CODE_IN_CAR
 	select BOARD_ROMSIZE_KB_512
 
 config MAINBOARD_DIR
@@ -74,11 +72,6 @@
 	default n
 	depends on BOARD_TYAN_S2885
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2885
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -75,11 +75,6 @@
 	default n
 	depends on BOARD_TYAN_S2891
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2891
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -75,11 +75,6 @@
 	default n
 	depends on BOARD_TYAN_S2892
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2892
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -75,11 +75,6 @@
 	default n
 	depends on BOARD_TYAN_S2895
 
-config AP_CODE_IN_CAR
-	bool
-	default n
-	depends on BOARD_TYAN_S2895
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2912/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2912/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2912/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -98,11 +98,6 @@
 	default 1
 	depends on BOARD_TYAN_S2912
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_TYAN_S2912
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n

Modified: trunk/coreboot-v2/src/mainboard/tyan/s2912_fam10/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2912_fam10/Kconfig	2009-10-16 18:27:13 UTC (rev 4792)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2912_fam10/Kconfig	2009-10-16 19:12:49 UTC (rev 4793)
@@ -97,11 +97,6 @@
 	default 1
 	depends on BOARD_TYAN_S2912_FAM10
 
-config AP_CODE_IN_CAR
-	bool	
-	default n
-	depends on BOARD_TYAN_S2912_FAM10
-
 config HW_MEM_HOLE_SIZE_AUTO_INC
 	bool	
 	default n





More information about the coreboot mailing list