diff options
Diffstat (limited to 'images')
-rw-r--r-- | images/NEWS | 1 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index fd369707c..068a44b49 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,4 @@ +- fix finding grub legacy files for hd_grub generation - syslinux needs more space on all.img Version 2.20 - 7 April 2015 by Thomas Backlund diff --git a/images/make_boot_img b/images/make_boot_img index d73d89da6..15ba799eb 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -379,7 +379,7 @@ sub hd_grub { my ($img) = @_; my $mapfile = '/tmp/device.map.tmp'; - my ($grub_dir) = glob("/lib/grub/*-*"); + my ($grub_dir) = glob("/lib/grub/*-mageia"); my @grub_files = map { "$grub_dir/$_" } qw(stage1 stage2); # mtools wants the image to be a power of 32 |