wok-current rev 14262
syslinux/iso2exe: fix isohybrib.exe dos
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Mar 30 20:33:34 2013 +0100 (2013-03-30) |
parents | 5ed4d6b2d690 |
children | 692d9593f959 |
files | syslinux/stuff/iso2exe/README syslinux/stuff/iso2exe/iso2exe.c |
line diff
1.1 --- a/syslinux/stuff/iso2exe/README Sat Mar 30 18:36:46 2013 +0100 1.2 +++ b/syslinux/stuff/iso2exe/README Sat Mar 30 20:33:34 2013 +0100 1.3 @@ -78,7 +78,8 @@ 1.4 1.5 Limitations: 1.6 1.7 -- Only DOS 3, 4 and 6 supported. Checked with http://www.allbootdisks.com/ 1.8 +- Only DOS 3, 4 and 6 boot supported. Checked with http://www.allbootdisks.com/ 1.9 + NT support via boot device creation. 1.10 1.11 - Real mode support only. VM86 is not supported. Will not boot directly, but 1.12 a removable boot media is created. 1.13 @@ -98,8 +99,6 @@ 1.14 1.15 TODO: 1.16 1.17 -- Add Windows boot device creator 1.18 - 1.19 - Add XMM and VCPI (VM86) support. 1.20 1.21 - floppy bootstrap
2.1 --- a/syslinux/stuff/iso2exe/iso2exe.c Sat Mar 30 18:36:46 2013 +0100 2.2 +++ b/syslinux/stuff/iso2exe/iso2exe.c Sat Mar 30 20:33:34 2013 +0100 2.3 @@ -28,7 +28,7 @@ 2.4 unsigned long size, catalog, lba; 2.5 int cylinders, i, j, isohybrid; 2.6 unsigned n; 2.7 - char tazlitoinfo[31*1024]; 2.8 + char tazlitoinfo[10*1024]; 2.9 #ifndef WIN32 2.10 char *bootiso; 2.11 for (bootiso = (char *) main;