diff options
| author | Pascal Terjan <pterjan@mageia.org> | 2025-12-21 17:15:25 +0000 |
|---|---|---|
| committer | Pascal Terjan <pterjan@mageia.org> | 2025-12-21 17:17:03 +0000 |
| commit | 30df90dd27d4227d22877e236618e50caf7e8f2e (patch) | |
| tree | a7ca49749e05290c8b837158be8b5eadeadbde98 | |
| parent | 82be67c134bb37df7e2a0e5fee0b6da29ebc1b49 (diff) | |
| download | drakx-master.tar drakx-master.tar.gz drakx-master.tar.bz2 drakx-master.tar.xz drakx-master.zip | |
We most likely should rewrite this part as we should not need to
load the modules manually before mounting nowadays, so it could be
made generic.
| -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 6afaa9260..65d4e6977 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 f2fs hfs jfs nilfs2 nfs ntfs romfs reiserfs ufs xfs vfat); + my @fs_modules = qw(btrfs exfat ext3 ext4 f2fs hfs jfs nilfs2 nfs ntfs romfs reiserfs ufs xfs vfat); my @types = (qw(ext2 proc sysfs iso9660 devpts auto ntfs-3g), @fs_modules); push @types, 'smb', 'cifs', 'davfs2' if !$::isInstall; |
