diff options
-rw-r--r-- | perl-install/pkgs.pm | 1 | ||||
-rwxr-xr-x | perl-install/standalone/drakboot | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index e07bdbd14..19c60f0ed 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -943,6 +943,7 @@ sub install($$$;$$) { $error_msg and die $error_msg; } else { #- child process will run each transaction. + $SIG{SEGV} = sub { print OUTPUT "die:crashed\n"; c::_exit(0) }; eval { close INPUT; select((select(OUTPUT), $| = 1)[0]); diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 6171c5a30..2bcef5da4 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -19,6 +19,17 @@ $::isStandalone = 1; my $in = vnew interactive('su'); +my %l = ( + _("Configure LILO/GRUB") => '', + _("Create a boot floppy") => '/usr/X11R6/bin/drakfloppy', + _("Format floppy") => '/usr/bin/gfloppy', +); +-x $l{$_} or delete $l{$_} foreach grep { $l{$_} } keys %l; + +my $cmd = $l{$in->ask_from_list(_("Choice"), _("What do you want to do?"), [ keys %l ])}; +exec $cmd if $cmd; + + my $bootloader = lilo::read('', '/etc/lilo.conf'); local ($_) = `detectloader`; $bootloader->{methods} = { lilo => 1, grub => !!/grub/i }; |