Launcher: Added profile argument.
authorminkee.lee <minkee.lee@samsung.com>
Wed, 24 Dec 2014 08:36:27 +0000 (17:36 +0900)
committerminkee.lee <minkee.lee@samsung.com>
Wed, 24 Dec 2014 08:40:12 +0000 (17:40 +0900)
- "-device" "virtio-evdi-pci,profile={xxx}"

Change-Id: I4c8600f5da68cc357f2ada4504766d325535c7e5
Signed-off-by: minkee.lee <minkee.lee@samsung.com>
plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/vms/Launcher.java
plugin-project/wearable-plugin/src/org/tizen/emulator/manager/wearable/vms/Launcher.java

index 7322bbd..562ec5b 100644 (file)
@@ -294,7 +294,8 @@ public class Launcher implements ILauncher {
 
                        // for ecp
                        cmd.add("-device");
-                       cmd.add("virtio-evdi-pci");
+                       cmd.add("virtio-evdi-pci,profile=" + property.getPropertyValue().profile
+                               + "-" + property.getPropertyValue().version);
 
                        // for brightness
                        cmd.add("-device");
index 131f69d..4349bc0 100644 (file)
@@ -297,7 +297,8 @@ public class Launcher implements ILauncher {
 
                        // for ecp
                        cmd.add("-device");
-                       cmd.add("virtio-evdi-pci");
+                       cmd.add("virtio-evdi-pci,profile=" + property.getPropertyValue().profile
+                               + "-" + property.getPropertyValue().version);
 
                        // for camera
                        if (checkOnOff(property.getPropertyValue().getAdvancedOptionSubValue(OPT_DEVICE, OPT_CAMERA))) {