summaryrefslogtreecommitdiff
path: root/isolinux.asm
diff options
context:
space:
mode:
authorhpa <hpa>2004-12-22 13:40:56 +0000
committerhpa <hpa>2004-12-22 13:40:56 +0000
commit72d098b31e57e5ae81d9a4923608f12014c1d36f (patch)
tree1a53e8b9b7c51e3e11d601dfa905374013647f98 /isolinux.asm
parentea742162cc082fec3a3164d75fc5af67ceb7ef0a (diff)
downloadsyslinux-72d098b31e57e5ae81d9a4923608f12014c1d36f.tar.gz
Detect null filenames correctly (problems in both pxelinux and extlinux)syslinux-3.00-pre2
Diffstat (limited to 'isolinux.asm')
-rw-r--r--isolinux.asm1
1 files changed, 1 insertions, 0 deletions
diff --git a/isolinux.asm b/isolinux.asm
index 548811e8..78e642a4 100644
--- a/isolinux.asm
+++ b/isolinux.asm
@@ -33,6 +33,7 @@ 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?
%assign HIGHMEM_SLOP 128*1024 ; Avoid this much memory near the top
MAX_OPEN_LG2 equ 6 ; log2(Max number of open files)