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/partition_table.pm | |
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/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; |