Compare commits

...

3 Commits

Author SHA1 Message Date
renovate[bot]
e3ba696ee1
Merge 9b54b01d69 into 6dbac13cd1 2025-11-07 05:06:27 +00:00
renovate[bot]
9b54b01d69
chore(deps): update qemux/qemu docker tag to v7.28 2025-11-07 05:06:24 +00:00
Kroese
6dbac13cd1
fix: Use pcnet network adapter for Win9x (#1558) 2025-11-07 06:06:01 +01:00
2 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
ARG VERSION_ARG="latest"
FROM scratch AS build-amd64
COPY --from=qemux/qemu:7.27 / /
COPY --from=qemux/qemu:7.28 / /
ARG TARGETARCH
ARG DEBCONF_NOWARNINGS="yes"

View File

@ -1915,16 +1915,16 @@ setMachine() {
USB="no"
VGA="cirrus"
DISK_TYPE="auto"
ADAPTER="rtl8139"
MACHINE="pc-i440fx-2.4"
BOOT_MODE="windows_legacy" ;;
BOOT_MODE="windows_legacy"
[ -z "${ADAPTER:-}" ] && ADAPTER="pcnet" ;;
"win2k"* )
VGA="cirrus"
MACHINE="pc"
USB="pci-ohci"
DISK_TYPE="auto"
ADAPTER="rtl8139"
BOOT_MODE="windows_legacy" ;;
BOOT_MODE="windows_legacy"
[ -z "${ADAPTER:-}" ] && ADAPTER="rtl8139" ;;
"winxp"* | "win2003"* )
DISK_TYPE="blk"
BOOT_MODE="windows_legacy" ;;