Skip to content

Commit

Permalink
fix: Disable KVM on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed May 24, 2023
1 parent e0e089a commit e8e51c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions run/run.sh
Expand Up @@ -62,8 +62,10 @@ else
fi

if [ -n "${KVM_ERR}" ]; then
error "KVM acceleration not detected ${KVM_ERR}, see the FAQ about this."
[[ "${DEBUG}" != [Yy1]* ]] && exit 88
if [ "$ARCH" == "amd64" ]; then
error "KVM acceleration not detected ${KVM_ERR}, see the FAQ about this."
[[ "${DEBUG}" != [Yy1]* ]] && exit 88
fi
else
KVM_OPTS=",accel=kvm -enable-kvm -cpu host"
fi
Expand Down

0 comments on commit e8e51c6

Please sign in to comment.