feat: Enable secure boot on multi-socket systems (#535)

This commit is contained in:
Kroese 2024-05-23 02:38:21 +02:00 committed by GitHub
parent b32e66bc1d
commit 0971fb7492
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,6 +146,11 @@ finishInstall() {
echo "$BOOT_MODE" > "$STORAGE/windows.mode"
fi
fi
# Enable secure boot on multi-socket systems to workaround freeze
if [ -n "$SOCKETS" ] && [[ "$SOCKETS" != "1" ]]; then
BOOT_MODE="windows_secure"
echo "$BOOT_MODE" > "$STORAGE/windows.mode"
fi
fi
fi