From aa2e04fe1cea2deb3203ea5a84940722a6cb02e0 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 28 Nov 2013 04:15:34 +0000 Subject: [vesafb] Add VESA frame buffer console The VESA frame buffer console uses the VESA BIOS extensions (VBE) to enumerate video modes, selects an appropriate mode, and then hands off to the generic frame buffer code. The font is extracted from the VGA BIOS, avoiding the need to provide an external font file. Signed-off-by: Michael Brown --- src/config/config.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/config/config.c') diff --git a/src/config/config.c b/src/config/config.c index b81cfb5c6..898096798 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -93,6 +93,9 @@ REQUIRE_OBJECT ( vmconsole ); #ifdef CONSOLE_DEBUGCON REQUIRE_OBJECT ( debugcon ); #endif +#ifdef CONSOLE_VESAFB +REQUIRE_OBJECT ( vesafb ); +#endif /* * Drag in all requested network protocols -- cgit