diff options
-rw-r--r-- | images/NEWS | 2 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index 6f9913444..fd369707c 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,5 @@ +- syslinux needs more space on all.img + Version 2.20 - 7 April 2015 by Thomas Backlund - drop nonexistant linuxefi grub2-efi module diff --git a/images/make_boot_img b/images/make_boot_img index e2d0187e8..d73d89da6 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -233,7 +233,7 @@ sub boot_img_i386 { unlink $rdz; # mtools wants the image to be a power of 32 - my $syslinux_overhead = 32 * 8; + my $syslinux_overhead = 32 * 16; my $size = max(ceil(chomp_(`du -s -k $tmp_mnt`) / 32) * 32 + $syslinux_overhead, 1440); _ "dd if=/dev/zero of=$img bs=1k count=$size"; |