search for: 34f7976

Displaying 2 results from an estimated 2 matches for "34f7976".

2016 Sep 09
0
[PATCH] v2v: linux: Move kernel detection to a separate module.
...ernels.ml | 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 \...
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.