diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-30 17:19:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-30 17:19:18 +0000 |
commit | 0cb0b07eefd3cfae46c9e2220525d5b6887c525c (patch) | |
tree | f08373c67b1088ee35e9fe42371679d5be555395 | |
parent | 446202f3261911c59e194d9883e4618753a0e5b7 (diff) | |
download | drakx-0cb0b07eefd3cfae46c9e2220525d5b6887c525c.tar drakx-0cb0b07eefd3cfae46c9e2220525d5b6887c525c.tar.gz drakx-0cb0b07eefd3cfae46c9e2220525d5b6887c525c.tar.bz2 drakx-0cb0b07eefd3cfae46c9e2220525d5b6887c525c.tar.xz drakx-0cb0b07eefd3cfae46c9e2220525d5b6887c525c.zip |
adapt to usbfs death (3/4): usbfs is dead with kernel-3.5 (and usbdevfs
is dead for quite a long time too)
-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 58d2e41ff..d929a4ecf 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -36,7 +36,7 @@ sub mount { { 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 devpts auto ntfs-3g), @fs_modules); + my @types = (qw(ext2 proc sysfs iso9660 devpts auto ntfs-3g), @fs_modules); push @types, 'smb', 'cifs', 'davfs2' if !$::isInstall; |