Displaying 14 results from an estimated 14 matches for "s_sound_model".
2015 Aug 28
7
v2v: -i libvirtxml: Map empty network or bridge name to a default (RHBZ#1257895).
When importing from VMware via the libvirt driver, the libvirt driver
can add an empty source bridge name:
<interface type='bridge'>
<mac address='00:01:02:03:04:05:06'/>
<source bridge=''/>
</interface>
Replicate what we do on the -i ova path, and map these to "eth0",
"eth1" etc.
This also includes a bunch
2016 Feb 09
0
[PATCH 1/4] v2v: collect source network and video adapter types
...l8139 | Source_e1000 | Source_virtio_net
and vnet_type = Bridge | Network
and source_display = {
s_display_type : s_display_type;
@@ -81,6 +84,8 @@ and s_display_listen =
| LAddress of string
| LNetwork of string
+and source_video = Source_Cirrus | Source_QXL
+
and source_sound = {
s_sound_model : source_sound_model;
}
@@ -95,6 +100,7 @@ hypervisor type: %s
CPU features: %s
firmware: %s
display: %s
+ video: %s
sound: %s
disks:
%s
@@ -112,6 +118,9 @@ NICs:
(match s.s_display with
| None -> ""
| Some display -> string...
2016 Mar 18
0
[PATCH v4 1/5] v2v: collect source network and video adapter types
...type = Bridge | Network
and source_display = {
s_display_type : s_display_type;
@@ -81,6 +85,9 @@ and s_display_listen =
| LAddress of string
| LNetwork of string
+and source_video = Source_other_video of string |
+ Source_Cirrus | Source_QXL
+
and source_sound = {
s_sound_model : source_sound_model;
}
@@ -95,6 +102,7 @@ hypervisor type: %s
CPU features: %s
firmware: %s
display: %s
+ video: %s
sound: %s
disks:
%s
@@ -112,6 +120,9 @@ NICs:
(match s.s_display with
| None -> ""
| Some display -> string...
2016 Feb 20
0
[PATCH v2 1/4] v2v: collect source network and video adapter types
...type = Bridge | Network
and source_display = {
s_display_type : s_display_type;
@@ -81,6 +85,9 @@ and s_display_listen =
| LAddress of string
| LNetwork of string
+and source_video = Source_other_video of string |
+ Source_Cirrus | Source_QXL
+
and source_sound = {
s_sound_model : source_sound_model;
}
@@ -95,6 +102,7 @@ hypervisor type: %s
CPU features: %s
firmware: %s
display: %s
+ video: %s
sound: %s
disks:
%s
@@ -112,6 +120,9 @@ NICs:
(match s.s_display with
| None -> ""
| Some display -> string...
2016 Mar 11
6
[PATCH v3 0/5] v2v: more control over device types
The decision on which device type to use for disks, network and video
cards on output used to be taken deep inside the converting functions.
This is not always desirable. In particular, there are scenarios when
this decision is made before the convertion takes place. E.g. in
in-place mode, the decisions are taken and the output VM configuration
is created outside of v2v tool.
This patchset
2016 Mar 18
10
[PATCH v4 0/5] v2v: more control over device types
The decision on which device type to use for disks, network and video
cards on output used to be taken deep inside the converting functions.
This is not always desirable. In particular, there are scenarios when
this decision is made before the convertion takes place. E.g. in
in-place mode, the decisions are taken and the output VM configuration
is created outside of v2v tool.
This patchset
2016 Feb 20
8
[PATCH v2 0/4] v2v: more control over device types
The decision on which device type to use for disks, network and video
cards on output used to be taken deep inside the converting functions.
This is not always desirable. In particular, there are scenarios when
this decision is made before the convertion takes place. E.g. in
in-place mode, the decisions are taken and the output VM configuration
is created outside of v2v tool.
This patchset
2016 Feb 09
7
[PATCH 0/4] v2v: more control over device types
The decision on which device type to use for disks, network and video
cards on output used to be taken deep inside the converting functions.
This is not always desirable. In particular, there are scenarios when
this decision is made before the convertion takes place. E.g. in
in-place mode, the decisions are taken and the output VM configuration
is created outside of v2v tool.
This patchset
2017 Apr 11
4
v2v: Implement -i vmx to read VMware vmx files directly (RHBZ#1441197).
https://bugzilla.redhat.com/show_bug.cgi?id=1441197
2019 Feb 25
0
[PATCH 3/3] v2v: add -o json output mode
...s.gcaps_virtio_balloon;
+ "isa-pvpanic", JSON.Bool guestcaps.gcaps_isa_pvpanic;
+ "acpi", JSON.Bool guestcaps.gcaps_acpi;
+ ] in
+ List.push_back doc ("guestcaps", JSON.Dict guestcaps_dict);
+
+ (match source.s_sound with
+ | None -> ()
+ | Some { s_sound_model = model } ->
+ let sound = [
+ "model", JSON.String (string_of_source_sound_model model);
+ ] in
+ List.push_back doc ("sound", JSON.Dict sound)
+ );
+
+ (match source.s_display with
+ | None -> ()
+ | Some d ->
+ let display_type =
+...
2019 Mar 29
0
[PATCH v2 3/3] v2v: add -o json output mode
...s.gcaps_virtio_balloon;
+ "isa-pvpanic", JSON.Bool guestcaps.gcaps_isa_pvpanic;
+ "acpi", JSON.Bool guestcaps.gcaps_acpi;
+ ] in
+ List.push_back doc ("guestcaps", JSON.Dict guestcaps_dict);
+
+ (match source.s_sound with
+ | None -> ()
+ | Some { s_sound_model = model } ->
+ let sound = [
+ "model", JSON.String (string_of_source_sound_model model);
+ ] in
+ List.push_back doc ("sound", JSON.Dict sound)
+ );
+
+ (match source.s_display with
+ | None -> ()
+ | Some d ->
+ let display_type =
+...
2019 Mar 29
5
[PATCH v2 0/3] v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...target_format in
+ error (f_"RHV does not support the output format ‘%s’, only raw or qcow2") t.target_format in
(* Note: Upper case in the .meta, mixed case in the OVF. *)
let output_alloc_for_rhv =
@@ -627,7 +627,7 @@ and add_sound_card sound ovf =
| Some { s_sound_model = AC97 } -> Some "ac97"
| Some { s_sound_model = ICH6 } -> Some "ich6"
| Some { s_sound_model = model } ->
- warning (f_"oVirt cannot emulate '%s' sound cards. This sound card will be dropped from the output.")
+ warning (f_"...
2019 Feb 25
7
[PATCH 0/3] RFC: v2v: add -o json output mode
This series adds a new output mode for virt-v2v, called -o json.
It produces local files, just like -o local, although the metadata
produced is a JSON file with data that v2v collected in the conversion
process. This can be useful for converting to unsupported destinations,
still based on QEMU/KVM.
In addition to a simple different metadata, it offers a way to relocate
the disks, with