diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-09-10 15:58:02 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-09-10 15:58:02 +0100 |
commit | 117fc6173891657d68a02d99a784705a1b5ec8f4 (patch) | |
tree | db7d78743d6119fa888825d341b3969131b82b1f /src/config/config.c | |
parent | 8e4faa094824cae9633ad512ea40c12805435f82 (diff) | |
download | ipxe-117fc6173891657d68a02d99a784705a1b5ec8f4.tar.gz |
[console] Add support for the bochs/qemu debug port console
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index 81519779c..bd1d98856 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -89,6 +89,9 @@ REQUIRE_OBJECT ( linux_console ); #ifdef CONSOLE_VMWARE REQUIRE_OBJECT ( vmconsole ); #endif +#ifdef CONSOLE_DEBUGCON +REQUIRE_OBJECT ( debugcon ); +#endif /* * Drag in all requested network protocols |