From c8d8767aa3dfeb049fd662080ac8cf2a7075ca56 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Fri, 23 Jun 2000 13:03:19 +0000 Subject: *** empty log message *** --- perl-install/install_steps.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install_steps.pm') diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 319a4c54a..0733ad852 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -202,7 +202,7 @@ sub choosePartitionsToFormat($$) { fsedit::typeOfPart($_->{device}); $_->{toFormatUnsure} = $_->{mntpoint} eq "/" || #- if detected dos/win, it's not precise enough to just compare the types (too many of them) - (isOtherAvailableFS({ type => $t }) ? !isOtherAvailableFS($_) : $t != $_->{type}); + (!$t || isOtherAvailableFS({ type => $t }) ? !isOtherAvailableFS($_) : $t != $_->{type}); } } } @@ -852,6 +852,7 @@ sub setupBootloader($) { # map_index { "$::i:$b->{part_nb}$_ root=$b->{root} $b->{perImageAppend}\n" } # map { /$o->{prefix}(.*)/ } eval { glob_("$o->{prefix}/boot/vmlinux*") }; } elsif (arch() =~ /^sparc/) { + silo::set_promvars($o->{fstab}, $o->{bootloader}); silo::install($o->{prefix}, $o->{bootloader}); } else { lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds}); -- cgit v1.2.1