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/raw.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/raw.pm')
-rw-r--r-- | perl-install/partition_table/raw.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm index f84876f04..d1549239d 100644 --- a/perl-install/partition_table/raw.pm +++ b/perl-install/partition_table/raw.pm @@ -218,8 +218,8 @@ sub default_type { sub zero_MBR { my ($hd) = @_; #- force the standard partition type for the architecture - bless $hd, default_type(); - $hd->{primary} = $hd->clear_raw; + my $type = default_type(); + $type->initialize($hd); delete $hd->{extended}; if (detect_devices::is_xbox()) { my $part = { start => 1, size => 15632048, pt_type => 0x0bf, isFormatted => 1 }; |