diff options
author | Thierry.Vignaud <thierry.vignaud@gmail.com> | 2014-06-18 15:00:37 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-06-18 22:13:34 +0200 |
commit | 7d16840ea981e14d844b57510a7cbd2c551dd739 (patch) | |
tree | dcc5de1fbc296ce3686c16168050e15db8b9523e /perl-install/partition_table.pm | |
parent | 7a3f8148f986d116ac15ea4436bd4afe8ddd8e5d (diff) | |
download | drakx-7d16840ea981e14d844b57510a7cbd2c551dd739.tar drakx-7d16840ea981e14d844b57510a7cbd2c551dd739.tar.gz drakx-7d16840ea981e14d844b57510a7cbd2c551dd739.tar.bz2 drakx-7d16840ea981e14d844b57510a7cbd2c551dd739.tar.xz drakx-7d16840ea981e14d844b57510a7cbd2c551dd739.zip |
remove support for ataraid
was killed in kernel on 2002-08-16, obsolete since kernel-2.6...
See https://git.kernel.org/cgit/linux/kernel/git/tglx/history.git/commit/?id=12105c896098faf822e882f3495fee485c2ebaa5
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 79d108d3d..227417dd5 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -560,7 +560,7 @@ The only solution is to move your primary partitions to have the hole next to th sub add { my ($hd, $part, $b_primaryOrExtended, $b_forceNoAdjust) = @_; - get_normal_parts($hd) >= ($hd->{device} =~ /^rd/ ? 7 : $hd->{device} =~ /^(ida|cciss|ataraid)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached"; + get_normal_parts($hd) >= ($hd->{device} =~ /^rd/ ? 7 : $hd->{device} =~ /^(ida|cciss)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached"; set_isFormatted($part, 0); put_in_hash($part, hd2minimal_part($hd)); |