search for: 02dc2fee2

Displaying 4 results from an estimated 4 matches for "02dc2fee2".

2018 Apr 11
1
[PATCH] v2v: linux: correctly update resume=/dev/device entries (RHBZ#1532224)
...from replace_if_device, since this function now does only the actual replacement of the device string. --- v2v/convert_linux.ml | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index b273785e6..02dc2fee2 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -976,7 +976,7 @@ let convert (g : G.guestfs) inspect source output rcaps = List.flatten (List.map Array.to_list (List.map g#aug_match paths)) in (* Map device names for each entry. *) - let rex_resume = PCRE.compile &q...
2018 Jun 19
2
[PATCH] v2v: Set machine type explicitly for outputs which support it (RHBZ#1581428).
...ce.ml | 5 +++++ v2v/output_qemu.ml | 14 ++++++++------ v2v/test-v2v-i-ova.xml | 2 +- v2v/types.ml | 8 ++++++++ v2v/types.mli | 6 ++++-- 9 files changed, 72 insertions(+), 16 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 02dc2fee2..4dbf2aa41 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -122,6 +122,25 @@ let convert (g : G.guestfs) inspect source output rcaps = SELinux_relabel.relabel g; + (* Pivot on the year 2007. Any Linux distro from earlier than + * 2007 should use i440fx, anything 200...
2018 Jul 19
0
[PATCH] v2v: Model machine type explicitly.
...+++++ v2v/output_qemu.ml | 30 +++++++++++++++++++----------- v2v/test-v2v-i-ova.xml | 2 +- v2v/types.ml | 8 ++++++++ v2v/types.mli | 6 ++++-- 9 files changed, 78 insertions(+), 26 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 02dc2fee2..726915875 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -122,6 +122,12 @@ let convert (g : G.guestfs) inspect source output rcaps = SELinux_relabel.relabel g; + (* XXX Look up this information in libosinfo in future. *) + let machine = + match inspect.i_arch w...
2018 Jun 19
0
Re: [PATCH] v2v: Set machine type explicitly for outputs which support it (RHBZ#1581428).
...emu.ml | 14 ++++++++------ > v2v/test-v2v-i-ova.xml | 2 +- > v2v/types.ml | 8 ++++++++ > v2v/types.mli | 6 ++++-- > 9 files changed, 72 insertions(+), 16 deletions(-) > > diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml > index 02dc2fee2..4dbf2aa41 100644 > --- a/v2v/convert_linux.ml > +++ b/v2v/convert_linux.ml > @@ -122,6 +122,25 @@ let convert (g : G.guestfs) inspect source output rcaps = > > SELinux_relabel.relabel g; > > + (* Pivot on the year 2007. Any Linux distro from earlier than > +...