From 221b1828f9bf9d1d59d2d4b318249de9f7ec7bb8 Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Thu, 24 Jul 2014 19:52:11 +0400 Subject: [PATCH] docs: bhyve: document recent changes - mention that one disk and one network limitation is no longer current for 1.2.6 and newer - add 'cdrom' device to the sample domain XML --- docs/drvbhyve.html.in | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index e75eb83aa0..71e3bc4a88 100644 --- a/docs/drvbhyve.html.in +++ b/docs/drvbhyve.html.in @@ -42,9 +42,10 @@ in this sample domain XML.

-A limitation that is not obvious from this sample domain XML is that currently only a -single network and a single disk device are supported for each domain (as PCI slot allocation code -in libvirt bhyve driver is yet to be implemented). +Note: in older libvirt versions, only a single network device and a single +disk device were supported per-domain. However, +since 1.2.6 the libvirt bhyve driver supports +up to 31 PCI devices.

@@ -71,6 +72,11 @@ in libvirt bhyve driver is yet to be implemented).
         <source file='/path/to/bhyve_freebsd.img'/>
         <target dev='hda' bus='sata'/>
       </disk>
+      <disk type='file' device='cdrom'>
+        <driver name='file' type='raw'/>
+        <source file='/path/to/cdrom.iso'/>
+        <target dev='hdc' bus='sata'/>
+      </disk>
       <interface type='bridge'>
         <model type='virtio'/>
         <source bridge="virbr0"/>
-- 
GitLab