feat: CPU pinning on Rockchip Orange Pi 5 (#99)

This commit is contained in:
Kroese 2024-06-02 19:47:46 +02:00 committed by GitHub
parent b862a76ba1
commit 781060bbd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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