diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-02-24 16:50:30 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-02-24 16:50:30 +0000 |
commit | c6b07ad64b6169e34edfee0e5f2389f77ce8278e (patch) | |
tree | 80172cbea5d9a1974fbbe1170ed7fa18083b10d4 | |
parent | 448f9b871850606e4a5d9bde09ea6a9e35fc9394 (diff) | |
download | drakx-c6b07ad64b6169e34edfee0e5f2389f77ce8278e.tar drakx-c6b07ad64b6169e34edfee0e5f2389f77ce8278e.tar.gz drakx-c6b07ad64b6169e34edfee0e5f2389f77ce8278e.tar.bz2 drakx-c6b07ad64b6169e34edfee0e5f2389f77ce8278e.tar.xz drakx-c6b07ad64b6169e34edfee0e5f2389f77ce8278e.zip |
make sure the cancel button is available in this pseudo-drakboot-boot
-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); |