Skip to content

Commit

Permalink
chroot: more logging
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Nelson <[email protected]>
  • Loading branch information
RobertCNelson committed May 20, 2021
1 parent b99200e commit 4b7dd99
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/chroot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,18 @@ check_defines

if [ "x${host_arch}" != "xarmv7l" ] && [ "x${host_arch}" != "xaarch64" ] ; then
if [ "x${deb_arch}" = "xarmel" ] || [ "x${deb_arch}" = "xarmhf" ] ; then
echo "sudo cp -v $(which qemu-arm-static) \"${tempdir}/usr/bin/\""
sudo cp -v $(which qemu-arm-static) "${tempdir}/usr/bin/"
fi
if [ "x${deb_arch}" = "xarm64" ] ; then
echo "sudo cp -v $(which qemu-aarch64-static) \"${tempdir}/usr/bin/\""
sudo cp -v $(which qemu-aarch64-static) "${tempdir}/usr/bin/"
fi
fi

if [ "x${host_arch}" != "xriscv64" ] ; then
if [ "x${deb_arch}" = "xriscv64" ] ; then
echo "sudo cp -v $(which qemu-riscv64-static) \"${tempdir}/usr/bin/\""
sudo cp -v $(which qemu-riscv64-static) "${tempdir}/usr/bin/"
fi
fi
Expand Down

0 comments on commit 4b7dd99

Please sign in to comment.