From d10fe2d9d6617a4242079f822debb9cdbd205476 Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Sun, 28 Feb 2016 20:45:44 +0000
Subject: [PATCH] Allow use of virtio-blk disk bus.

It's documented, but didn't work before.
---
 mclu_boot.ml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/mclu_boot.ml b/mclu_boot.ml
index 625aea2..8e7f6a3 100644
--- a/mclu_boot.ml
+++ b/mclu_boot.ml
@@ -276,6 +276,8 @@ Try: `mclu on %s'\n" hostname hostname;
     match template_info.Template.disk_bus with
     | Some "ide" ->
       "      <target dev='sda' bus='ide'/>\n"
+    | Some "virtio" ->
+      "      <target dev='vda' bus='virtio'/>\n"
     | Some "virtio-scsi" | None ->
       "      <target dev='sda' bus='scsi'/>\n"
     | Some bus ->
-- 
1.8.3.1