From 35c7419044199ba0f422f599fee6e76019a21301 Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 23 Sep 2025 15:24:23 +0200 Subject: [PATCH] feat: Disable VMX cpu flag (#312) --- src/boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot.sh b/src/boot.sh index 87673fd..2e2d777 100644 --- a/src/boot.sh +++ b/src/boot.sh @@ -162,7 +162,7 @@ if [[ "$OSTYPE" =~ ^darwin ]]; then fi CPU_VENDOR=$(lscpu | awk '/Vendor ID/{print $3}') -DEFAULT_FLAGS="vendor=GenuineIntel,vmware-cpuid-freq=on,-pdpe1gb" +DEFAULT_FLAGS="vendor=GenuineIntel,vmx=off,vmware-cpuid-freq=on,-pdpe1gb" if [[ "$CPU_VENDOR" == "AuthenticAMD" || "${KVM:-}" == [Nn]* ]]; then [ -z "${CPU_MODEL:-}" ] && CPU_MODEL="Haswell-noTSX"