mirror of
https://github.com/dockur/windows.git
synced 2026-07-28 21:53:34 +07:00
fix: Use qemu32 for x86 Windows versions (#1994)
This commit is contained in:
+8
-8
@@ -736,14 +736,7 @@ setMachine() {
|
|||||||
"winxpx86"* )
|
"winxpx86"* )
|
||||||
DISK_TYPE="ide"
|
DISK_TYPE="ide"
|
||||||
BOOT_MODE="windows_legacy"
|
BOOT_MODE="windows_legacy"
|
||||||
[ -z "${SOUND:-}" ] && SOUND="usb-audio"
|
[ -z "${SOUND:-}" ] && SOUND="usb-audio" ;;
|
||||||
|
|
||||||
if [ -z "${CPU_MODEL:-}" ] || [[ "${CPU_MODEL:-}" == "host" ]]; then
|
|
||||||
# Workaround for boot loop on AMD EPYC processors
|
|
||||||
if [[ "${id,,}" == "winxpx86"* && "${CPU,,}" == *"amd epyc"* ]]; then
|
|
||||||
CPU_MODEL="qemu32"
|
|
||||||
fi
|
|
||||||
fi ;;
|
|
||||||
|
|
||||||
"win2003"* | "winxpx64"* )
|
"win2003"* | "winxpx64"* )
|
||||||
DISK_TYPE="blk"
|
DISK_TYPE="blk"
|
||||||
@@ -760,8 +753,15 @@ setMachine() {
|
|||||||
"winxp"* | "win2003"* | "winvistax86"* | "win7x86"* | "win2008r2x86"* )
|
"winxp"* | "win2003"* | "winvistax86"* | "win7x86"* | "win2008r2x86"* )
|
||||||
|
|
||||||
if isQ35 "${MACHINE:-q35}"; then
|
if isQ35 "${MACHINE:-q35}"; then
|
||||||
|
|
||||||
|
# Fix instability on AMD EPYC processors
|
||||||
|
if [ -z "${CPU_MODEL:-}" ] && [[ "${id,,}" == *"x86"* ]]; then
|
||||||
|
CPU_MODEL="qemu32"
|
||||||
|
fi
|
||||||
|
|
||||||
# Prevent bluescreen if 64 bit PCI hole size is >2G.
|
# Prevent bluescreen if 64 bit PCI hole size is >2G.
|
||||||
ARGS="-global q35-pcihost.x-pci-hole64-fix=false"
|
ARGS="-global q35-pcihost.x-pci-hole64-fix=false"
|
||||||
|
|
||||||
fi ;;
|
fi ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user