Arthur Heymans has uploaded a new change for review. ( https://review.coreboot.org/19501 )
Change subject: lib/edid.c: Allow use of when not NGI ......................................................................
lib/edid.c: Allow use of when not NGI
Change-Id: I8709e3e61686979137b08d24efad903700d18e0b Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/device/Kconfig M src/lib/Makefile.inc 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/19501/1
diff --git a/src/device/Kconfig b/src/device/Kconfig index 83f0f9f..2cdd27b 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -24,8 +24,8 @@ # FIXME Ugly hack to allow Z9s driver native framebuffer configuration config NATIVE_VGA_INIT_USE_EDID bool - default n if DRIVERS_XGI_Z9S || MAINBOARD_USE_LIBGFXINIT default y if !DRIVERS_XGI_Z9S + default n if DRIVERS_XGI_Z9S || MAINBOARD_USE_LIBGFXINIT || !GFX_GMA
config MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG bool diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index 8f92b29..55f5960 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -130,7 +130,7 @@ ramstage-$(CONFIG_TRACE) += trace.c ramstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c ramstage-$(CONFIG_COVERAGE) += libgcov.c -ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += edid.c +ramstage-y += edid.c ramstage-y += memrange.c ramstage-$(CONFIG_COOP_MULTITASKING) += thread.c ramstage-$(CONFIG_TIMER_QUEUE) += timer_queue.c