dosfstools: install fsck.fat and fatlabel to toolchain

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2019-07-15 20:24:57 +02:00
parent 60c0025939
commit ad6a9f656e

View File

@ -41,4 +41,7 @@ makeinstall_host() {
mkdir -p $TOOLCHAIN/sbin mkdir -p $TOOLCHAIN/sbin
cp mkfs.fat $TOOLCHAIN/sbin cp mkfs.fat $TOOLCHAIN/sbin
ln -sf mkfs.fat $TOOLCHAIN/sbin/mkfs.vfat ln -sf mkfs.fat $TOOLCHAIN/sbin/mkfs.vfat
cp fsck.fat $TOOLCHAIN/sbin
ln -sf fsck.fat $TOOLCHAIN/sbin/fsck.vfat
cp fatlabel $TOOLCHAIN/sbin
} }