[gnome-boxes/wip/image-import: 3/18] os-database: Bump default memory allocation to 1G



commit b9af6eebd3514ea41161a6fd78f968d2f231ce8c
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Thu Jun 6 23:38:17 2013 +0300

    os-database: Bump default memory allocation to 1G
    
    If recommended/min memory for an OS or OS itself is unknown, lets
    allocate 1G rather than 500M. 500M is too little for most modern OSs.

 src/os-database.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/os-database.vala b/src/os-database.vala
index d97ff80..4ab40fb 100644
--- a/src/os-database.vala
+++ b/src/os-database.vala
@@ -10,7 +10,7 @@ public errordomain Boxes.OSDatabaseError {
 
 private class Boxes.OSDatabase : GLib.Object {
     private const int DEFAULT_VCPUS = 1;
-    private const int64 DEFAULT_RAM = 500 * (int64) MEBIBYTES;
+    private const int64 DEFAULT_RAM = 1 * (int64) GIBIBYTES;
 
     // We use the dynamically growing storage format (qcow2) so actual amount of disk space used is 
completely
     // dependent on the OS/guest.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]