summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-12-17 17:00:47 +0000
committerThierry Vignaud <tv@mandriva.org>2008-12-17 17:00:47 +0000
commit76232734e2a0f6e5bf4755b3a478a646a6c99c83 (patch)
tree6477cfd9962d9e920564c32476aff03515a78006 /perl-install/partition_table.pm
parent451dc32f2746f1324b30653a3df0ed341b8906df (diff)
downloaddrakx-76232734e2a0f6e5bf4755b3a478a646a6c99c83.tar
drakx-76232734e2a0f6e5bf4755b3a478a646a6c99c83.tar.gz
drakx-76232734e2a0f6e5bf4755b3a478a646a6c99c83.tar.bz2
drakx-76232734e2a0f6e5bf4755b3a478a646a6c99c83.tar.xz
drakx-76232734e2a0f6e5bf4755b3a478a646a6c99c83.zip
(add) kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r--perl-install/partition_table.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm
index 1ff4936db..38f4a720a 100644
--- a/perl-install/partition_table.pm
+++ b/perl-install/partition_table.pm
@@ -567,7 +567,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} =~ /^(sd|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|ataraid)/ ? 15 : 63) and cdie "maximum number of partitions handled by linux reached";
set_isFormatted($part, 0);
put_in_hash($part, hd2minimal_part($hd));