summaryrefslogtreecommitdiff
path: root/syslinux.asm
diff options
context:
space:
mode:
authorhpa <hpa>1998-02-04 09:27:54 +0000
committerhpa <hpa>1998-02-04 09:27:54 +0000
commit8e85a3da280815b5d9647f716291a9d5884c504d (patch)
treed9c5877e7be1215554022eae4b84e4e1b9fc5416 /syslinux.asm
parent33b9acb9131a220ef50c5eed897fbfc4cb60d5bf (diff)
downloadsyslinux-8e85a3da280815b5d9647f716291a9d5884c504d.tar.gz
It seems to work now, but fd appears to be buggy???
Diffstat (limited to 'syslinux.asm')
-rw-r--r--syslinux.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/syslinux.asm b/syslinux.asm
index 53425c54..92163b96 100644
--- a/syslinux.asm
+++ b/syslinux.asm
@@ -130,7 +130,7 @@ got_cmdline:
cmp word [bx+dpbSectorSize],512 ; Sector size = 512 required
jne sectorsize_error
- cmp byte [bx+dpbClusterShift],6 ; Max size = 32K = 2^6 sectors
+ cmp byte [bx+dpbClusterShift],5 ; Max size = 16K = 2^5 sectors
jna read_bootsect
hugeclust_error:
@@ -264,7 +264,7 @@ msg_error: db 'ERROR: $'
msg_filesystem_err: db 'Filesystem not found on disk', 0Dh, 0Ah, '$'
msg_fat16_err: db 'FAT16 filesystems not supported at this time', 0Dh, 0Ah, '$'
msg_sectorsize_err: db 'Sector sizes other than 512 bytes not supported', 0Dh, 0Ah, '$'
-msg_hugeclust_err: db 'Clusters larger than 32K not supported', 0Dh, 0Ah, '$'
+msg_hugeclust_err: db 'Clusters larger than 16K not supported', 0Dh, 0Ah, '$'
msg_read_err: db 'Disk read failed', 0Dh, 0Ah, '$'
msg_write_err: db 'Disk write failed', 0Dh, 0Ah, '$'