diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-12-17 17:00:47 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-12-17 17:00:47 +0000 |
commit | 76232734e2a0f6e5bf4755b3a478a646a6c99c83 (patch) | |
tree | 6477cfd9962d9e920564c32476aff03515a78006 /perl-install | |
parent | 451dc32f2746f1324b30653a3df0ed341b8906df (diff) | |
download | drakx-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')
-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)); |