]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
docs: drvbhyve: document virtio-rnd support
authorRoman Bogorodskiy <bogorodskiy@gmail.com>
Fri, 11 Apr 2025 18:47:03 +0000 (20:47 +0200)
committerRoman Bogorodskiy <bogorodskiy@gmail.com>
Tue, 15 Apr 2025 09:28:40 +0000 (11:28 +0200)
 - Document the virtio random number generator device support
 - While here, remove mention of the specific FreeBSD version such as
   10-STABLE, and just refer to the latest supported release.

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
docs/drvbhyve.rst

index f9cb99006ea5371039d34de66bca97b08720fa4d..e93ef0f44728824e9cb8fc5e320b7a60450f67f0 100644 (file)
@@ -7,8 +7,10 @@ Bhyve driver
 .. contents::
 
 Bhyve is a FreeBSD hypervisor. It first appeared in FreeBSD 10.0. However, it's
-recommended to keep tracking FreeBSD 10-STABLE to make sure all new features of
-bhyve are supported. In order to enable bhyve on your FreeBSD host, you'll need
+recommended to use the
+`latest supported release <https://www.freebsd.org/releases/>`__
+to make sure all new features of bhyve are supported.
+In order to enable bhyve on your FreeBSD host, you'll need
 to load the ``vmm`` kernel module. Additionally, ``if_tap`` and ``if_bridge``
 modules should be loaded for networking support. Also, :since:`since 3.2.0` the
 ``virt-host-validate(1)`` supports the bhyve host validation and could be used
@@ -582,3 +584,18 @@ Note that these extensions are for testing and development purposes only. They
 are **unsupported**, using them may result in inconsistent state, and upgrading
 either bhyve or libvirtd maybe break behavior of a domain that was relying on a
 specific commands pass-through.
+
+Random number generator device
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+:since:`Since 11.3.0` it's possible to use the virtio random number generator devices.
+
+Example:
+
+::
+
+   ...
+     <rng model='virtio'>
+       <backend model='random'/>
+     </rng>
+   ...