diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-04-12 16:40:47 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-04-12 16:40:47 +0000 |
commit | a638e23899551d89fc0e6b02292e0a497d43b880 (patch) | |
tree | c8a2403265a09ee8df92f59c068a35bae5d26a5c /perl-install/fs/mount.pm | |
parent | 2b8894c503675f95c52a01c85d4b3b572489384e (diff) | |
download | drakx-a638e23899551d89fc0e6b02292e0a497d43b880.tar drakx-a638e23899551d89fc0e6b02292e0a497d43b880.tar.gz drakx-a638e23899551d89fc0e6b02292e0a497d43b880.tar.bz2 drakx-a638e23899551d89fc0e6b02292e0a497d43b880.tar.xz drakx-a638e23899551d89fc0e6b02292e0a497d43b880.zip |
Add initial nilfs2 support
Diffstat (limited to 'perl-install/fs/mount.pm')
-rw-r--r-- | perl-install/fs/mount.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 2a7701e53..63db0470a 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -35,7 +35,7 @@ sub mount { $fs or log::l("not mounting $dev partition"), return; { - my @fs_modules = qw(btrfs ext3 ext4 hfs jfs nfs ntfs romfs reiserfs ufs xfs vfat); + my @fs_modules = qw(btrfs ext3 ext4 hfs jfs nilfs2 nfs ntfs romfs reiserfs ufs xfs vfat); my @types = (qw(ext2 proc sysfs usbfs usbdevfs iso9660 devfs devpts auto ntfs-3g), @fs_modules); push @types, 'smb', 'cifs', 'davfs2' if !$::isInstall; |