summaryrefslogtreecommitdiff
path: root/src/devices/Kconfig
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-08-28 14:36:12 +0000
committerMyles Watson <mylesgw@gmail.com>2009-08-28 14:36:12 +0000
commite6804955c48f735074a6c56788bc9f65a412bbe2 (patch)
tree9ee4ff7d5f2bc1c7193b59940e2ee474066bdd2f /src/devices/Kconfig
parent876d7e9658c4e27684393f04220b32aa11edf18c (diff)
downloadcoreboot-e6804955c48f735074a6c56788bc9f65a412bbe2.tar.xz
Add Kconfig support for PCI option ROMS.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4609 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/Kconfig')
-rw-r--r--src/devices/Kconfig54
1 files changed, 32 insertions, 22 deletions
diff --git a/src/devices/Kconfig b/src/devices/Kconfig
index 2b58f91751..37ff9b927c 100644
--- a/src/devices/Kconfig
+++ b/src/devices/Kconfig
@@ -21,34 +21,44 @@
menu "Devices"
config VGA_ROM_RUN
- bool
+ bool "Run VGA Option ROMs"
help
- Execute PCI/AGP option ROMs if available. This is required to
- enable PCI/AGP VGA plugin cards.
+ Execute VGA option ROMs if found. This is required to enable PCI/AGP
+ VGA plugin cards.
-choice
- prompt "Execute PCI option ROMs"
- default PCI_OPTION_ROM_RUN_REALMODE
+config PCI_ROM_RUN
+ bool "Run non-VGA Option ROMs"
help
- Execute PCI/AGP option ROMs if available. You can choose to
- execute PCI option ROMs natively (32bit x86 system required),
- in an emulator (x86emu), or ignore option ROM execution.
+ Execute non-VGA PCI option ROMs if found.
-config PCI_OPTION_ROM_RUN_REALMODE
- prompt "Run VGA ROMs"
- bool
- select VGA_ROM_RUN
- help
- Execute PCI/AGP option ROMs if available. This is required to
- enable PCI/AGP VGA plugin cards.
+choice
+ prompt "Option ROM Execution"
+ default PCI_OPTION_ROM_RUN_REALMODE
+ depends on PCI_ROM_RUN || VGA_ROM_RUN
+ help
+ You can choose to execute PCI option ROMs natively (32bit x86 system
+ required) or in an emulator (x86emu or YABEL).
+
+ config PCI_OPTION_ROM_RUN_REALMODE
+ prompt "Real mode"
+ bool
+
+ config PCI_OPTION_ROM_RUN_YABEL
+ prompt "YABEL"
+ bool
+
+ config PCI_OPTION_ROM_RUN_X86EMU
+ prompt "X86EMU"
+ bool
+endchoice
-config NO_RUN
- prompt "Do NOT run VGA ROMs"
- bool
+config YABEL_DEBUG_FLAGS
+ prompt "Hex value for debug flags"
+ hex
+ default 0x0
+ depends on PCI_OPTION_ROM_RUN_YABEL
help
- Do not execute PCI/AGP option ROMs.
-
-endchoice
+ See debug.h for values 0 is no debug output, 0x31ff is _verbose_.
endmenu