From 72704684dd90162bcc7fd2b5d11fad4e382a0bf6 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sat, 13 Nov 2021 15:53:18 +0000 Subject: [PATCH] Replace incorrect references to AuthenticIntel with GenuineIntel #223 --- quickemu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickemu b/quickemu index 6e3e78f..db8a5cc 100755 --- a/quickemu +++ b/quickemu @@ -241,7 +241,7 @@ function vm_boot() { HOST_CPU_VENDOR=$(lscpu | grep -E 'Vendor' | cut -d':' -f2 | sed 's/ //g') # A CPU with Intel VT-x / AMD SVM support is required - if [ "${HOST_CPU_VENDOR}" == "AuthenticIntel" ]; then + if [ "${HOST_CPU_VENDOR}" == "GenuineIntel" ]; then if ! check_cpu_flag vmx; then echo "ERROR! Intel VT-x support is required." exit 1 @@ -449,7 +449,7 @@ function vm_boot() { # A CPU with SSE4.1 support is required for >= macOS Sierra if check_cpu_flag sse4_1; then case ${HOST_CPU_VENDOR} in - AuthenticIntel) + GenuineIntel) CPU="-cpu host,kvm=on,vendor=GenuineIntel,+hypervisor,+invtsc,+kvm_pv_eoi,+kvm_pv_unhalt";; AuthenticAMD|*) # Used in past versions: +movbe,+smep,+xgetbv1,+xsavec,+avx2