]> xenbits.xen.org Git - xenclient/toolstack.git/commitdiff
XC-745: Force the videoram to be 8M if it's not define in the cfg.
authorJean Guyader <jean.guyader@eu.citrix.com>
Mon, 7 Dec 2009 11:51:44 +0000 (11:51 +0000)
committerJean Guyader <jean.guyader@eu.citrix.com>
Mon, 7 Dec 2009 11:51:44 +0000 (11:51 +0000)
xenvm/vmact.ml

index 113eaa5e5743a2097c9b76fa7150bc19164f09c0..5afae2cd3d49c52108b4561926f94c6f1ee189bd 100644 (file)
@@ -231,7 +231,7 @@ let dm_info_of_cfg cfg =
                Device.Dm.power_mgmt = cfg.power_management;
                Device.Dm.oem_features = cfg.oem_features;
                Device.Dm.inject_sci = cfg.inject_sci;
-               Device.Dm.videoram = (match cfg.videoram with None -> 4 | Some i -> i);
+               Device.Dm.videoram = (match cfg.videoram with None -> 8 | Some i -> i);
                Device.Dm.extras = cfg.extrahvm;
        }