Displaying 4 results from an estimated 4 matches for "maxlma".
Did you mean:
maxima
2011 Mar 21
1
[elflink] diskstart.inc:420: error: Sector 1 overflow by 5 bytes
...ach extent contains an 8-byte LBA and an 2-byte
+; sector count. In most cases, we will only ever need a handful of
+; extents, but we have to assume a maximally fragmented system where each
+; extent contains only one sector.
+;
+ alignz 2
MaxInitDataSize equ 96 << 10
MaxLMA equ TEXT_START+SECTOR_SIZE+MaxInitDataSize
-SectorPtrs times MaxInitDataSize >> SECTOR_SHIFT dd 0
+SectorPtrs zb 10*(MaxInitDataSize >> SECTOR_SHIFT)
SectorPtrsEnd equ $
;
----------------------------------------------------------------------------
As you can see...
2013 Nov 26
0
Sysinux 6 will not boot ISOs on BIOS (i.e. pre-UEFI) systems
...ave the ability to rebuild Syslinux from source, perhaps you
could try the following patch?
-hpa
-------------- next part --------------
diff --git a/core/isolinux.asm b/core/isolinux.asm
index bd4e9556922d..c4db4133e274 100644
--- a/core/isolinux.asm
+++ b/core/isolinux.asm
@@ -420,7 +420,7 @@ MaxLMA equ 384*1024 ; Reasonable limit (384K)
call getlinsec
pop eax
pop cx
- mov dx,cx
+ movzx edx,cx
pop bp
pop bx
2013 Dec 01
1
request backport fix for isolinux 4.xx branch
Recently a patch by HPA was added to the elflink branch,
"isolinux: Clear upper half of EDX before using..."
http://git.zytor.com/?p=syslinux/syslinux.git;a=commit;h=870b84dd8714d
dfccc9288025331423efa6d76b7
The patch was then applied to the firmware branch too.
The patch solves an issue introduced by a prior commit "isolinux:
Update LBA in getlinsec loop".
Since the
2013 Nov 26
3
Sysinux 6 will not boot ISOs on BIOS (i.e. pre-UEFI) systems
On 11/25/2013 04:12 PM, Gerardo Exequiel Pozzi wrote:
>
> I made some more and more experiments beyond LBA 65535
>
> Works: * isolinux-4.07.bin (size 24574) * isolinux-5.00.bin (size
> 34816)
>
> Does not work: * isolinux-5.01.bin (size 34816) * isolinux-5.10.bin
> (size 36864) * isolinux-6.00.bin (size 38912) * isolinux-6.02.bin
> (size 43008)
>
> * I just