diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-02-16 21:46:46 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2019-02-16 22:57:52 +0000 |
commit | 3c7a7f31dd1a39b86f223974c969fcfc1aecdea4 (patch) | |
tree | cb6cb78fefdaa3079e514c00b093f73a8fd46243 | |
parent | 8a3f75fc247754ef764736f20bb6c24a8a930e8f (diff) | |
download | drakiso-3c7a7f31dd1a39b86f223974c969fcfc1aecdea4.tar drakiso-3c7a7f31dd1a39b86f223974c969fcfc1aecdea4.tar.gz drakiso-3c7a7f31dd1a39b86f223974c969fcfc1aecdea4.tar.bz2 drakiso-3c7a7f31dd1a39b86f223974c969fcfc1aecdea4.tar.xz drakiso-3c7a7f31dd1a39b86f223974c969fcfc1aecdea4.zip |
Minor change to grub.cfg to simplify use with multibootusb.
Removing the unnecessary ($root) prefix means multibootusb will
automatically fix up the path to our grub directory.
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/MGA/DrakISO/BuildBoot.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- bootloader: tweak grub.cfg for use with multibootusb - drakclassic: show package dependencies at verbose level > 4 1.9 diff --git a/lib/MGA/DrakISO/BuildBoot.pm b/lib/MGA/DrakISO/BuildBoot.pm index 367bf6e..861f56a 100644 --- a/lib/MGA/DrakISO/BuildBoot.pm +++ b/lib/MGA/DrakISO/BuildBoot.pm @@ -329,7 +329,7 @@ sub build_grub2_cfg { join("\n", "if [ -z \$initialised ] ; then", - " set grub2=(\$root)/boot/grub2", + " set grub2=/boot/grub2", " export grub2", "", if_($build->{media}{overlay_label}, |