diff options
author | Wissam Shoukair <wissams@mellanox.com> | 2015-06-29 12:42:51 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-06-29 12:42:51 +0100 |
commit | d8a618e80f6c8c2d6e24eb29ecab922b2e48b628 (patch) | |
tree | 3338b1654336e1e8228ebcc3e3c3e66102af866a | |
parent | 2a696ab963fe71296d9495caed1b748f6f7d8971 (diff) | |
download | ipxe-d8a618e80f6c8c2d6e24eb29ecab922b2e48b628.tar.gz |
[comboot] Implement INT22,0x000c
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-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 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; |