diff options
author | Peter Stuge <peter@stuge.se> | 2012-10-27 14:17:04 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-10-29 09:36:09 +0100 |
commit | be0ede412edb631892312d3972c8439fa7053203 (patch) | |
tree | 08d9ef5dfad45fa4c54e94114a0507c8ee70b022 | |
parent | b6fa47c639c38bf87cd9df4ec158ba3eeb9d5d70 (diff) | |
download | coreboot-be0ede412edb631892312d3972c8439fa7053203.tar.xz |
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>
Reviewed-on: http://review.coreboot.org/1637
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
-rw-r--r-- | src/devices/Kconfig | 9 |
1 files 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. |