diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-11-25 13:41:59 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-11-25 13:41:59 +0000 |
commit | 3c750d77a95e0f03e17c5f6835660af147811bc4 (patch) | |
tree | 90264fd68f67a0396f3e716b61e653596182a4d4 /perl-install | |
parent | 8e0fca8382455e95e2ac5c70ee656f27b1a5b821 (diff) | |
download | drakx-3c750d77a95e0f03e17c5f6835660af147811bc4.tar drakx-3c750d77a95e0f03e17c5f6835660af147811bc4.tar.gz drakx-3c750d77a95e0f03e17c5f6835660af147811bc4.tar.bz2 drakx-3c750d77a95e0f03e17c5f6835660af147811bc4.tar.xz drakx-3c750d77a95e0f03e17c5f6835660af147811bc4.zip |
add btrfs to true local fs list
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 42a11f9c6..7fe680c99 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -311,7 +311,7 @@ sub type_subpart_from_magic { sub defaultFS { 'ext4' } -sub true_local_fs_types() { qw(ext3 ext2 ext4 reiserfs reiser4 xfs jfs) } +sub true_local_fs_types() { qw(btrfs ext3 ext2 ext4 reiserfs reiser4 xfs jfs) } sub isEmpty { !$_[0]{fs_type} && $_[0]{pt_type} == 0 } sub isEfi { arch() =~ /ia64/ && $_[0]{pt_type} == 0xef } |