diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2014-02-13 16:27:50 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2014-02-13 16:27:50 -0800 |
commit | fb4eeb70f5f5b122319ad3f6474b38b6d4a389dd (patch) | |
tree | 20c1d124d1435567210112ea0708bfe68eddfaf5 /core/isolinux.asm | |
parent | a5727651bb78e7cd1bd90046e24fbcedf4f7dfb9 (diff) | |
download | syslinux-fb4eeb70f5f5b122319ad3f6474b38b6d4a389dd.tar.gz syslinux-fb4eeb70f5f5b122319ad3f6474b38b6d4a389dd.tar.xz syslinux-fb4eeb70f5f5b122319ad3f6474b38b6d4a389dd.zip |
comapi: Remove the comapi interfaces completely
Remove the last bits of the comapi interfaces completely. This does
not install stub handlers for the INT 20-3Fh handlers, as we don't
support loading old COMBOOT/COM32/COM32R images anymore.
We could put those back if we really need them.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'core/isolinux.asm')
-rw-r--r-- | core/isolinux.asm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/core/isolinux.asm b/core/isolinux.asm index 94a5b0b4..50d9fe1c 100644 --- a/core/isolinux.asm +++ b/core/isolinux.asm @@ -1205,23 +1205,13 @@ KernelName resb FILENAME_MAX ; Mangled name for kernel section .text16 ; -; COMBOOT-loading code +; COM32 vestigial data structure ; -%include "comboot.inc" %include "com32.inc" ; -; Boot sector loading code +; Common local boot code ; - -; -; Abort loading code -; - -; -; Hardware cleanup common code -; - %include "localboot.inc" ; ----------------------------------------------------------------------------- @@ -1239,4 +1229,4 @@ err_disk_image db 'Cannot load disk image (invalid file)?', CR, LF, 0 section .bss16 global OrigFDCTabPtr -OrigFDCTabPtr dd 0 ; Keep bios_cleanup_hardware() honest +OrigFDCTabPtr resd 1 ; Keep bios_cleanup_hardware() honest |