search for: 7d65516

Displaying 4 results from an estimated 4 matches for "7d65516".

2017 Feb 24
3
[PATCH 1/2] v2v: document Debian/Ubuntu support
--- v2v/virt-v2v.pod | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index 4c7204b..ba91851 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -227,6 +227,10 @@ And hence L<virsh(1)>, L<virt-manager(1)>, and similar tools. =item OpenSUSE 10 and up +=item Debian 6 and up + +=item Ubuntu 10.04, 12.04, 14.04, 16.04,
2017 Feb 24
0
[PATCH 2/2] v2v: document Convert_linux as more generic
...os using RPM. Also, rename the name of the module from "enterprise-linux" to simply "linux". --- v2v/convert_linux.ml | 10 +++++----- v2v/virt-v2v.pod | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 7d65516..05da590 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -16,12 +16,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *) -(* Convert various RPM-based Linux enterprise distros. This module - * handles: +(* Convert various Linux distros. This module handles:...
2017 Feb 22
0
[PATCH 1/4] v2v: Pass output object into the conversion module.
...--- v2v/convert_linux.ml | 4 ++-- v2v/convert_windows.ml | 2 +- v2v/modules_list.ml | 5 +++-- v2v/modules_list.mli | 7 ++++--- v2v/v2v.ml | 7 +++---- 5 files changed, 13 insertions(+), 12 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 7c42791..7d65516 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -38,7 +38,7 @@ open Linux_kernels module G = Guestfs (* The conversion function. *) -let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = +let rec convert (g : G.guestfs) inspect source output rcaps = (*--...
2017 Feb 22
5
[PATCH 0/4] v2v: windows: Only try to install rhev-apt if the target is RHV (RHBZ#1161019).
The bug is: https://bugzilla.redhat.com/show_bug.cgi?id=1161019 This makes a few other minor refactorings to the code. Rich.