From e43c678ac3629e23f01087e12313a4e0eba86b16 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Thu, 19 Dec 2024 08:25:36 +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. Signed-off-by: Tino Reichardt --- .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 f0f505cac4b7..0906e438ac0d 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"