From 675bf00c2e32d3e7adff71515d532206d432af75 Mon Sep 17 00:00:00 2001 From: Yves Duret Date: Mon, 9 Apr 2001 12:50:01 +0000 Subject: added lilo/grub --- perl-install/standalone/drakboot | 52 +++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 22 deletions(-) (limited to 'perl-install/standalone') diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 4aee3c2cd..cc376e398 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -23,28 +23,36 @@ $::expert = /-expert/; my $in = interactive->vnew('su'); require 'bootlook.pm' if ref($in) =~ /gtk/; - - -my $bootloader = bootloader::read('', '/etc/lilo.conf'); -local ($_) = `detectloader`; -$bootloader->{methods} = { lilo => 1, grub => !!/grub/i }; - -my ($hds) = catch_cdie { fsedit::hds([ detect_devices::hds() ], {}) } sub { 1 }; -my $fstab = [ fsedit::get_fstab(@$hds) ]; -fs::get_mntpoints_from_fstab($fstab); - -ask: -any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0); -eval { bootloader::install('', $bootloader, $fstab, $hds) }; - -if ($@) { - $in->ask_warn('', - [ _("Installation of LILO failed. The following error occured:"), +lilo_choice(); + + +sub lilo_choice +{ + my $bootloader = bootloader::read('', '/etc/lilo.conf'); + local ($_) = `detectloader`; + $bootloader->{methods} = { lilo => 1, grub => !!/grub/i }; + print $bootloader . "\n"; + + + my ($hds) = catch_cdie { fsedit::hds([ detect_devices::hds() ], {}) } sub { 1 }; + my $fstab = [ fsedit::get_fstab(@$hds) ]; + fs::get_mntpoints_from_fstab($fstab); + + $::expert=1; + + ask: + any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0); + #eval { bootloader::install('', $bootloader, $fstab, $hds) }; + + if ($@) { + $in->ask_warn('', + [ _("Installation of LILO failed. The following error occured:"), grep { !/^Warning:/ } cat_("/tmp/.error") ]); - unlink "/tmp/.error"; - goto ask; + unlink "/tmp/.error"; + goto ask; + } } + !$::isEmbedded and $in->exit(0); + kill(USR1, $::CCPID); + goto ask; -!$::isEmbedded and $in->exit(0); -kill(USR1, $::CCPID); -goto ask; -- cgit v1.2.1