diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/mount.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 98e31c058..9c987c988 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- allow mounting ntfs-3g partitions + (also fixes detection of Windows partitions during live installation) + Version 10.33 - 29 May 2008 - drakboot: diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 7ca29dbda..6dc312049 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -36,7 +36,7 @@ sub mount { { my @fs_modules = qw(ext3 ext4dev hfs jfs nfs ntfs romfs reiserfs ufs xfs vfat); - my @types = (qw(ext2 proc sysfs usbfs usbdevfs iso9660 devfs devpts auto), @fs_modules); + my @types = (qw(ext2 proc sysfs usbfs usbdevfs iso9660 devfs devpts auto ntfs-3g), @fs_modules); push @types, 'smb', 'smbfs', 'davfs2' if !$::isInstall; |