Nico Huber has submitted this change. ( https://review.coreboot.org/c/coreboot/+/36444 )
Change subject: device/Kconfig: make sure display can't be selected by accident ......................................................................
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 --- M src/device/Kconfig 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/src/device/Kconfig b/src/device/Kconfig index 9ae3bbd..f7adb07 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -15,17 +15,20 @@
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.