diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-08-28 10:43:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-08-28 10:43:40 +0000 |
commit | 41c3f802b30bf14cbcf33fc8545a82c2e784e4a9 (patch) | |
tree | ade6c2fe9277b70d46f5115fd03fcd73395a01fc | |
parent | a172e83b71749117be1d843bb65bd07e8dc0ee9f (diff) | |
download | drakx-41c3f802b30bf14cbcf33fc8545a82c2e784e4a9.tar drakx-41c3f802b30bf14cbcf33fc8545a82c2e784e4a9.tar.gz drakx-41c3f802b30bf14cbcf33fc8545a82c2e784e4a9.tar.bz2 drakx-41c3f802b30bf14cbcf33fc8545a82c2e784e4a9.tar.xz drakx-41c3f802b30bf14cbcf33fc8545a82c2e784e4a9.zip |
we don't support AXP's aboot anymore
-rw-r--r-- | perl-install/install/steps_interactive.pm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index a3f2a481b..72f5a9a74 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -1075,14 +1075,7 @@ sub setupBootloader { return; } } - if (arch() =~ /^alpha/) { - $o->ask_yesorno('', N("Do you want to use aboot?"), 1) or return; - catch_cdie { $o->SUPER::setupBootloader } sub { - $o->ask_yesorno('', -N("Error installing aboot, -try to force installation even if that destroys the first partition?")); - }; - } else { + { any::setupBootloader_simple($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return; any::installBootloader($o, $o->{bootloader}, $o->{all_hds}) or die "already displayed"; } |