Hide all _ROM_RUN Kconfig options if the payload is SeaBIOS
The options are shown regardless of payload if CONFIG_EXPERT is set. Change-Id: I12c81ce41a0e300e852481424eadc83f281863bf Signed-off-by: Peter Stuge <peter@stuge.se> Reviewed-on: http://review.coreboot.org/1638 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
parent
be0ede412e
commit
f4ff56f617
|
@ -23,6 +23,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
|
||||||
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
|
||||||
|
@ -51,6 +52,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
|
||||||
help
|
help
|
||||||
Execute non-VGA PCI Option ROMs in coreboot if found.
|
Execute non-VGA PCI Option ROMs in coreboot if found.
|
||||||
|
|
||||||
|
@ -67,6 +69,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
|
||||||
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