diff options
| author | Wissam Shoukair | 2015-06-29 13:42:51 +0200 |
|---|---|---|
| committer | Michael Brown | 2015-06-29 13:42:51 +0200 |
| commit | d8a618e80f6c8c2d6e24eb29ecab922b2e48b628 (patch) | |
| tree | 3338b1654336e1e8228ebcc3e3c3e66102af866a /src/arch/i386/interface | |
| parent | [serial] Use new UART abstraction in serial console driver (diff) | |
| download | ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.tar.gz ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.tar.xz ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.zip | |
[comboot] Implement INT22,0x000c
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/i386/interface')
| -rw-r--r-- | src/arch/i386/interface/syslinux/comboot_call.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/i386/interface/syslinux/comboot_call.c b/src/arch/i386/interface/syslinux/comboot_call.c index 4d033409a..430bc3a38 100644 --- a/src/arch/i386/interface/syslinux/comboot_call.c +++ b/src/arch/i386/interface/syslinux/comboot_call.c @@ -463,6 +463,10 @@ static __asmcall void int22 ( struct i386_all_regs *ix86 ) { } break; + case 0x000C: /* Perform final cleanup */ + shutdown_boot(); + break; + case 0x000E: /* Get configuration file name */ /* FIXME: stub */ ix86->segs.es = rm_ds; |
