Blame SOURCES/0014-v2v-Allow-Windows-virtio-ISO-to-be-a-block-device-as.patch

5c13d3
From 9dd17c25f1134b573e2dbf277ce111a33fc7845e Mon Sep 17 00:00:00 2001
5c13d3
From: "Richard W.M. Jones" <rjones@redhat.com>
5c13d3
Date: Thu, 4 Jul 2019 15:51:25 +0100
5c13d3
Subject: [PATCH] v2v: Allow Windows virtio ISO to be a block device as well as
5c13d3
 a regular file.
5c13d3
5c13d3
Thanks: Steven Rosenberg
5c13d3
(cherry picked from commit c22a8b68fe5729d3a8907b41eef287cd9f3a55c0)
5c13d3
---
5c13d3
 v2v/windows_virtio.ml | 2 +-
5c13d3
 1 file changed, 1 insertion(+), 1 deletion(-)
5c13d3
5c13d3
diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml
5c13d3
index 59b0bf493..56c7a6757 100644
5c13d3
--- a/v2v/windows_virtio.ml
5c13d3
+++ b/v2v/windows_virtio.ml
5c13d3
@@ -338,7 +338,7 @@ and copy_from_virtio_win g inspect srcdir destdir filter missing =
5c13d3
       ) paths
5c13d3
     )
5c13d3
   )
5c13d3
-  else if is_regular_file virtio_win then (
5c13d3
+  else if is_regular_file virtio_win || is_block_device virtio_win then (
5c13d3
     debug "windows: copy_from_virtio_win: guest tools source ISO %s" virtio_win;
5c13d3
 
5c13d3
     try
5c13d3
-- 
5c13d3
2.21.0
5c13d3