diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-20 15:22:24 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-11-20 16:17:09 +0100 |
commit | 205cc4fcf532216c5f37f09762889ed8363b007d (patch) | |
tree | 99d585638c9cd5d361c027f7c2ec90c42255daf8 /perl-install/fs | |
parent | 7552d0e5dde273308bd1986a2edc062e4ea0289c (diff) | |
download | drakx-205cc4fcf532216c5f37f09762889ed8363b007d.tar drakx-205cc4fcf532216c5f37f09762889ed8363b007d.tar.gz drakx-205cc4fcf532216c5f37f09762889ed8363b007d.tar.bz2 drakx-205cc4fcf532216c5f37f09762889ed8363b007d.tar.xz drakx-205cc4fcf532216c5f37f09762889ed8363b007d.zip |
Use mkfs.fat instead of mkdosfs symlink
Diffstat (limited to 'perl-install/fs')
-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 b0fbe1968..625a666a1 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -35,8 +35,8 @@ my %cmds = ( xfs => [ 'xfsprogs', 'mkfs.xfs', '-f', '-q' ], jfs => [ 'jfsutils', 'mkfs.jfs', '-f' ], hfs => [ 'hfsutils', 'hformat' ], - dos => [ 'dosfstools', 'mkdosfs' ], - vfat => [ 'dosfstools', 'mkdosfs', '-F', '32' ], + dos => [ 'dosfstools', 'mkfs.fat' ], + vfat => [ 'dosfstools', 'mkfs.fat', '-F', '32' ], exfat => [ 'exfatprogs', 'mkfs.exfat' ], swap => [ 'util-linux', 'mkswap' ], ntfs => [ 'ntfs-3g', 'mkntfs', '--fast' ], |