mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-04 18:44:36 +00:00
[comboot] Implement INT 22h AX=000Bh (Get Serial Console Configuration)
Signed-off-by: Michael Brown <mcb30@etherboot.org>
This commit is contained in:
parent
4fe1e08a60
commit
cb9700ef6f
@ -39,6 +39,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
#include <gpxe/init.h>
|
||||
#include <gpxe/image.h>
|
||||
#include <usr/imgmgmt.h>
|
||||
#include "config/console.h"
|
||||
#include "config/serial.h"
|
||||
|
||||
/** The "SYSLINUX" version string */
|
||||
static char __data16_array ( syslinux_version, [] ) = "gPXE " VERSION;
|
||||
@ -456,8 +458,14 @@ static __asmcall void int22 ( struct i386_all_regs *ix86 ) {
|
||||
break;
|
||||
|
||||
case 0x000B: /* Get Serial Console Configuration */
|
||||
/* FIXME: stub */
|
||||
#if defined(CONSOLE_SERIAL) && !defined(COMPRESERVE)
|
||||
ix86->regs.dx = COMCONSOLE;
|
||||
ix86->regs.cx = 115200 / COMSPEED;
|
||||
ix86->regs.bx = 0;
|
||||
#else
|
||||
ix86->regs.dx = 0;
|
||||
#endif
|
||||
|
||||
ix86->flags &= ~CF;
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user