summaryrefslogtreecommitdiffstats
path: root/images/make_boot_img
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-04-07 20:37:09 +0259
committerThomas Backlund <tmb@mageia.org>2015-04-07 20:37:09 +0259
commit576d8e1f069dd221f7ceac6ba8ec50353677779e (patch)
treeb1f883f3a755009cb901c6b0d3d5174e2b826e85 /images/make_boot_img
parentd08386e87a1cf2445c58a70f223d1e7a8d539872 (diff)
downloaddrakx-576d8e1f069dd221f7ceac6ba8ec50353677779e.tar
drakx-576d8e1f069dd221f7ceac6ba8ec50353677779e.tar.gz
drakx-576d8e1f069dd221f7ceac6ba8ec50353677779e.tar.bz2
drakx-576d8e1f069dd221f7ceac6ba8ec50353677779e.tar.xz
drakx-576d8e1f069dd221f7ceac6ba8ec50353677779e.zip
syslinux needs more space on all.img
Diffstat (limited to 'images/make_boot_img')
-rwxr-xr-ximages/make_boot_img2
1 files changed, 1 insertions, 1 deletions
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";