diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-03 19:21:23 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-03 19:21:23 +0000 |
commit | e91199e98f49220709034a58cafe5a7567d5cbf2 (patch) | |
tree | 78c3173b3e50c7ca043f88622f11f175da85e26c /perl-install | |
parent | f27df54eeedf0be8c6094231e386d8b145b64161 (diff) | |
download | drakx-backup-do-not-use-e91199e98f49220709034a58cafe5a7567d5cbf2.tar drakx-backup-do-not-use-e91199e98f49220709034a58cafe5a7567d5cbf2.tar.gz drakx-backup-do-not-use-e91199e98f49220709034a58cafe5a7567d5cbf2.tar.bz2 drakx-backup-do-not-use-e91199e98f49220709034a58cafe5a7567d5cbf2.tar.xz drakx-backup-do-not-use-e91199e98f49220709034a58cafe5a7567d5cbf2.zip |
(hds): detect LVMs and return them
(add): handling of LVMs
(@partitions_signatures): add new magic of reiserfs
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 8572bd831..99db9f20f 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -43,6 +43,7 @@ my @suggestions_mntpoints = ( my @partitions_signatures = ( [ 0x83, 0x438, "\x53\xEF" ], [ 0x183, 0x10034, "ReIsErFs" ], + [ 0x183, 0x10034, "ReIsEr2Fs" ], [ 0x82, 4086, "SWAP-SPACE" ], [ 0x7, 0x1FE, "\x55\xAA", 0x3, "NTFS" ], [ 0xc, 0x1FE, "\x55\xAA", 0x52, "FAT32" ], @@ -58,7 +59,7 @@ sub typeOfPart { typeFromMagic(devices::make($_[0]), @partitions_signatures) } #-###################################################################################### sub hds { my ($drives, $flags) = @_; - my @hds; + my (@hds, @lvms); my $rc; foreach (@$drives) { @@ -83,9 +84,27 @@ sub hds { my $type = typeOfPart($_->{device}); $_->{type} = $type if $type > 0x100; } + + if (my @lvms = grep { isLVM($_) } partition_table::get_normal_parts($hd)) { + require lvm; + foreach (@lvms) { + my $name = lvm::get_vg($_) or next; + my ($lvm) = grep { $_->{LVMname} eq $name } @hds; + if (!$lvm) { + $lvm = bless { disks => [], LVMname => $name, level => 'linear' }, 'lvm'; + lvm::update_size($lvm); + lvm::get_lvs($lvm); + push @lvms, $lvm; + } + $_->{lvm} = $name; + push @{$lvm->{disks}}, $_; + } + } + + push @hds, $hd; } - [ @hds ]; + \@hds, \@lvms; } sub readProcPartitions { @@ -279,7 +298,12 @@ sub add($$$;$) { $options->{force} || check_mntpoint($part->{mntpoint}, $hd, $part, $hds); delete $part->{maxsize}; - partition_table::add($hd, $part, $options->{primaryOrExtended}); + + if (isLVMBased($hd)) { + lvm::lv_create($hd, $part); + } else { + partition_table::add($hd, $part, $options->{primaryOrExtended}); + } } sub allocatePartitions($$) { |