diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 12:47:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 12:47:50 +0000 |
commit | 65ace13dc9c5de248e0d75d6e2076f640793528e (patch) | |
tree | 44b281e4a4b16f06834d72e7482e3cf38ebe3e9b /perl-install/fs/proc_partitions.pm | |
parent | 157c064c16a05e562cc865788faa9848f3c31d53 (diff) | |
download | drakx-65ace13dc9c5de248e0d75d6e2076f640793528e.tar drakx-65ace13dc9c5de248e0d75d6e2076f640793528e.tar.gz drakx-65ace13dc9c5de248e0d75d6e2076f640793528e.tar.bz2 drakx-65ace13dc9c5de248e0d75d6e2076f640793528e.tar.xz drakx-65ace13dc9c5de248e0d75d6e2076f640793528e.zip |
create partition_table::readonly and use it
Diffstat (limited to 'perl-install/fs/proc_partitions.pm')
-rw-r--r-- | perl-install/fs/proc_partitions.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/perl-install/fs/proc_partitions.pm b/perl-install/fs/proc_partitions.pm index 84d686c45..731797a19 100644 --- a/perl-install/fs/proc_partitions.pm +++ b/perl-install/fs/proc_partitions.pm @@ -63,11 +63,9 @@ sub compare { sub use_ { my ($hd) = @_; - - partition_table::raw::clear($hd); - $hd->{readonly} = 1; - $hd->{getting_rid_of_readonly_allowed} = 1; - $hd->{primary} = { normal => [ grep { $_->{rootDevice} eq $hd->{device} } &read([$hd]) ] }; + + require partition_table::readonly; + partition_table::readonly->initialize($hd, [ grep { $_->{rootDevice} eq $hd->{device} } &read([$hd]) ]); } 1; |