]> xenbits.xensource.com Git - xenclient/toolstack.git/commitdiff
add a sound option in Dm parameter
authorVincent Hanquez <vincent.hanquez@eu.citrix.com>
Tue, 26 May 2009 17:50:41 +0000 (18:50 +0100)
committerVincent Hanquez <vincent.hanquez@eu.citrix.com>
Tue, 26 May 2009 17:50:41 +0000 (18:50 +0100)
xenops/device.ml
xenops/device.mli
xenvm/vmact.ml
xenvm/xenops.ml

index f2845f00e87563991d333b80442446235a3b55e7..539159fb5d0ed88209a2f5613279eb2654e373bb 100644 (file)
@@ -1063,6 +1063,7 @@ type info = {
        acpi: bool;
        disp: disp_opt;
        pci_emulations: string list;
+       sound: string option;
        power_mgmt: int;
        oem_features: int;
        extras: (string * string option) list;
index bf9695c183a6bf2962dd491cfc015d6ddfe31896..54ecc0e152b8c23399159d298d6a4f650556af23 100644 (file)
@@ -152,6 +152,7 @@ sig
                acpi: bool;
                disp: disp_opt;
                pci_emulations: string list;
+               sound: string option;
                power_mgmt: int;
                oem_features: int;
                extras: (string * string option) list;
index 630e1eadc8194fffa4001021c454cfc634cbf2eb..d7dfb948a2983d3def8b1cb0015a96d27fd7cba5 100644 (file)
@@ -128,6 +128,7 @@ let dm_info_of_cfg cfg =
                Device.Dm.vcpus = cfg.vcpus;
                Device.Dm.nics = nics;
                Device.Dm.pci_emulations = [];
+               Device.Dm.sound = None;
                Device.Dm.usb = [];
                Device.Dm.acpi = cfg.acpi;
                Device.Dm.disp = disp;
index 8518cfc7e7e53910b1243554105b1c2ebcf2d956..55cb2a5f6f936c09be5740a9bfbee86f956658d2 100644 (file)
@@ -293,6 +293,7 @@ let add_dm ~xs ~domid ~mem_max_kib ~vcpus ~boot =
                Device.Dm.nics = [];
                Device.Dm.pci_emulations = [];
                Device.Dm.usb = [];
+               Device.Dm.sound = None;
                Device.Dm.acpi = true;
                Device.Dm.disp = Device.Dm.NONE;
                Device.Dm.power_mgmt = 0;