Add all mtools during host install step.

Especially mattrib which is used by syslinux.mtools during make image

When absent, this error is observed:

make image

> image: installing extlinux to part1...
> sh: mattrib: command not found
> syslinux.mtools: warning: failed to set system bit on ldlinux.sys
> sh: mattrib: command not found
> syslinux.mtools: warning: failed to set system bit on ldlinux.c32
> image: copying files to part1...
This commit is contained in:
aluft 2016-02-25 13:43:41 -05:00
parent 481a5470e4
commit 70e279dddb

View File

@ -36,5 +36,5 @@ makeinstall_host() {
$STRIP mtools
mkdir -p $ROOT/$TOOLCHAIN/sbin
cp -P mtools mformat mcopy mmd $ROOT/$TOOLCHAIN/sbin
find . -type l -exec cp -P \{\} $ROOT/$TOOLCHAIN/sbin \;
}