diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 10:23:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 10:23:17 +0000 |
commit | ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6 (patch) | |
tree | 8ecd87a34987081dc1ccd9fd596257fe0ae1f51f /perl-install/partition_table/bsd.pm | |
parent | d4dd27cd5b6a8c23baa75a0bb0eefaa6b0fa39f1 (diff) | |
download | drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.gz drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.bz2 drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.xz drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.zip |
transform ->clear_raw into the more generic ->initialize
(useful to have a more standard partition_table::lvm)
Diffstat (limited to 'perl-install/partition_table/bsd.pm')
-rw-r--r-- | perl-install/partition_table/bsd.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/partition_table/bsd.pm b/perl-install/partition_table/bsd.pm index 560a75fd9..d01f0ad7e 100644 --- a/perl-install/partition_table/bsd.pm +++ b/perl-install/partition_table/bsd.pm @@ -140,9 +140,11 @@ sub info { }; } -sub clear_raw { - my ($hd) = @_; - { raw => [ ({}) x $nb_primary ], info => info($hd) }; +sub initialize { + my ($class, $hd) = @_; + $hd->{primary} = { raw => [ ({}) x $nb_primary ], info => info($hd) }; + bless $hd, $class; +; } sub first_usable_sector { 2048 } |