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.


build reorganization
[palacios.git] / geekos / src / geekos / vm.c
similarity index 96%
rename from palacios/src/geekos/vm.c
rename to geekos/src/geekos/vm.c
index 169e93b..a951501 100644 (file)
@@ -233,11 +233,12 @@ int RunVMM(struct Boot_Info * bootInfo) {
   
   Init_V3(&os_hooks, &vmm_ops);
 
-  extern char _binary_vm_kernel_start;
-  PrintBoth(" Guest Load Addr: 0x%x\n", &_binary_vm_kernel_start);
-  
-  config_data = &_binary_vm_kernel_start;
 
+  extern char _binary___palacios_vm_kernel_start;
+  PrintBoth(" Guest Load Addr: 0x%x\n", &_binary___palacios_vm_kernel_start);
+  
+  config_data = &_binary___palacios_vm_kernel_start;
   vm_info = (vmm_ops).allocate_guest();
 
   PrintBoth("Allocated Guest\n");
@@ -245,7 +246,7 @@ int RunVMM(struct Boot_Info * bootInfo) {
   (vmm_ops).config_guest(vm_info, config_data);
 
   PrintBoth("Configured guest\n");
-  
+
 
   //v3_hook_io_port(&vm_info, 0x05, &IO_Read, &IO_Write_to_Serial, NULL);