summaryrefslogtreecommitdiffstats
path: root/src/config/config.c
diff options
context:
space:
mode:
authorMichael Brown2015-10-16 17:14:29 +0200
committerMichael Brown2015-10-16 17:38:39 +0200
commit4b7443d132d4d889618588d78ed111099f16c6f9 (patch)
tree3dcb7c124669dac9582692ec9ac8534235b3424c /src/config/config.c
parent[console] Tidy up config/console.h (diff)
downloadipxe-4b7443d132d4d889618588d78ed111099f16c6f9.tar.gz
ipxe-4b7443d132d4d889618588d78ed111099f16c6f9.tar.xz
ipxe-4b7443d132d4d889618588d78ed111099f16c6f9.zip
[build] Generalise CONSOLE_VESAFB to CONSOLE_FRAMEBUFFER
The name "vesafb" is intrinsically specific to a BIOS environment. Generalise the build configuration option CONSOLE_VESAFB to CONSOLE_FRAMEBUFFER, in preparation for adding EFI framebuffer support. Existing configurations using CONSOLE_VESAFB will continue to work. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r--src/config/config.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/config/config.c b/src/config/config.c
index 1dd912c1..6f9e66cd 100644
--- a/src/config/config.c
+++ b/src/config/config.c
@@ -51,9 +51,6 @@ PROVIDE_REQUIRING_SYMBOL();
*
*/
-#ifdef CONSOLE_PCBIOS
-REQUIRE_OBJECT ( bios_console );
-#endif
#ifdef CONSOLE_SERIAL
REQUIRE_OBJECT ( serial );
#endif
@@ -81,12 +78,6 @@ REQUIRE_OBJECT ( vmconsole );
#ifdef CONSOLE_DEBUGCON
REQUIRE_OBJECT ( debugcon );
#endif
-#ifdef CONSOLE_VESAFB
-REQUIRE_OBJECT ( vesafb );
-#endif
-#ifdef CONSOLE_INT13
-REQUIRE_OBJECT ( int13con );
-#endif
/*
* Drag in all requested network protocols