Unverified Commit b588f8c9 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

feat: Display KVM warning on ARM64 (#739)

parent 1f1007a0
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -9,7 +9,10 @@ set -Eeuo pipefail
: "${CPU_MODEL:=""}"
: "${DEF_MODEL:="qemu64"}"

[[ "${ARCH,,}" != "amd64" ]] && KVM="N"
if [[ "${ARCH,,}" != "amd64" ]]; then
  KVM="N"
  warn "your CPU architecture is ${ARCH^^} and cannot provide KVM acceleration for x64 instructions, this will cause a major loss of performance."
fi

if [[ "$KVM" != [Nn]* ]]; then