From d19199935d548a2198f25349106a42b38bec56fd Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Wed, 3 Jun 2009 08:39:56 +0100 Subject: [PATCH] videoram: pass the argument to qemu. --- xenops/device.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xenops/device.ml b/xenops/device.ml index 6dc026c..3853aae 100644 --- a/xenops/device.ml +++ b/xenops/device.ml @@ -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 []) -- 2.39.5