summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorMichael Brown2015-10-05 20:19:26 +0200
committerMichael Brown2015-10-16 17:38:41 +0200
commit6847232e70f7fbff2f5637505a85532ec752a11f (patch)
tree40e47f2893a95da42b8ab0eeaf770c5abd399870 /src/config
parent[build] Generalise CONSOLE_VESAFB to CONSOLE_FRAMEBUFFER (diff)
downloadipxe-6847232e70f7fbff2f5637505a85532ec752a11f.tar.gz
ipxe-6847232e70f7fbff2f5637505a85532ec752a11f.tar.xz
ipxe-6847232e70f7fbff2f5637505a85532ec752a11f.zip
[efi] Add support for EFI_GRAPHICS_OUTPUT_PROTOCOL frame buffer consoles
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r--src/config/config_efi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config/config_efi.c b/src/config/config_efi.c
index ece6eaa3..1f73dad4 100644
--- a/src/config/config_efi.c
+++ b/src/config/config_efi.c
@@ -39,3 +39,9 @@ PROVIDE_REQUIRING_SYMBOL();
#ifdef CONSOLE_EFI
REQUIRE_OBJECT ( efi_console );
#endif
+#ifdef CONSOLE_EFIFB
+REQUIRE_OBJECT ( efi_fbcon );
+#endif
+#ifdef CONSOLE_FRAMEBUFFER
+REQUIRE_OBJECT ( efi_fbcon );
+#endif