Change in coreboot[master]: device/Kconfig: make sure display can't be selected by accident

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. -- To view, visit https://review.coreboot.org/c/coreboot/+/36444 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-Change-Id: Iec5a47f84b8c776a45edc6f4b31a03b9ac714b4e Gerrit-Change-Number: 36444 Gerrit-PatchSet: 10 Gerrit-Owner: Michael Niewöhner Gerrit-Reviewer: Arthur Heymans <arthur@aheymans.xyz> Gerrit-Reviewer: Michael Niewöhner Gerrit-Reviewer: Nico Huber <nico.h@gmx.de> Gerrit-Reviewer: Patrick Georgi <pgeorgi@google.com> Gerrit-Reviewer: Patrick Rudolph <siro@das-labor.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org> Gerrit-CC: HAOUAS Elyes <ehaouas@noos.fr> Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net> Gerrit-MessageType: merged
participants (1)
-
Nico Huber (Code Review)