diff options
author | Stew Benedict <stewb@mandriva.org> | 2001-12-11 15:04:49 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2001-12-11 15:04:49 +0000 |
commit | 90793c382655307ca3e2c23a838084ae88d39b03 (patch) | |
tree | cd7e6552cc3dcbd732cab5fb86282e27763f2913 /perl-install/partition_table_mac.pm | |
parent | ff6c12f0ceb79027381fcaa32db851072f2e8387 (diff) | |
download | drakx-90793c382655307ca3e2c23a838084ae88d39b03.tar drakx-90793c382655307ca3e2c23a838084ae88d39b03.tar.gz drakx-90793c382655307ca3e2c23a838084ae88d39b03.tar.bz2 drakx-90793c382655307ca3e2c23a838084ae88d39b03.tar.xz drakx-90793c382655307ca3e2c23a838084ae88d39b03.zip |
finish journalled fs usage - PPC, add "\n" keyboard.pm, new modelines
Diffstat (limited to 'perl-install/partition_table_mac.pm')
-rw-r--r-- | perl-install/partition_table_mac.pm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/perl-install/partition_table_mac.pm b/perl-install/partition_table_mac.pm index d1f65a6db..5c06b8a7e 100644 --- a/perl-install/partition_table_mac.pm +++ b/perl-install/partition_table_mac.pm @@ -19,6 +19,10 @@ my %typeToDos = ( "Apple_Patches" => 0x401, "Apple_HFS" => 0x402, "Apple_UNIX_SVR2" => 0x83, + "Apple_UNIX_SVR2" => 0x183, + "Apple_UNIX_SVR2" => 0x283, + "Apple_UNIX_SVR2" => 0x383, + "Apple_UNIX_SVR2" => 0x483, "Apple_Free" => 0x0, ); my %typeFromDos = reverse %typeToDos; @@ -307,6 +311,22 @@ sub write($$$;$) { $_->{pType} = "Apple_UNIX_SVR2"; $_->{pName} = "Linux Native"; $_->{pFlags} = 0x33; + } elsif ($_->{type} == 0x183) { + $_->{pType} = "Apple_UNIX_SVR2"; + $_->{pName} = "Linux ReiserFS"; + $_->{pFlags} = 0x33; + } elsif ($_->{type} == 0x283) { + $_->{pType} = "Apple_UNIX_SVR2"; + $_->{pName} = "Linux XFS"; + $_->{pFlags} = 0x33; + } elsif ($_->{type} == 0x383) { + $_->{pType} = "Apple_UNIX_SVR2"; + $_->{pName} = "Linux JFS"; + $_->{pFlags} = 0x33; + } elsif ($_->{type} == 0x483) { + $_->{pType} = "Apple_UNIX_SVR2"; + $_->{pName} = "Linux ext3"; + $_->{pFlags} = 0x33; } elsif ($_->{type} == 0x0) { $_->{pType} = "Apple_Free"; $_->{pName} = "Extra"; |