From 473b5b8333cb42627bc83af4782f72be81d971cf Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 18 Sep 2007 12:30:17 +0000 Subject: rename partition_table::raw::clear() into partition_table::initialize() --- perl-install/partition_table.pm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'perl-install/partition_table.pm') diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index 9a66afc50..e249e2a83 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -223,6 +223,29 @@ sub get_normal_parts_and_holes { grep { !isEmpty($_) || $_->{size} >= $hd->cylinder_size } @l; } +sub _default_type { + my $type = arch() =~ /ia64/ ? 'gpt' : arch() eq "alpha" ? "bsd" : arch() =~ /^sparc/ ? "sun" : arch() eq "ppc" ? "mac" : "dos"; + #- override standard mac type on PPC for IBM machines to dos + $type = "dos" if arch() =~ /ppc/ && detect_devices::get_mac_model() =~ /^IBM/; + $type; +} + +sub initialize { + my ($hd, $o_type) = @_; + + my $type = $o_type || _default_type(); + + require "partition_table/$type.pm"; + "partition_table::$type"->initialize($hd); + + delete $hd->{extended}; + if (detect_devices::is_xbox()) { + my $part = { start => 1, size => 15632048, pt_type => 0x0bf, isFormatted => 1 }; + partition_table::dos::compute_CHS($hd, $part); + $hd->{primary}{raw}[0] = $part; + } +} + sub read_primary { my ($hd) = @_; -- cgit v1.2.1