aboutsummaryrefslogtreecommitdiffstats
path: root/core/isolinux.asm
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@linux.intel.com>2011-05-24 10:45:51 +0100
committerMatt Fleming <matt.fleming@intel.com>2011-12-02 12:13:30 +0000
commit14531c47bc9577e56301884a9cd64dc4f651220b (patch)
tree225c242abc52b247810a40763b2a86682db849ac /core/isolinux.asm
parent323eeba0fada24cbaa99b18e099844c975e1366a (diff)
downloadsyslinux-14531c47bc9577e56301884a9cd64dc4f651220b.tar.gz
core: Delete code that is duplicated in ldlinux
Lots of code that used to be implemented in the core is now implemented in ldlinux, but code from core was never deleted. Purge this code. Also, move all com32 loading to ldlinux since we need to be able to do various command line things (which are no longer available in the core). Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'core/isolinux.asm')
-rw-r--r--core/isolinux.asm18
1 files changed, 0 insertions, 18 deletions
diff --git a/core/isolinux.asm b/core/isolinux.asm
index 8757c0fa..bc6878ba 100644
--- a/core/isolinux.asm
+++ b/core/isolinux.asm
@@ -1206,8 +1206,6 @@ debug_tracer: pushad
; -----------------------------------------------------------------------------
%include "common.inc" ; Universal modules
-%include "rawcon.inc" ; Console I/O w/o using the console functions
-%include "localboot.inc" ; Disk-based local boot
; -----------------------------------------------------------------------------
; Begin data section
@@ -1215,19 +1213,3 @@ debug_tracer: pushad
section .data16
err_disk_image db 'Cannot load disk image (invalid file)?', CR, LF, 0
-
-;
-; Config file keyword table
-;
-%include "keywords.inc"
-
-;
-; Extensions to search for (in *forward* order).
-;
- alignz 4
-exten_table: db '.cbt' ; COMBOOT (specific)
- db '.bin' ; CD boot sector
- db '.com' ; COMBOOT (same as DOS)
- db '.c32' ; COM32
-exten_table_end:
- dd 0, 0 ; Need 8 null bytes here