diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-06-14 12:02:30 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-06-14 12:02:30 +0000 |
commit | 90521022de7f69dd97bcbff55e966f767ceae437 (patch) | |
tree | 6bdb96457046cae34d91b2a1a0dac05cb4bc0a7e /perl-install/any.pm | |
parent | cd3d662080f9f11ac994972755081764e8c11cd4 (diff) | |
download | drakx-90521022de7f69dd97bcbff55e966f767ceae437.tar drakx-90521022de7f69dd97bcbff55e966f767ceae437.tar.gz drakx-90521022de7f69dd97bcbff55e966f767ceae437.tar.bz2 drakx-90521022de7f69dd97bcbff55e966f767ceae437.tar.xz drakx-90521022de7f69dd97bcbff55e966f767ceae437.zip |
use vmlinuz like other archs, fix yaboot setup for seperate /boot partition
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index d21b5eeed..2fe5e0eca 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -246,10 +246,7 @@ You can add some more or change the existing ones."), my @l; if ($e->{type} eq "image") { @l = ( -arch =~ /ppc/ ? -({ label => _("Image"), val => \$e->{kernel_or_dev}, list => [ map { s/$prefix//; $_ } glob_("$prefix/boot/vmlinux*") ], not_edit => 0 }) -: -({ label => _("Image"), val => \$e->{kernel_or_dev}, list => [ map { s/$prefix//; $_ } glob_("$prefix/boot/vmlinuz*") ], not_edit => 0 }), +{ label => _("Image"), val => \$e->{kernel_or_dev}, list => [ map { s/$prefix//; $_ } glob_("$prefix/boot/vmlinuz*") ], not_edit => 0 }, { label => _("Root"), val => \$e->{root}, list => [ map { "/dev/$_->{device}" } @$fstab ], not_edit => !$::expert }, { label => _("Append"), val => \$e->{append} }, arch =~ /ppc/ ? () : ( |