diff options
author | Nico Huber <nico.h@gmx.de> | 2017-05-20 16:46:01 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-04 18:47:19 +0200 |
commit | 6d8266b91d7c8338350f7f8b81c21d10c97aceb6 (patch) | |
tree | 9b10087e4cd90b56fbe1474c46958b2e3286b30d /src/drivers/emulation/qemu/Kconfig | |
parent | 49d99fcebc7c3860def51812c2f723ad3e8a4ea3 (diff) | |
download | coreboot-6d8266b91d7c8338350f7f8b81c21d10c97aceb6.tar.xz |
Kconfig: Add choice of framebuffer mode
Rename `FRAMEBUFFER_KEEP_VESA_MODE` to `LINEAR_FRAMEBUFFER` and put
it together with new `VGA_TEXT_FRAMEBUFFER` into a choice. There are
two versions of `LINEAR_FRAMEBUFFER` that differ only in the prompt
and help text (one for `HAVE_VBE_LINEAR_FRAMEBUFFER` and one for
`HAVE_LINEAR_FRAMEBUFFER`). Due to `kconfig_lint` we have to model
that with additional symbols.
Change-Id: I9144351491a14d9bb5e650c14933b646bc83fab0
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/19804
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers/emulation/qemu/Kconfig')
-rw-r--r-- | src/drivers/emulation/qemu/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/emulation/qemu/Kconfig b/src/drivers/emulation/qemu/Kconfig index f8aad88730..58daaa4487 100644 --- a/src/drivers/emulation/qemu/Kconfig +++ b/src/drivers/emulation/qemu/Kconfig @@ -16,11 +16,11 @@ config DRIVERS_EMULATION_QEMU_BOCHS config DRIVERS_EMULATION_QEMU_BOCHS_XRES int "bochs vga xres" default 800 - depends on FRAMEBUFFER_KEEP_VESA_MODE + depends on LINEAR_FRAMEBUFFER depends on DRIVERS_EMULATION_QEMU_BOCHS config DRIVERS_EMULATION_QEMU_BOCHS_YRES int "bochs vga yres" default 600 - depends on FRAMEBUFFER_KEEP_VESA_MODE + depends on LINEAR_FRAMEBUFFER depends on DRIVERS_EMULATION_QEMU_BOCHS |