Displaying 3 results from an estimated 3 matches for "genidx".
Did you mean:
genid
2018 Jul 05
4
[PATCH] v2v: Preserve VM Generation ID (RHBZ#1598350).
...-426,6 +426,27 @@ object
| File filename -> name_from_disk filename
| SSH uri -> name_from_disk (path_of_uri uri) in
+ let genid =
+ (* XXX NOT yet tested against VMware. *)
+ let genid = Parse_vmx.get_int64 vmx ["vm"; "genid"]
+ and genidX = Parse_vmx.get_int64 vmx ["vm"; "genidX"] in
+ match genid, genidX with
+ | None, None | Some _, None | None, Some _ -> None
+ | Some lo, Some hi ->
+ (* The actual mapping from the two integers to the UUID
+ * (as defined by qemu and used...
2018 Jul 05
0
Re: [PATCH] v2v: Preserve VM Generation ID (RHBZ#1598350).
...| File filename -> name_from_disk filename
> | SSH uri -> name_from_disk (path_of_uri uri) in
>
> + let genid =
> + (* XXX NOT yet tested against VMware. *)
> + let genid = Parse_vmx.get_int64 vmx ["vm"; "genid"]
> + and genidX = Parse_vmx.get_int64 vmx ["vm"; "genidX"] in
> + match genid, genidX with
> + | None, None | Some _, None | None, Some _ -> None
> + | Some lo, Some hi ->
> + (* The actual mapping from the two integers to the UUID
> + * (as...
2017 Oct 11
3
[PATCH 0/2] v2v: -i vmx: Allow deviceType field to be completely omitted.
A colleague found some VMX files which omit the deviceType field.
This allows -i vmx mode to parse them.
Rich.