Displaying 2 results from an estimated 2 matches for "ubuntu_14_04_ppc64".
2017 Mar 14
0
[PATCH 1/2] v2v: OVF: add Debian and Ubuntu osinfo variants
...nly Ubuntu 12.04 to 14.04 are available, so use them starting
+ * from 12.04, and 14.04 for anything after it.
+ *)
+ | { i_type = "linux"; i_distro = "ubuntu"; i_major_version = v;
+ i_arch = "ppc64" | "ppc64le" } when v >= 14 ->
+ "ubuntu_14_04_ppc64"
+
+ | { i_type = "linux"; i_distro = "ubuntu"; i_major_version = v }
+ when v >= 14 ->
+ "ubuntu_14_04"
+
+ | { i_type = "linux"; i_distro = "ubuntu"; i_major_version = maj;
+ i_minor_version = min } when maj >= 12 ->...
2018 Apr 05
6
[PATCH v3 0/3] v2v: improve OVF in OVirt flavour
Hi,
v3 of these patches:
https://www.redhat.com/archives/libguestfs/2018-April/msg00002.html
https://www.redhat.com/archives/libguestfs/2018-April/msg00006.html
Thanks,
Pino Toscano (3):
v2v: OVF: improve get_ostype mappings
v2v: OVF: write ovirt:id attribute for the OS in OVirt flavour
v2v: OVF: fix ovf:id for VirtualSystem in OVirt flavour
v2v/create_ovf.ml | 253