diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-07 19:41:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-07 19:41:07 +0000 |
commit | 99d9dfd2992113e3162d7bc259b301a355738c4b (patch) | |
tree | 1ad2f3c5b3e7e910f126fa2534b21d5e53b8bdfa | |
parent | e75205461b35a7e529ce72300959cce519006a09 (diff) | |
download | drakx-backup-do-not-use-99d9dfd2992113e3162d7bc259b301a355738c4b.tar drakx-backup-do-not-use-99d9dfd2992113e3162d7bc259b301a355738c4b.tar.gz drakx-backup-do-not-use-99d9dfd2992113e3162d7bc259b301a355738c4b.tar.bz2 drakx-backup-do-not-use-99d9dfd2992113e3162d7bc259b301a355738c4b.tar.xz drakx-backup-do-not-use-99d9dfd2992113e3162d7bc259b301a355738c4b.zip |
nicer names for journalised fs
-rw-r--r-- | perl-install/partition_table.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index c3e7fe2fc..b7b5b7658 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', 'JFS', 'ext3', 'DOS FAT16', 'Win98 FAT32')); + @important_types = ('Linux native', 'Linux swap', if_(arch() =~ /i.86/, 'Journalised FS: ReiserFS', 'Journalised FS: JFS', 'Journalised FS: ext3', 'DOS FAT16', 'Win98 FAT32')); } @important_types2 = ('Linux RAID', 'Linux Logical Volume Manager partition'); @@ -33,10 +33,10 @@ arch() =~ /^ppc/ ? ( 0x401 => 'Apple Bootstrap', 0x402 => 'Apple HFS Partition', ) : arch() =~ /^i.86/ ? ( - 0x183 => 'ReiserFS', - 0x283 => 'XFS', - 0x383 => 'JFS', - 0x483 => 'ext3', + 0x183 => 'Journalised FS: ReiserFS', + 0x283 => 'Journalised FS: XFS', + 0x383 => 'Journalised FS: JFS', + 0x483 => 'Journalised FS: ext3', ) : arch() =~ /^sparc/ ? ( 0x1 => 'SunOS boot', 0x2 => 'SunOS root', |