From e5ac7786bda1db64778b51a80136fa2e3e2e93d0 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Thu, 19 Dec 2024 17:01:34 +0100 Subject: [PATCH] CI: Fix FreeBSD 13.4 STABLE build In #16869 we added FreeBSD 13.4 STABLE, but forget the special thing, that the virtio nic within FreeBSD 13.x is buggy. This fix adds the needed rtl8139 nic to the VM. Reviewed-by: George Melikov Reviewed-by: Alexander Motin Signed-off-by: Tino Reichardt Closes #16885 --- .github/workflows/scripts/qemu-2-start.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scripts/qemu-2-start.sh b/.github/workflows/scripts/qemu-2-start.sh index f0f505cac..0906e438a 100755 --- a/.github/workflows/scripts/qemu-2-start.sh +++ b/.github/workflows/scripts/qemu-2-start.sh @@ -93,6 +93,7 @@ case "$OS" in OSv="freebsd13.0" URLzs="$FREEBSD/amd64-freebsd-13.4-STABLE.qcow2.zst" BASH="/usr/local/bin/bash" + NIC="rtl8139" ;; freebsd14-2s) OSNAME="FreeBSD 14.2-STABLE"