platforms/rootfs-base: install qemu-aarch64 static binary

This commit is contained in:
Silvan Calarco 2024-06-19 18:09:55 +02:00
parent 37f92902a5
commit 391132ed43

View File

@ -0,0 +1,4 @@
# aarch64: install qemu static binary to allow emulated run from x86_64
if [ "$ARCH" = "aarch64" ]; then
cp /usr/bin/qemu-aarch64.static $MOUNTDIR/usr/bin/qemu-aarch64
fi