diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2019-10-29 20:38:10 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-01-03 13:46:24 +0000 |
commit | 1513d72a38e7f643c9499fc2079a99a75f0eac3c (patch) | |
tree | dc49e81e62f469780270f0c43e287593c2bc017c /src/device/Kconfig | |
parent | 34804572856e0f705837fba75650ce42cb70c30f (diff) |
device/Kconfig: make sure display can't be selected by accident
Make sure display can't be selected by accident when NO_GFX_INIT is selected.
Change-Id: Iec5a47f84b8c776a45edc6f4b31a03b9ac714b4e
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36444
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/device/Kconfig')
-rw-r--r-- | src/device/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index 9ae3bbd1de..f7adb07917 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -15,17 +15,20 @@ menu "Devices" config HAVE_VGA_TEXT_FRAMEBUFFER bool + depends on !NO_GFX_INIT help Selected by graphics drivers that support legacy VGA text mode. config HAVE_VBE_LINEAR_FRAMEBUFFER bool + depends on !NO_GFX_INIT help Selected by graphics drivers that can set up a VBE linear-framebuffer mode. config HAVE_LINEAR_FRAMEBUFFER bool + depends on !NO_GFX_INIT help Selected by graphics drivers that can set up a generic linear framebuffer. |