diff options
-rwxr-xr-x | live/draklive-install/draklive-install | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/live/draklive-install/draklive-install b/live/draklive-install/draklive-install index 630e2f2e7..e902642bd 100755 --- a/live/draklive-install/draklive-install +++ b/live/draklive-install/draklive-install @@ -156,7 +156,10 @@ bootloader::suggest($bootloader, $in->{all_hds}, vga_fb => first($cmdline =~ /\bvga=(\S+)/), #- don't use $1 here, otherwise perl will hit you because of the other "=~" below quiet => $cmdline =~ /\bsplash=silent\b/, ); -lilo_choice(); +{ + local $::Wizard_no_previous = 0; + lilo_choice(); +} #- cleanly umount here, it will avoid fs journals to be corrupted after a hackish reboot umount_all($in); |