summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Stuge <peter@stuge.se>2012-10-27 13:45:51 +0200
committerPatrick Georgi <patrick@georgi-clan.de>2012-10-29 09:34:24 +0100
commitb6fa47c639c38bf87cd9df4ec158ba3eeb9d5d70 (patch)
tree30df6722b5d9d4a499cd93061af8e62843fab2fe /src
parent892d8d2c58f6758d8ffa7166aaa96b0a319ae2db (diff)
downloadcoreboot-b6fa47c639c38bf87cd9df4ec158ba3eeb9d5d70.tar.xz
Clarify that _ROM_RUN Kconfig options control if ROMs are run by coreboot
Also clarify that enabling these options is generally not desirable if using SeaBIOS as payload since the option ROMs are run by SeaBIOS with more complete BIOS interrupt services available than coreboot. Change-Id: Ic4a45c351a4933aedad08d70a088eab04ca35b05 Signed-off-by: Peter Stuge <peter@stuge.se> Reviewed-on: http://review.coreboot.org/1636 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/devices/Kconfig43
1 files changed, 33 insertions, 10 deletions
diff --git a/src/devices/Kconfig b/src/devices/Kconfig
index d83d551b5f..013ab9a335 100644
--- a/src/devices/Kconfig
+++ b/src/devices/Kconfig
@@ -23,37 +23,60 @@ config VGA_ROM_RUN
bool "Run VGA Option ROMs"
default y
help
- Execute VGA Option ROMs, if found. This is required to enable
- PCI/AGP/PCI-E video cards.
+ Execute VGA Option ROMs in coreboot if found. This is required
+ to enable PCI/AGP/PCI-E video cards when not using a SeaBIOS
+ payload.
+
+ When using a SeaBIOS payload it runs all option ROMs with much
+ more complete BIOS interrupt services available than coreboot,
+ which some option ROMs require in order to function correctly.
+
+ If unsure, say N when using SeaBIOS as payload, Y otherwise.
config S3_VGA_ROM_RUN
bool "Re-run VGA Option ROMs on S3 resume"
default y
depends on VGA_ROM_RUN && HAVE_ACPI_RESUME
help
- Execute VGA Option ROMs when coming out of an S3 resume.
+ Execute VGA Option ROMs in coreboot when resuming from S3 suspend.
+
+ When using a SeaBIOS payload it runs all option ROMs with much
+ more complete BIOS interrupt services available than coreboot,
+ which some option ROMs require in order to function correctly.
+
+ If unsure, say N when using SeaBIOS as payload, Y otherwise.
config PCI_ROM_RUN
bool "Run non-VGA Option ROMs"
default y
help
- Execute non-VGA PCI Option ROMs, if found.
+ Execute non-VGA PCI Option ROMs in coreboot if found.
Examples include IDE/SATA controller Option ROMs and Option ROMs
for network cards (NICs).
+ When using a SeaBIOS payload it runs all option ROMs with much
+ more complete BIOS interrupt services available than coreboot,
+ which some option ROMs require in order to function correctly.
+
+ If unsure, say N when using SeaBIOS as payload, Y otherwise.
+
config ON_DEVICE_ROM_RUN
bool "Run Option ROMs on PCI devices"
default y
help
- Execute Option ROMs that are stored on PCI/PCIe/AGP devices.
+ Execute Option ROMs stored on PCI/PCIe/AGP devices in coreboot.
+
+ If disabled, only Option ROMs stored in CBFS will be executed by
+ coreboot. If you are concerned about security, you might want to
+ disable this option, but it might leave your system in a state of
+ degraded functionality.
- If disabled, only Option ROMs stored in CBFS will be executed. If
- you are concerned about security, you might want to disable this
- option, but it might leave your system in a state of degraded
- functionality.
+ When using a SeaBIOS payload it runs all option ROMs with much
+ more complete BIOS interrupt services available than coreboot,
+ which some option ROMs require in order to function correctly.
- If unsure, say Y
+ If unsure, say N when using SeaBIOS as payload, Y otherwise.
choice
prompt "Option ROM execution type"