diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-20 15:22:54 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-20 16:17:15 +0100 |
commit | d3b9c8793b678d632e23b2ac109673b8fd007b12 (patch) | |
tree | 50d17fac3c4e57eefc457e7cd3b88a43fed5204d /perl-install/fs/format.pm | |
parent | 205cc4fcf532216c5f37f09762889ed8363b007d (diff) | |
download | drakx-d3b9c8793b678d632e23b2ac109673b8fd007b12.tar drakx-d3b9c8793b678d632e23b2ac109673b8fd007b12.tar.gz drakx-d3b9c8793b678d632e23b2ac109673b8fd007b12.tar.bz2 drakx-d3b9c8793b678d632e23b2ac109673b8fd007b12.tar.xz drakx-d3b9c8793b678d632e23b2ac109673b8fd007b12.zip |
Use mkfs.ntfs symlink for consistency
Diffstat (limited to 'perl-install/fs/format.pm')
-rw-r--r-- | perl-install/fs/format.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 625a666a1..1fa90c29e 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -39,8 +39,8 @@ my %cmds = ( vfat => [ 'dosfstools', 'mkfs.fat', '-F', '32' ], exfat => [ 'exfatprogs', 'mkfs.exfat' ], swap => [ 'util-linux', 'mkswap' ], - ntfs => [ 'ntfs-3g', 'mkntfs', '--fast' ], - 'ntfs-3g' => [ 'ntfs-3g', 'mkntfs', '--fast' ], + ntfs => [ 'ntfs-3g', 'mkfs.ntfs', '--fast' ], + 'ntfs-3g' => [ 'ntfs-3g', 'mkfs.ntfs', '--fast' ], btrfs => [ 'btrfs-progs', 'mkfs.btrfs', '-f' ], nilfs2 => [ 'nilfs-utils', 'mkfs.nilfs2', '-f' ], ); |