Displaying 4 results from an estimated 4 matches for "ef2993ed6".
2017 Feb 14
1
Re: [PATCH 1/1] v2v: ova: fix generated JSON for libvirt support
...+ "driver", JSON.String "file";
> "filename", JSON.String ova]
> ]
> ] in
> diff --git a/v2v/test-v2v-i-ova-subfolders.expected2 b/v2v/test-v2v-i-ova-subfolders.expected2
> index ef2993ed6..5029760c9 100644
> --- a/v2v/test-v2v-i-ova-subfolders.expected2
> +++ b/v2v/test-v2v-i-ova-subfolders.expected2
> @@ -10,7 +10,7 @@ hypervisor type: vmware
> video:
> sound:
> disks:
> - json:{ "file": { "driver": "raw",...
2017 Feb 14
2
[PATCH 0/1] Fix OVA import with libvirt backend
I've sent a patch to libvirt that should fix our problem with 'raw' driver that
is mentioned in [1]. The libvirt patch is here [2]. However, to realy fix
things, there is at least one thing we have to change on our side. We have to
be explicit about the driver in the JSON we generate.
Note that the libvirt patch has not yet been reviewed nor merged, so this may
not be the only thing
2017 Feb 14
0
[PATCH 1/1] v2v: ova: fix generated JSON for libvirt support
...;file", JSON.Dict [
+ "driver", JSON.String "file";
"filename", JSON.String ova]
]
] in
diff --git a/v2v/test-v2v-i-ova-subfolders.expected2 b/v2v/test-v2v-i-ova-subfolders.expected2
index ef2993ed6..5029760c9 100644
--- a/v2v/test-v2v-i-ova-subfolders.expected2
+++ b/v2v/test-v2v-i-ova-subfolders.expected2
@@ -10,7 +10,7 @@ hypervisor type: vmware
video:
sound:
disks:
- json:{ "file": { "driver": "raw", "offset": x, "size&q...
2017 Feb 23
4
[PATCH v2 0/3] Fix OVA import with libvirt backend
v2:
- 1/3: same as in previous version
- 2/3: add check for libvirt version
- 3/3: restore the disabled test
The libvirt patch [2] that should fix our problem with 'raw' driver that
is mentioned in [1] was merged.
To realy fix things, there is at least one thing we have to change on our side.
We have to be explicit about the driver in the JSON we generate.
[1]