On 28/06/2017 22:08, Radim Krčmář wrote: > -if [ "$ACCEL" = "kvm" ] && [ "$kvm_available" != "yes" ]; then > - echo "KVM is needed, but not available on this host" > +ACCEL=$(get_accel '([ "$HOST" = "arm" ] && [ "$ARCH" = "arm" ]) || [ "$HOST" = "aarch64" ]') || > exit 2 Should x86 do the same as ARM (follow-up patch)? And maybe the test could move from an argument of get_accel to a function "arch_kvm_available" that returns 0 if available and 1 if not? Paolo