From ace30551fcf8f7607e1dba6a57142940391504ea Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 6 Dec 2021 11:38:26 +0000 Subject: [PATCH] Always disable S3 on WIndows This should prevent fresh installs from failing during the multiple reboots --- quickemu | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quickemu b/quickemu index 144c4cf..00e2a94 100755 --- a/quickemu +++ b/quickemu @@ -523,9 +523,7 @@ function vm_boot() { # Disable S3 support in the VM to ensure Windows can boot with SecureBoot enabled # - https://wiki.archlinux.org/title/QEMU#VM_does_not_boot_when_using_a_Secure_Boot_enabled_OVMF - if [ "${secureboot}" == "on" ]; then - GUEST_TWEAKS="${GUEST_TWEAKS} -global ICH9-LPC.disable_s3=1" - fi + GUEST_TWEAKS="${GUEST_TWEAKS} -global ICH9-LPC.disable_s3=1" if [ -z "${disk_size}" ]; then disk_size="64G"