diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-03-11 10:21:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-03-11 10:21:50 +0000 |
commit | 93771f2b43d02f366cd7febe8c27aa6c63fcb786 (patch) | |
tree | 1bd8a2a305f4f1f14dd379edac6423e00b72f85f /perl-install/standalone/drakboot | |
parent | a1d4ee26dd2eff5c4db97ad729442a61be4930f9 (diff) | |
download | drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.gz drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.bz2 drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.tar.xz drakx-93771f2b43d02f366cd7febe8c27aa6c63fcb786.zip |
fix Stew sucks
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 4e0bdd504..e7e283c0d 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -39,7 +39,7 @@ sub lilo_choice { my $bootloader = arch() =~ /ppc/ ? bootloader::read('', '/etc/yaboot.conf') : bootloader::read('', '/etc/lilo.conf'); local ($_) = `detectloader`; - $bootloader->{methods} = { lilo => 1, grub => !!/grub/i, yaboot => 1 }; + $bootloader->{methods} = { lilo => 1, grub => !!/grub/i, if_(arch() =~ /ppc/, yaboot => 1) }; my ($all_hds) = catch_cdie { fsedit::hds([ detect_devices::hds() ], {}) } sub { 1 }; my $fstab = [ fsedit::get_all_fstab($all_hds) ]; |