Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
mb/purism/librem_skl: guard selection of GMA presence straps
unconditionally selecting GFX_GMA_IGNORE_PRESENCE_STRAPS creates a hard dependency on MAINBOARD_USE_LIBGFXINIT, preventing a user from using an alternative (or no) display init, so guard it appropriately.
Test: build Librem 13v4 with FSP, VGA, and no display init.
Change-Id: Ibdfe0b2bf26a9a49fb5cb669329690894de71dbd Signed-off-by: Matt DeVillier matt.devillier@puri.sm --- M src/mainboard/purism/librem_skl/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/43489/1
diff --git a/src/mainboard/purism/librem_skl/Kconfig b/src/mainboard/purism/librem_skl/Kconfig index cd8fc66..f47c368 100644 --- a/src/mainboard/purism/librem_skl/Kconfig +++ b/src/mainboard/purism/librem_skl/Kconfig @@ -2,7 +2,7 @@ def_bool n select BOARD_ROMSIZE_KB_16384 select DRIVERS_GENERIC_CBFS_SERIAL - select GFX_GMA_IGNORE_PRESENCE_STRAPS + select GFX_GMA_IGNORE_PRESENCE_STRAPS if MAINBOARD_USE_LIBGFXINIT select HAVE_ACPI_RESUME select HAVE_ACPI_TABLES select INTEL_GMA_HAVE_VBT