search for: ce8b474

Displaying 2 results from an estimated 2 matches for "ce8b474".

Did you mean: c6ab474
2014 Jan 03
1
[PATCH] virt-v2v: Check for firstboot before unconfiguring XenPV
...should report a warning and return if firstboot is not available (during Windows conversions). --- lib/Sys/VirtConvert/Converter/Windows.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/Sys/VirtConvert/Converter/Windows.pm b/lib/Sys/VirtConvert/Converter/Windows.pm index 59d273f..ce8b474 100644 --- a/lib/Sys/VirtConvert/Converter/Windows.pm +++ b/lib/Sys/VirtConvert/Converter/Windows.pm @@ -564,6 +564,12 @@ sub _unconfigure_xenpv { my ($g, $h_soft, $firstboot) = @_; + if (!defined($firstboot)) { + logmsg WARN, __x('Unable to uninstall Xen PV drivers without ...
2014 Jan 03
1
[PATCH] virt-v2v: Default to non-virtio drivers if driver path is missing
...ivers, by reporting a message, then defaulting to non-virtio drivers. --- lib/Sys/VirtConvert/Converter/Windows.pm | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/lib/Sys/VirtConvert/Converter/Windows.pm b/lib/Sys/VirtConvert/Converter/Windows.pm index ce8b474..feeb2b9 100644 --- a/lib/Sys/VirtConvert/Converter/Windows.pm +++ b/lib/Sys/VirtConvert/Converter/Windows.pm @@ -312,13 +312,24 @@ sub _prepare_virtio_drivers return ($block, $net); } - # We can't proceed if there are any files missing + # We can't install any drivers...