1
0
mirror of https://github.com/dockur/windows.git synced 2026-07-27 21:42:36 +07:00

fix: Default to IDE disk for 32-bit WinXP versions (#1993)

This commit is contained in:
Kroese
2026-07-26 17:43:59 +02:00
committed by GitHub
parent bada80331d
commit 78ba661605
+3 -3
View File
@@ -733,8 +733,8 @@ setMachine() {
BOOT_MODE="windows_legacy"
[ -z "${ADAPTER:-}" ] && ADAPTER="rtl8139" ;;
"winxp"* )
DISK_TYPE="blk"
"winxpx86"* )
DISK_TYPE="ide"
BOOT_MODE="windows_legacy"
[ -z "${SOUND:-}" ] && SOUND="usb-audio"
@@ -745,7 +745,7 @@ setMachine() {
fi
fi ;;
"win2003"* )
"win2003"* | "winxpx64"* )
DISK_TYPE="blk"
BOOT_MODE="windows_legacy"
[ -z "${SOUND:-}" ] && SOUND="usb-audio" ;;