Peter Stuge (peter@stuge.se) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1637
-gerrit
commit 9ef50b72a0ca9140b2c0d02fd2e903fb79ebb981 Author: Peter Stuge peter@stuge.se Date: Sat Oct 27 14:17:04 2012 +0200
Run option ROMs in coreboot by default only if the payload is not SeaBIOS
Change-Id: I29fb86ff3a3187b720ce5ef246c4eeee696ab5cd Signed-off-by: Peter Stuge peter@stuge.se --- src/devices/Kconfig | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/devices/Kconfig b/src/devices/Kconfig index 013ab9a..15db8e1 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.