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