search for: a2f6969

Displaying 3 results from an estimated 3 matches for "a2f6969".

Did you mean: 2i6969
2016 Oct 07
2
[PATCH] v2v: test Debian/Ubuntu conversion
Enable testing of Debian and Ubuntu guest conversion. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/v2v/Makefile.am b/v2v/Makefile.am index a2f6969..1c06277 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -311,12 +311,19 @@ check-slow: real_guests_scripts = \ test-v2v-conversion-of-centos-6.sh \ test-v2v-conversion-of-centos-7.0.sh \ + test-v2v-conversion-of-debian-6.sh \ + test-v2v-conversion-of-debian-7.sh \ + test-v2v-conversion-...
2016 Sep 09
0
[PATCH] v2v: linux: Move kernel detection to a separate module.
...| 230 ++++++++++++++++++++++++++++++++++++++++++++++++++ v2v/linux_kernels.mli | 50 +++++++++++ 4 files changed, 295 insertions(+), 206 deletions(-) create mode 100644 v2v/linux_kernels.ml create mode 100644 v2v/linux_kernels.mli diff --git a/v2v/Makefile.am b/v2v/Makefile.am index 34f7976..a2f6969 100644 --- a/v2v/Makefile.am +++ b/v2v/Makefile.am @@ -41,6 +41,7 @@ SOURCES_MLI = \ inspect_source.mli \ linux.mli \ linux_bootloaders.mli \ + linux_kernels.mli \ modules_list.mli \ name_from_disk.mli \ output_glance.mli \ @@ -85,6 +86,7 @@ SOURCES_ML = \ input_libvirt.ml \ input_o...
2016 Sep 09
2
[PATCH] v2v: linux: Move kernel detection to a separate module.
This is a sort of follow-up to the Linux_bootloaders patch. It turns out all the kernel detection code is nicely self- contained and can therefore be moved to its own module. Rich.