From a1b6b441af71dbc032eed3d4707e851e1f019270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Tue, 12 Jul 2016 05:53:49 +0200 Subject: [PATCH] v2v: Add support for Win2016 virtio drivers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Support virtio drivers for Windows Server 2016 once they are available. Signed-off-by: Tomáš Golembiovský (cherry picked from commit e93d4ea320485e68b2e629ca3498d5475a373781) --- v2v/windows_virtio.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml index 6237a09..c5d6c91 100644 --- a/v2v/windows_virtio.ml +++ b/v2v/windows_virtio.ml @@ -456,6 +456,8 @@ and virtio_iso_path_matches_guest_os path inspect = (6, 3, not_client) else if pathelem "w10" || pathelem "win10" then (10, 0, is_client) + else if pathelem "2k16" || pathelem "win2016" then + (10, 0, not_client) else raise Not_found in -- 1.8.3.1