]> xenbits.xensource.com Git - xenclient/toolstack.git/commitdiff
videoram: pass the argument to qemu.
authorVincent Hanquez <vincent.hanquez@eu.citrix.com>
Wed, 3 Jun 2009 07:39:56 +0000 (08:39 +0100)
committerVincent Hanquez <vincent.hanquez@eu.citrix.com>
Wed, 3 Jun 2009 07:39:56 +0000 (08:39 +0100)
xenops/device.ml

index 6dc026c949e8b9034bd1a5f90f571f397ff574ae..3853aae97aa8cca74b34d75ced8254536be65408 100644 (file)
@@ -1164,7 +1164,8 @@ let __start ~xs ~dmpath ~restore ?(timeout=qemu_dm_ready_timeout) info domid =
                  "-m"; Int64.to_string (Int64.div info.memory 1024L);
                  "-boot"; info.boot;
                  "-serial"; info.serial;
-                 "-vcpus"; string_of_int info.vcpus; ]
+                 "-vcpus"; string_of_int info.vcpus;
+                 "-videoram"; string_of_int info.videoram; ]
           @ disp_options @ sound_options @ usb' @ (List.concat nics')
           @ (if info.acpi then [ "-acpi" ] else [])
           @ (if restore then [ "-loadvm"; restorefile ] else [])