summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 3ec11a021..b537263f7 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -15,6 +15,7 @@ use modules;
use run_program;
use lilo;
use lang;
+use raid;
use keyboard;
use printer;
use pkgs;
@@ -166,7 +167,7 @@ sub choosePartitionsToFormat($$) {
sub formatPartitions {
my $o = shift;
foreach (@_) {
- fs::format_part($_) if $_->{toFormat};
+ raid::format_part($o->{raid}, $_) if $_->{toFormat};
}
}