summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-08-02 14:44:33 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-08-02 14:44:33 +0000
commit6df138bc0f74b9d6869f69c9fb662f851026e6c8 (patch)
tree4fa4d1dc6067dd7f7d770965ed1acf99db9dc823 /perl-install/partition_table.pm
parentc1642859374aeaf9481998672b249785b90389b5 (diff)
downloaddrakx-backup-do-not-use-6df138bc0f74b9d6869f69c9fb662f851026e6c8.tar
drakx-backup-do-not-use-6df138bc0f74b9d6869f69c9fb662f851026e6c8.tar.gz
drakx-backup-do-not-use-6df138bc0f74b9d6869f69c9fb662f851026e6c8.tar.bz2
drakx-backup-do-not-use-6df138bc0f74b9d6869f69c9fb662f851026e6c8.tar.xz
drakx-backup-do-not-use-6df138bc0f74b9d6869f69c9fb662f851026e6c8.zip
JFS support
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r--perl-install/partition_table.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm
index c667f2d1a..4f42120ec 100644
--- a/perl-install/partition_table.pm
+++ b/perl-install/partition_table.pm
@@ -18,7 +18,7 @@ use log;
if (arch() =~ /ppc/) {
@important_types = ('Linux native', 'Linux swap', 'Apple HFS Partition', 'Apple Bootstrap');
} else {
- @important_types = ('Linux native', 'Linux swap', if_(arch() =~ /i.86/, 'ReiserFS', 'DOS FAT16', 'Win98 FAT32'));
+ @important_types = ('Linux native', 'Linux swap', if_(arch() =~ /i.86/, 'ReiserFS', 'JFS', 'DOS FAT16', 'Win98 FAT32'));
}
@important_types2 = ('Linux RAID', 'Linux Logical Volume Manager partition');
@@ -35,6 +35,7 @@ arch() =~ /^ppc/ ? (
) : arch() =~ /^i.86/ ? (
0x183 => 'ReiserFS',
0x283 => 'XFS',
+ 0x383 => 'JFS',
) : arch() =~ /^sparc/ ? (
0x1 => 'SunOS boot',
0x2 => 'SunOS root',