summaryrefslogtreecommitdiffstats
path: root/src/arch/i386
diff options
context:
space:
mode:
authorWissam Shoukair2015-06-29 13:42:51 +0200
committerMichael Brown2015-06-29 13:42:51 +0200
commitd8a618e80f6c8c2d6e24eb29ecab922b2e48b628 (patch)
tree3338b1654336e1e8228ebcc3e3c3e66102af866a /src/arch/i386
parent[serial] Use new UART abstraction in serial console driver (diff)
downloadipxe-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')
-rw-r--r--src/arch/i386/interface/syslinux/comboot_call.c4
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 4d033409..430bc3a3 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;