summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/modules.pm1
-rw-r--r--perl-install/partition_table.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 92c88f185..9b8a363a4 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -218,6 +218,7 @@ if_(arch() !~ /alpha/ && arch() !~ /sparc/,
"dpt_i2o" => "Distributed Tech SmartCache/Raid I-V Controller",
"megaraid" => "AMI MegaRAID",
"aacraid" => "AACxxx Raid Controller",
+ "ataraid" => "",
"cciss" => "Compaq Smart Array 5300 Controller",
"cpqarray" => "Compaq Smart-2/P RAID Controller",
"gdth" => "ICP Disk Array Controller",
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm
index 4e5dae1ac..d16d0ccd8 100644
--- a/perl-install/partition_table.pm
+++ b/perl-install/partition_table.pm
@@ -676,7 +676,7 @@ The only solution is to move your primary partitions to have the hole next to th
sub add {
my ($hd, $part, $primaryOrExtended, $forceNoAdjust) = @_;
- get_normal_parts($hd) >= ($hd->{device} =~ /^rd/ ? 7 : $hd->{device} =~ /^(sd|ida|cciss)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached";
+ get_normal_parts($hd) >= ($hd->{device} =~ /^rd/ ? 7 : $hd->{device} =~ /^(sd|ida|cciss|ataraid)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached";
$part->{notFormatted} = 1;
$part->{isFormatted} = 0;