summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-01-05 16:57:52 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-01-05 16:57:52 +0000
commit743f3306895bfb0da0062f6f1db7031fc2f23de7 (patch)
treecd94e3589645010c8fd2d7c3928cf3ca5c4a16a7 /perl-install/fs/type.pm
parent74076cc2c94e5bf7fea146b4a7ac2e09169d7d0b (diff)
downloaddrakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar
drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.gz
drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.bz2
drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.tar.xz
drakx-743f3306895bfb0da0062f6f1db7031fc2f23de7.zip
- ext4dev is now stable and called ext4 in 2.6.28+
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index ee5769111..e59ca28bb 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -22,6 +22,7 @@ my (%type_name2pt_type, %type_name2fs_type, %fs_type2pt_type, %pt_type2fs_type,
0x82 => 'swap', 'Linux swap',
0x83 => 'ext2', 'Linux native',
0x83 => 'ext3', 'Journalised FS: ext3',
+ 0x83 => 'ext4', 'Journalised FS: ext4',
0x83 => 'reiserfs', 'Journalised FS: ReiserFS',
if_(arch() =~ /ppc|i.86|ia64|x86_64/,
0x83 => 'xfs', 'Journalised FS: XFS',
@@ -120,7 +121,6 @@ if_(arch() !~ /ppc/,
0x81 => '', 'Minix / old Linux',
if_(!$::isInstall,
0x83 => 'reiser4', 'Journalised FS: Reiser4',
- 0x83 => 'ext4dev', 'Journalised FS: ext4',
),
0x84 => '', 'OS/2 hidden C: drive',
0x86 => '', 'NTFS volume set (0x86)',
@@ -308,7 +308,7 @@ sub type_subpart_from_magic {
$p;
}
-sub true_local_fs_types() { qw(ext3 ext2 ext4dev reiserfs reiser4 xfs jfs) }
+sub true_local_fs_types() { qw(ext3 ext2 ext4 reiserfs reiser4 xfs jfs) }
sub isEmpty { !$_[0]{fs_type} && $_[0]{pt_type} == 0 }
sub isEfi { arch() =~ /ia64/ && $_[0]{pt_type} == 0xef }