diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-05-21 10:35:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-05-21 10:35:42 +0000 |
commit | 6a73a2e8566ea02f885c4a260d6a3ed401dee65b (patch) | |
tree | bbfd141b980389712a40d00966e9e8c848811a8f /perl-install/fs | |
parent | 5b9c9acacf284eb20f94ece672983279c3b15d30 (diff) | |
download | drakx-6a73a2e8566ea02f885c4a260d6a3ed401dee65b.tar drakx-6a73a2e8566ea02f885c4a260d6a3ed401dee65b.tar.gz drakx-6a73a2e8566ea02f885c4a260d6a3ed401dee65b.tar.bz2 drakx-6a73a2e8566ea02f885c4a260d6a3ed401dee65b.tar.xz drakx-6a73a2e8566ea02f885c4a260d6a3ed401dee65b.zip |
- diskdrake:
o when formatting ntfs don't zero partition (#30928)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/format.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index fe6a1f952..0c5eea69d 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -21,7 +21,7 @@ my %cmds = ( dos => [ 'dosfstools', 'mkdosfs' ], vfat => [ 'dosfstools', 'mkdosfs', '-F', '32' ], swap => [ 'util-linux', 'mkswap' ], - ntfs => [ 'ntfsprogs', 'mkntfs' ], + ntfs => [ 'ntfsprogs', 'mkntfs', '--fast' ], ); my %LABELs = ( #- option, length, handled_by_mount |