From 57019e72ddaee32fabb2730869c442aaee4a7642 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 14 May 2024 18:35:12 +0100 Subject: [PATCH] wip: disable VT-d for testing --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 8381ba2..821f2f8 100755 --- a/quickemu +++ b/quickemu @@ -288,7 +288,7 @@ function configure_cpu() { if [ "${HOST_CPU_VENDOR}" == "GenuineIntel" ]; then if ! check_cpu_flag vmx; then echo "ERROR! Intel VT-x support is required." - exit 1 + #exit 1 fi elif [ "${HOST_CPU_VENDOR}" == "AuthenticAMD" ]; then if ! check_cpu_flag svm; then