diff options
author | Francois Pons <fpons@mandriva.com> | 2000-06-20 16:25:33 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-06-20 16:25:33 +0000 |
commit | 7f7a9b7b58dbef59e2e1a09afe682983dc7806f8 (patch) | |
tree | 8b7d537f31d92c3ba63acf1a67dd73c58ea84ab8 /perl-install/install_steps.pm | |
parent | e61090daf9ed3cfcb837287cf6717161d1179bf5 (diff) | |
download | drakx-backup-do-not-use-7f7a9b7b58dbef59e2e1a09afe682983dc7806f8.tar drakx-backup-do-not-use-7f7a9b7b58dbef59e2e1a09afe682983dc7806f8.tar.gz drakx-backup-do-not-use-7f7a9b7b58dbef59e2e1a09afe682983dc7806f8.tar.bz2 drakx-backup-do-not-use-7f7a9b7b58dbef59e2e1a09afe682983dc7806f8.tar.xz drakx-backup-do-not-use-7f7a9b7b58dbef59e2e1a09afe682983dc7806f8.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index f96d645ff..319a4c54a 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) - (isFat({ type => $t }) ? !isFat($_) : $t != $_->{type}); + (isOtherAvailableFS({ type => $t }) ? !isOtherAvailableFS($_) : $t != $_->{type}); } } } @@ -809,6 +809,7 @@ sub setupBootloaderBefore { } } elsif (arch() =~ /^sparc/) { require silo; + silo::init(); silo::suggest($o->{prefix}, $o->{bootloader}, $o->{hds}, $o->{fstab}, install_any::kernelVersion($o)); } else { require lilo; |