summaryrefslogtreecommitdiffstats
path: root/draklive-install
diff options
context:
space:
mode:
Diffstat (limited to 'draklive-install')
-rwxr-xr-xdraklive-install6
1 files changed, 5 insertions, 1 deletions
diff --git a/draklive-install b/draklive-install
index c830d5b..69d1b7b 100755
--- a/draklive-install
+++ b/draklive-install
@@ -353,7 +353,11 @@ sub setup_bootloader {
any::setupBootloaderBeforeStandalone($in->do_pkgs, $bootloader, $all_hds, $fstab);
undef $_wait;
local $::Wizard_no_previous = 0;
- any::setupBootloaderUntilInstalled($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL});
+ #- don't use any::setupBootloaderUntilInstalled - it creates unwanted mount
+ #- points in the live system
+ do {
+ any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit;
+ } while !any::installBootloader($in, $bootloader, $all_hds);
sync_logs();
}