diff options
| author | Michael Brown | 2012-09-10 16:58:02 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-09-10 16:58:02 +0200 |
| commit | 117fc6173891657d68a02d99a784705a1b5ec8f4 (patch) | |
| tree | db7d78743d6119fa888825d341b3969131b82b1f /src/config | |
| parent | [cmdline] Add standalone "nslookup" command (diff) | |
| download | ipxe-117fc6173891657d68a02d99a784705a1b5ec8f4.tar.gz ipxe-117fc6173891657d68a02d99a784705a1b5ec8f4.tar.xz ipxe-117fc6173891657d68a02d99a784705a1b5ec8f4.zip | |
[console] Add support for the bochs/qemu debug port console
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/config.c | 3 | ||||
| -rw-r--r-- | src/config/console.h | 1 |
2 files changed, 4 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 diff --git a/src/config/console.h b/src/config/console.h index 95c32803b..04be02dc4 100644 --- a/src/config/console.h +++ b/src/config/console.h @@ -21,6 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#define CONSOLE_SYSLOG /* Syslog console */ //#define CONSOLE_SYSLOGS /* Encrypted syslog console */ //#define CONSOLE_VMWARE /* VMware logfile console */ +//#define CONSOLE_DEBUGCON /* Debug port console */ #define KEYBOARD_MAP us |
