diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2020-02-21 14:11:29 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-02-24 13:10:47 +0000 |
commit | 672a4feee628ef9e6117f4b1e9ad3b1324369545 (patch) | |
tree | ae4769cc3657aa81fd20f9081e93e71dc6a7ff58 /src | |
parent | 255aeaa9a27bf9c2eab6db57a20153aa16947559 (diff) | |
download | coreboot-672a4feee628ef9e6117f4b1e9ad3b1324369545.tar.xz |
device/Kconfig: select linear framebuffer for Tianocore
Automatically select the linear framebuffer mode option if
available when Tianocore selected as payload, since VGA text
mode will not work properly with the default Tianocore payload.
Change-Id: Ic36fd035526f3efd00ffa12ad613fbac304b18cf
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39048
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/device/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index 603c7eb8d1..25123ea3e0 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -413,6 +413,8 @@ choice prompt "Framebuffer mode" default VBE_LINEAR_FRAMEBUFFER if HAVE_VBE_LINEAR_FRAMEBUFFER && CHROMEOS default GENERIC_LINEAR_FRAMEBUFFER if HAVE_LINEAR_FRAMEBUFFER && CHROMEOS + default VBE_LINEAR_FRAMEBUFFER if HAVE_VBE_LINEAR_FRAMEBUFFER && PAYLOAD_TIANOCORE + default GENERIC_LINEAR_FRAMEBUFFER if HAVE_LINEAR_FRAMEBUFFER && PAYLOAD_TIANOCORE default VGA_TEXT_FRAMEBUFFER config VGA_TEXT_FRAMEBUFFER |