aboutsummaryrefslogtreecommitdiffstats
path: root/core/isolinux.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-08-12 20:56:46 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-08-12 20:56:46 -0700
commit0456f52098e30355a09ad2e05c3a26fc2dbc1752 (patch)
tree6913b6476e85971a9fff393b55f0aca249e51984 /core/isolinux.asm
parent73ed95079a6d317db472935a8965f36a63f10140 (diff)
downloadsyslinux-0456f52098e30355a09ad2e05c3a26fc2dbc1752.tar.gz
core: make FILENAME_MAX common; librarize mangle/unmangle
FILENAME_MAX was 2^8 in all variants by now; make it a common define. Libraries mangle/unmangle; we have generic_mangle_name for Unix-like filesystems, and unmangle now defaults to simple strcpy. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/isolinux.asm')
-rw-r--r--core/isolinux.asm2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/isolinux.asm b/core/isolinux.asm
index 2816dd8f..09844781 100644
--- a/core/isolinux.asm
+++ b/core/isolinux.asm
@@ -26,8 +26,6 @@
; Some semi-configurable constants... change on your own risk.
;
my_id equ isolinux_id
-FILENAME_MAX_LG2 equ 8 ; log2(Max filename size Including final null)
-FILENAME_MAX equ (1 << FILENAME_MAX_LG2)
NULLFILE equ 0 ; Zero byte == null file name
NULLOFFSET equ 0 ; Position in which to look
retry_count equ 6 ; How patient are we with the BIOS?