search for: 9ef4904be

Displaying 3 results from an estimated 3 matches for "9ef4904be".

2019 Mar 21
1
Re: [PATCH v2 2/3] v2v: allow alternative directories for distributions
...fc28 -> fedora > el6 -> rhel6 > el7 -> rhel7 > lp151 -> suse > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > --- Mostly LGTM -- few notes below. > diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml > index a2b59d1ec..9ef4904be 100644 > --- a/v2v/windows_virtio.ml > +++ b/v2v/windows_virtio.ml > @@ -184,32 +184,38 @@ let rec install_drivers ((g, _) as reg) inspect rcaps = > ) > > and install_linux_tools g inspect = > - let os = > + let oses = > match inspect.i_distro with > -...
2019 Feb 08
0
[PATCH v2 2/3] v2v: allow alternative directories for distributions
...-> rhel7 lp151 -> suse Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/windows_virtio.ml | 79 +++++++++++++++++++++++++------------------ 1 file changed, 47 insertions(+), 32 deletions(-) diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml index a2b59d1ec..9ef4904be 100644 --- a/v2v/windows_virtio.ml +++ b/v2v/windows_virtio.ml @@ -184,32 +184,38 @@ let rec install_drivers ((g, _) as reg) inspect rcaps = ) and install_linux_tools g inspect = - let os = + let oses = match inspect.i_distro with - | "fedora" -> Some "fc28" +...
2019 Feb 08
6
[PATCH v2 0/3] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken. Second patch revamps how virt-v2v chooses from which directory install guest tools on Linux. Details in commit message. v2: - included comments from Pino and Rich - added test Tomáš Golembiovský (3): v2v: fix path to source when copying files from guest tools directory v2v: allow alternative directories for