diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/partition_table.pm | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 976b87e6f..6a533718b 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -6,6 +6,7 @@ - diskdrake: o --nfs: handle "host:/" (#44320) o --nfs: handle domainname not set + o kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices Version 11.73 - 15 December 2008 diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ba0e5f012..a493430ca 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,8 @@ (since the default in xorg has changed) - handle new driver: o network: sxg, w35und +- partitionning: + o kernel-2.6.28+ supports more than 15 partitions on SATA & SCSI devices Version 11.74 - 16 December 2008 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)); |