Update entry.sh

This commit is contained in:
Kroese 2024-06-02 19:22:08 +02:00 committed by GitHub
parent a15d23663b
commit 7e76ebc34e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,4 +19,8 @@ trap - ERR
info "Booting image${BOOT_DESC}..."
exec qemu-system-aarch64 ${ARGS:+ $ARGS}
if [ -z "$CPU_PIN" ]; then
exec qemu-system-aarch64 ${ARGS:+ $ARGS}
else
taskset -c "$CPU_TASK_SET" exec qemu-system-aarch64 ${ARGS:+ $ARGS}
fi