bhyve FreeBSD 13.2 Bhyve, I can’t find how to correctly write the gpu parameter boot rom in the file vm_name.conf

Hello, I start virtual machines with the command (vm start vm_name)
virtual machine parameters are stored in the file vm_name.conf
I forward the GPU using the parameter passthru0="8/0/0=2:0"
I forward the sound from the video card using the parameter passthru1="8/0/1=2:1"
I can’t find how to correctly write the gpu parameter boot rom.
(bhyve_options="-s 2:0,passthru,8/0/0,rom=/vm/vm_name/quadro_p2200.rom") this option does not work.
I would appreciate your help.

vm_name.conf
Code:
loader="uefi"
graphics="yes"
graphics_port="5901"
graphics_res="1024x768"
xhci_mouse="yes"
cpu="8"
cpu_sockets="1"
cpu_cores="4"
cpu_threads="2"
memory="16G"
debug="yes"

ahci_device_limit="8"

# PCIe passthru, 8/0/0  Cedar nVidia QUADRO P2200
# PCIe passthru, 8/0/1  Cedar HDMI Audio

passthru0="8/0/0=2:0"
# bhyve_options="-s 2:0,passthru,8/0/0,rom=/vm/vm_name/quadro_p2200.rom"
passthru1="8/0/1=2:1"

network0_type="virtio-net"
network0_switch="public0"

disk0_type="ahci-hd"
disk0_name="/vm/vm_name/win.raw"
utctime="no"

uuid="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
network0_mac="xx:xx:xx:xx:xx:xx"
 
Back
Top