summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-01-22 21:24:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-22 21:24:32 +0000
commitcc57ba20ce1b616971ece004f6dd4c1301ce5247 (patch)
treeed09bc5734a1fce1ba861d8937a1bca77928cee3 /perl-install/partition_table.pm
parentf85da3ea0e86a4a79dbb3a8fb4dd1c5d499deebe (diff)
downloaddrakx-cc57ba20ce1b616971ece004f6dd4c1301ce5247.tar
drakx-cc57ba20ce1b616971ece004f6dd4c1301ce5247.tar.gz
drakx-cc57ba20ce1b616971ece004f6dd4c1301ce5247.tar.bz2
drakx-cc57ba20ce1b616971ece004f6dd4c1301ce5247.tar.xz
drakx-cc57ba20ce1b616971ece004f6dd4c1301ce5247.zip
handle extended partitions with no partitions inside (esp. for the first hda5 & windows XP)
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r--perl-install/partition_table.pm50
1 files changed, 33 insertions, 17 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm
index cf4abf2b8..d1f47079e 100644
--- a/perl-install/partition_table.pm
+++ b/perl-install/partition_table.pm
@@ -485,8 +485,17 @@ sub read($;$) {
undef $hd->{extended};
verifyPrimary($pt);
eval {
- $pt->{extended} and read_extended($hd, $pt->{extended}) || return 0;
- }; die "extended partition: $@" if $@;
+ my $need_removing_empty_extended;
+ $pt->{extended} and read_extended($hd, $pt->{extended}, \$need_removing_empty_extended) || return 0;
+
+ if ($need_removing_empty_extended) {
+ #- special case when hda5 is empty, it must be skipped
+ #- (windows XP generates such partition tables)
+ remove_empty_extended($hd); #- includes adjust_main_extended
+ }
+
+ };
+ die "extended partition: $@" if $@;
assign_device_numbers($hd);
remove_empty_extended($hd);
@@ -494,7 +503,7 @@ sub read($;$) {
}
sub read_extended {
- my ($hd, $extended) = @_;
+ my ($hd, $extended, $need_removing_empty_extended) = @_;
my $pt = read_one($hd, $extended->{start}) or return 0;
$pt = { %$extended, %$pt };
@@ -502,25 +511,32 @@ sub read_extended {
push @{$hd->{extended}}, $pt;
@{$hd->{extended}} > 100 and die "oops, seems like we're looping here :( (or you have more than 100 extended partitions!)";
- @{$pt->{normal}} <= 1 or die "more than one normal partition in extended partition";
- @{$pt->{normal}} >= 1 or cdie "no normal partition in extended partition";
- $pt->{normal} = $pt->{normal}[0];
- #- in case of extended partitions, the start sector is local to the partition or to the first extended_part!
- $pt->{normal}{start} += $pt->{start};
-
- #- the following verification can broke an existing partition table that is
- #- correctly read by fdisk or cfdisk. maybe the extended partition can be
- #- recomputed to get correct size.
- if (!verifyInside($pt->{normal}, $extended)) {
- $extended->{size} = $pt->{normal}{start} + $pt->{normal}{size};
- verifyInside($pt->{normal}, $extended) or die "partition $pt->{normal}{device} is not inside its extended partition";
+ if (@{$pt->{normal}} == 0) {
+ $$need_removing_empty_extended = 1;
+ delete $pt->{normal};
+ print "need_removing_empty_extended\n";
+ } elsif (@{$pt->{normal}} > 1) {
+ die "more than one normal partition in extended partition";
+ } else {
+ $pt->{normal} = $pt->{normal}[0];
+ #- in case of extended partitions, the start sector is local to the partition or to the first extended_part!
+ $pt->{normal}{start} += $pt->{start};
+
+ #- the following verification can broke an existing partition table that is
+ #- correctly read by fdisk or cfdisk. maybe the extended partition can be
+ #- recomputed to get correct size.
+ if (!verifyInside($pt->{normal}, $extended)) {
+ $extended->{size} = $pt->{normal}{start} + $pt->{normal}{size};
+ verifyInside($pt->{normal}, $extended) or die "partition $pt->{normal}{device} is not inside its extended partition";
+ }
}
if ($pt->{extended}) {
$pt->{extended}{start} += $hd->{primary}{extended}{start};
- read_extended($hd, $pt->{extended}) or return 0;
+ return read_extended($hd, $pt->{extended}, $need_removing_empty_extended);
+ } else {
+ 1;
}
- 1;
}
# write the partition table