summaryrefslogtreecommitdiffstats
path: root/device/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'device/Kconfig')
-rw-r--r--device/Kconfig18
1 files changed, 9 insertions, 9 deletions
diff --git a/device/Kconfig b/device/Kconfig
index 2fa99276de35..a2c1d7bea09a 100644
--- a/device/Kconfig
+++ b/device/Kconfig
@@ -25,12 +25,12 @@ config PCI_OPTION_ROM_RUN
help
Execute PCI/AGP option ROMs if available. This is required to
enable PCI/AGP VGA plugin cards. This option is not exposed
- to the user but set by the options PCI_OPTION_ROM_RUN_VM86
- , PCI_OPTION_ROM_RUN_X86EMU and PCI_OPTION_ROM_RUN_YABEL.
+ to the user but set by the options PCI_OPTION_ROM_RUN_REALMODE,
+ PCI_OPTION_ROM_RUN_X86EMU and PCI_OPTION_ROM_RUN_YABEL.
choice
prompt "Execute PCI Option ROMs"
- default PCI_OPTION_ROM_RUN_VM86
+ default PCI_OPTION_ROM_RUN_REALMODE
help
Execute PCI/AGP option ROMs if available. You can choose to
execute PCI option ROMs natively (32bit x86 system required),
@@ -63,17 +63,17 @@ config PCI_OPTION_ROM_RUN_YABEL
All 16bit x86 code is executed in an encapsulated environment
where it can not break out.
-config PCI_OPTION_ROM_RUN_VM86
- bool "vm86"
+config PCI_OPTION_ROM_RUN_REALMODE
+ bool "realmode"
select PCI_OPTION_ROM_RUN
depends ARCH_X86
help
- If you choose this option, the virtual x86 mode "vm86" is used
+ If you choose this option, the x86 real mode is used
to execute 16bit legacy BIOS option ROMs.
- vm86 is very small, fast, and probably a little less safe than
- x86emu, since it runs option ROMs on the real hardware instead
- of an emulator.
+ The realmode trampoline code is very small, fast, and probably a
+ little less safe but a little more compatible than x86emu, since it
+ runs option ROMs on the real hardware instead of an emulator.
config PCI_OPTION_ROM_RUN_NONE
bool "Disabled"