Allow PCI option rom execution only on systems with PCI support
... on all other systems it will fail terribly ;-) Change-Id: I7f8d10b71b2dbc798b28aee7c36872685c793fd8 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2001 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks <dhendrix@chromium.org>
This commit is contained in:
parent
10099070ca
commit
2110c97a63
|
@ -24,7 +24,7 @@ config VGA_ROM_RUN
|
||||||
bool "Run VGA Option ROMs"
|
bool "Run VGA Option ROMs"
|
||||||
default n if PAYLOAD_SEABIOS
|
default n if PAYLOAD_SEABIOS
|
||||||
default y if !PAYLOAD_SEABIOS
|
default y if !PAYLOAD_SEABIOS
|
||||||
depends on !PAYLOAD_SEABIOS || EXPERT
|
depends on PCI && !PAYLOAD_SEABIOS || EXPERT
|
||||||
help
|
help
|
||||||
Execute VGA Option ROMs in coreboot if found. This is required
|
Execute VGA Option ROMs in coreboot if found. This is required
|
||||||
to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS
|
to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS
|
||||||
|
@ -53,7 +53,7 @@ config PCI_ROM_RUN
|
||||||
bool "Run non-VGA Option ROMs"
|
bool "Run non-VGA Option ROMs"
|
||||||
default n if PAYLOAD_SEABIOS
|
default n if PAYLOAD_SEABIOS
|
||||||
default y if !PAYLOAD_SEABIOS
|
default y if !PAYLOAD_SEABIOS
|
||||||
depends on !PAYLOAD_SEABIOS || EXPERT
|
depends on PCI && !PAYLOAD_SEABIOS || EXPERT
|
||||||
help
|
help
|
||||||
Execute non-VGA PCI Option ROMs in coreboot if found.
|
Execute non-VGA PCI Option ROMs in coreboot if found.
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ config ON_DEVICE_ROM_RUN
|
||||||
bool "Run Option ROMs on PCI devices"
|
bool "Run Option ROMs on PCI devices"
|
||||||
default n if PAYLOAD_SEABIOS
|
default n if PAYLOAD_SEABIOS
|
||||||
default y if !PAYLOAD_SEABIOS
|
default y if !PAYLOAD_SEABIOS
|
||||||
depends on !PAYLOAD_SEABIOS || EXPERT
|
depends on PCI && !PAYLOAD_SEABIOS || EXPERT
|
||||||
help
|
help
|
||||||
Execute Option ROMs stored on PCI/PCIe/AGP devices in coreboot.
|
Execute Option ROMs stored on PCI/PCIe/AGP devices in coreboot.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue