aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWissam Shoukair <wissams@mellanox.com>2015-06-29 12:42:51 +0100
committerMichael Brown <mcb30@ipxe.org>2015-06-29 12:42:51 +0100
commitd8a618e80f6c8c2d6e24eb29ecab922b2e48b628 (patch)
tree3338b1654336e1e8228ebcc3e3c3e66102af866a /src
parent2a696ab963fe71296d9495caed1b748f6f7d8971 (diff)
downloadipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.zip
ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.tar.gz
ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.tar.bz2
[comboot] Implement INT22,0x000c
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src')
-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 4d03340..430bc3a 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;