From b1396222206bf851e7fba206d633d81b69143277 Mon Sep 17 00:00:00 2001 From: Jean Guyader Date: Mon, 7 Dec 2009 11:51:44 +0000 Subject: [PATCH] XC-745: Force the videoram to be 8M if it's not define in the cfg. --- xenvm/vmact.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xenvm/vmact.ml b/xenvm/vmact.ml index 113eaa5..5afae2c 100644 --- a/xenvm/vmact.ml +++ b/xenvm/vmact.ml @@ -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; } -- 2.39.5