From be0ede412edb631892312d3972c8439fa7053203 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Sat, 27 Oct 2012 14:17:04 +0200 Subject: [PATCH] Run option ROMs in coreboot by default only if the payload is not SeaBIOS Change-Id: I29fb86ff3a3187b720ce5ef246c4eeee696ab5cd Signed-off-by: Peter Stuge Reviewed-on: http://review.coreboot.org/1637 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/devices/Kconfig | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/devices/Kconfig b/src/devices/Kconfig index 013ab9a335..15db8e10b6 100644 --- a/src/devices/Kconfig +++ b/src/devices/Kconfig @@ -21,7 +21,8 @@ # TODO: Explain differences (if any) for onboard cards. config VGA_ROM_RUN bool "Run VGA Option ROMs" - default y + default n if PAYLOAD_SEABIOS + default y if !PAYLOAD_SEABIOS help Execute VGA Option ROMs in coreboot if found. This is required to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS @@ -48,7 +49,8 @@ config S3_VGA_ROM_RUN config PCI_ROM_RUN bool "Run non-VGA Option ROMs" - default y + default n if PAYLOAD_SEABIOS + default y if !PAYLOAD_SEABIOS help Execute non-VGA PCI Option ROMs in coreboot if found. @@ -63,7 +65,8 @@ config PCI_ROM_RUN config ON_DEVICE_ROM_RUN bool "Run Option ROMs on PCI devices" - default y + default n if PAYLOAD_SEABIOS + default y if !PAYLOAD_SEABIOS help Execute Option ROMs stored on PCI/PCIe/AGP devices in coreboot.