diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-10-08 16:43:48 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-10-08 16:43:48 +0000 |
commit | 0ee135141e9cadcb581c0caf1c9e7d44d57aaa63 (patch) | |
tree | 499adfc64458c93d23016e83f18cf25e490724af /perl-install | |
parent | dd73877eb8d8273c00d390359b6478eefa4ab26a (diff) | |
download | drakx-backup-do-not-use-0ee135141e9cadcb581c0caf1c9e7d44d57aaa63.tar drakx-backup-do-not-use-0ee135141e9cadcb581c0caf1c9e7d44d57aaa63.tar.gz drakx-backup-do-not-use-0ee135141e9cadcb581c0caf1c9e7d44d57aaa63.tar.bz2 drakx-backup-do-not-use-0ee135141e9cadcb581c0caf1c9e7d44d57aaa63.tar.xz drakx-backup-do-not-use-0ee135141e9cadcb581c0caf1c9e7d44d57aaa63.zip |
yet a few other ataraid cases
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/modules.pm | 1 | ||||
-rw-r--r-- | perl-install/partition_table.pm | 2 |
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; |