Solved Assertion failed: (baridx == 0), function pci_fbuf_write, file pci_fbuf.c, line 134

Hi,

After 'pkg upgrade' when running bhyve
Bash:
sudo bhyve -c 8,sockets=2,cores=2,threads=2 -m 16G -H -w -S -A \
  -s 0,hostbridge \
  -s 3,ahci-cd,/neat/iso/Win10_21H1_Russian_x64.iso \
  -s 4,ahci-hd,/neat/bsd/vms/w10.img \
  -s 5,virtio-net,tap0 \
  -s 7,passthru,94/0/0 \
  -s 8,hda,play=/dev/dsp,rec=/dev/dsp \
  -s 29,fbuf,tcp=0.0.0.0:5900,w=1920,h=1200,wait \
  -s 30,xhci,tablet \
  -s 31,lpc \
  -l com1,stdio \
  -l bootrom,/usr/local/share/uefi-firmware/BHYVE_UEFI.fd \
  w10
I get an error just like this one - https://lists.freebsd.org/archives/freebsd-virtualization/2022-February/000477.html

Bash:
[lanin@freebsd ~]$ uname -aKU
FreeBSD freebsd 13.2-RELEASE-p4 FreeBSD 13.2-RELEASE-p4 GENERIC amd64 1302001 1302001

[lanin@freebsd ~]$ pkg info bhyve*
bhyve+-0.1.0
bhyve-firmware-1.0_1

[lanin@freebsd ~]$ pkg info pkg
pkg-1.20.8
Name           : pkg
Version        : 1.20.8
Installed on   : Fri Oct 20 08:47:20 2023 MSK
...
 
this helped:
Bash:
sudo pkg delete bhyve-firmware
sudo pkg delete bhyve+
sudo pkg install bhyve+
 
Back
Top