From 90dd78b9416763ec219ef71e221c50024e767651 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 1 Mar 2001 16:53:12 +0000 Subject: add handling for cciss (compaq smart array alike) --- perl-install/fs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/fs.pm') diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 5f4e1ce95..460631607 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -82,7 +82,7 @@ sub get_mntpoints_from_fstab { sub format_ext2($@) { my ($dev, @options) = @_; - $dev =~ m,(rd|ida)/, and push @options, qw(-b 4096 -R stride=16); #- For RAID only. + $dev =~ m,(rd|ida|cciss)/, and push @options, qw(-b 4096 -R stride=16); #- For RAID only. push @options, qw(-b 1024 -O none) if arch() =~ /alpha/; run_program::run("mke2fs", @options, devices::make($dev)) or die _("%s formatting of %s failed", "ext2", $dev); -- cgit v1.2.1