Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixing stacked git error...
[palacios.git] / geekos / src / geekos / vm.c
index 17c3499..a58f179 100644 (file)
@@ -104,11 +104,17 @@ int RunVMM(struct Boot_Info * bootInfo) {
     
     vm_config.rombios = region_start;
     vm_config.rombios_size = rombios->length;
-    
+
+    vm_config.mem_size = 128 * 1024 * 1024;
+
     region_start += rombios->length;
 
+#ifdef PROFILE_VMM
     vm_config.enable_profiling = 1;
-    
+#else
+    vm_config.enable_profiling = 0;
+#endif
+
     vm_config.vgabios = region_start;
     vm_config.vgabios_size = vgabios->length;
   }