Author: uwe Date: 2009-10-11 19:40:44 +0200 (Sun, 11 Oct 2009) New Revision: 4759
Modified: trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah_fam10/Kconfig trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig trunk/coreboot-v2/src/mainboard/intel/xe7501devkit/Kconfig trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/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/via/epia-m/Kconfig trunk/coreboot-v2/src/mainboard/via/epia-m700/Kconfig trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig trunk/coreboot-v2/src/mainboard/via/vt8454c/Kconfig Log: HAVE_ACPI_TABLES cleanups for kconfig: - Add "select HAVE_ACPI_TABLES" for boards which need it. - Drop sections which set HAVE_ACPI_TABLES to 'n', that's the default. - Convert sections which set HAVE_ACPI_TABLES to 'y' to the shorter "select HAVE_ACPI_TABLES". Signed-off-by: Uwe Hermann <[email protected]> Acked-by: Ronald G. Minnich <[email protected]> Modified: trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -17,6 +17,7 @@ select AP_CODE_IN_CAR select SB_HT_CHAIN_UNITID_OFFSET_ONLY select WAIT_BEFORE_CPUS_INIT + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah_fam10/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah_fam10/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/amd/serengeti_cheetah_fam10/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -17,6 +17,7 @@ select SB_HT_CHAIN_UNITID_OFFSET_ONLY select WAIT_BEFORE_CPUS_INIT select AMDMCT + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/intel/eagleheights/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -12,6 +12,7 @@ select UDELAY_TSC select TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 select AP_IN_SIPI_WAIT + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/intel/xe7501devkit/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/intel/xe7501devkit/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/intel/xe7501devkit/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -9,6 +9,7 @@ select HAVE_PIRQ_TABLE select UDELAY_TSC select HAVE_OPTION_TABLE + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/kontron/986lcd-m/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -10,6 +10,7 @@ select MMCONF_SUPPORT select USE_PRINTK_IN_CAR select AP_IN_SIPI_WAIT + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2880/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -112,11 +112,6 @@ default n depends on BOARD_TYAN_S2880 -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default n - depends on BOARD_TYAN_S2880 - config IRQ_SLOT_COUNT int default 9 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -112,11 +112,6 @@ default n depends on BOARD_TYAN_S2881 -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default n - depends on BOARD_TYAN_S2881 - config IRQ_SLOT_COUNT int default 9 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2882/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -112,11 +112,6 @@ default n depends on BOARD_TYAN_S2882 -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default n - depends on BOARD_TYAN_S2882 - config IRQ_SLOT_COUNT int default 9 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2885/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -112,11 +112,6 @@ default n depends on BOARD_TYAN_S2885 -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default n - depends on BOARD_TYAN_S2885 - config IRQ_SLOT_COUNT int default 9 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -11,6 +11,7 @@ select PIRQ_TABLE select SERIAL_CPU_INIT select AP_CODE_IN_CAR + select HAVE_ACPI_TABLES config MAINBOARD_DIR string @@ -112,12 +113,6 @@ default n depends on BOARD_TYAN_S2891 -# TODO: Should be "select". And not user-visible. -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default y - depends on BOARD_TYAN_S2891 - config IRQ_SLOT_COUNT int default 11 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2892/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -11,6 +11,7 @@ select PIRQ_TABLE select SERIAL_CPU_INIT select AP_CODE_IN_CAR + select HAVE_ACPI_TABLES config MAINBOARD_DIR string @@ -112,12 +113,6 @@ default n depends on BOARD_TYAN_S2892 -# TODO -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default y - depends on BOARD_TYAN_S2892 - config IRQ_SLOT_COUNT int default 11 Modified: trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/tyan/s2895/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -11,6 +11,7 @@ select PIRQ_TABLE select SERIAL_CPU_INIT select AP_CODE_IN_CAR + select HAVE_ACPI_TABLES config MAINBOARD_DIR string @@ -112,12 +113,6 @@ default n depends on BOARD_TYAN_S2895 -# TODO -config HAVE_ACPI_TABLES - bool "Generate ACPI tables" - default y - depends on BOARD_TYAN_S2895 - config IRQ_SLOT_COUNT int default 11 Modified: trunk/coreboot-v2/src/mainboard/via/epia-m/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/epia-m/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/via/epia-m/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -7,6 +7,7 @@ select SOUTHBRIDGE_RICOH_RL5C476 select SUPERIO_VIA_VT1211 select HAVE_PIRQ_TABLE + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/via/epia-m700/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/epia-m700/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/via/epia-m700/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -5,6 +5,7 @@ select NORTHBRIDGE_VIA_VX800 select SUPERIO_WINBOND_W83697HF select HAVE_PIRQ_TABLE + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/via/epia-n/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -7,6 +7,7 @@ select SUPERIO_WINBOND_W83697HF select HAVE_PIRQ_TABLE select EPIA_VT8237R_INIT + select HAVE_ACPI_TABLES config MAINBOARD_DIR string Modified: trunk/coreboot-v2/src/mainboard/via/vt8454c/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/via/vt8454c/Kconfig 2009-10-11 13:35:24 UTC (rev 4758) +++ trunk/coreboot-v2/src/mainboard/via/vt8454c/Kconfig 2009-10-11 17:40:44 UTC (rev 4759) @@ -8,6 +8,7 @@ select HAVE_PIRQ_TABLE # select MMCONF_SUPPORT select USE_PRINTK_IN_CAR + select HAVE_ACPI_TABLES config MAINBOARD_DIR string -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

