diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-05-30 10:10:44 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-05-30 10:10:44 +0000 |
commit | 3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9 (patch) | |
tree | 7997eca9ed89f577e44ae6b047ca29bd167f3492 /perl-install | |
parent | 9b9f0e136bf7e2e77e7d52065e82f03843cd1921 (diff) | |
download | drakx-3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9.tar drakx-3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9.tar.gz drakx-3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9.tar.bz2 drakx-3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9.tar.xz drakx-3ed535b297c0f7f036d1c5cc6c8cc7ff955192f9.zip |
allow mounting ntfs-3g partitions (also fixes detection of Windows partitions during live installation)
Diffstat (limited to 'perl-install')
-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; |