From 1c0b603673a3132a1554905dbcfe95c8fadb501e Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Sun, 23 Jul 2017 15:36:43 +0300 Subject: libpayload: video: Introduce helpers for font access This introduces helpers for accessing the included font, instead of using hardcoded values provided by the font's header itself. It will allow painlessly adding support for font scaling in a subsequent change. It should not introduce any functionality change. Change-Id: I0277984ec01f49dc51bfc8237ef806f13e3547e2 Signed-off-by: Paul Kocialkowski Reviewed-on: https://review.coreboot.org/20708 Tested-by: build bot (Jenkins) Reviewed-by: Julius Werner --- payloads/libpayload/drivers/Makefile.inc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'payloads/libpayload/drivers/Makefile.inc') diff --git a/payloads/libpayload/drivers/Makefile.inc b/payloads/libpayload/drivers/Makefile.inc index c6f6575df6..8dc6e8bbb6 100644 --- a/payloads/libpayload/drivers/Makefile.inc +++ b/payloads/libpayload/drivers/Makefile.inc @@ -63,10 +63,12 @@ libc-$(CONFIG_LP_VGA_VIDEO_CONSOLE) += video/vga.c # Geode LX console drivers libc-$(CONFIG_LP_GEODELX_VIDEO_CONSOLE) += video/geodelx.c libc-$(CONFIG_LP_GEODELX_VIDEO_CONSOLE) += video/font8x16.c +libc-$(CONFIG_LP_GEODELX_VIDEO_CONSOLE) += video/font.c # coreboot generic framebuffer driver libc-$(CONFIG_LP_COREBOOT_VIDEO_CONSOLE) += video/corebootfb.c libc-$(CONFIG_LP_COREBOOT_VIDEO_CONSOLE) += video/font8x16.c +libc-$(CONFIG_LP_COREBOOT_VIDEO_CONSOLE) += video/font.c # cbgfx: coreboot graphics library libc-y += video/graphics.c -- cgit v1.2.3