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.


*** empty log message ***
Peter Dinda [Fri, 30 May 2008 20:21:56 +0000 (20:21 +0000)]
palacios/build/rombios
palacios/build/vm_kernel
palacios/src/geekos/vm.c

index 0bf32a0..e5abff4 100644 (file)
Binary files a/palacios/build/rombios and b/palacios/build/rombios differ
index 12806a7..8472a30 100755 (executable)
Binary files a/palacios/build/vm_kernel and b/palacios/build/vm_kernel differ
index 1b46b2f..2a67e38 100644 (file)
@@ -317,10 +317,10 @@ int RunVMM(struct Boot_Info * bootInfo) {
       {
        
        struct vm_device * nvram = create_nvram();
-       struct vm_device * timer = create_timer();
+       //struct vm_device * timer = create_timer();
        struct vm_device * pic = create_pic();
        struct vm_device * keyboard = create_keyboard();
-       //struct vm_device * pit = create_pit();
+       struct vm_device * pit = create_pit();
 
        //generic_port_range_type range = {0,1024} ; // hook first 1024 ports if not already hooked
 
@@ -328,9 +328,9 @@ int RunVMM(struct Boot_Info * bootInfo) {
        
 
        attach_device(&(vm_info), nvram);
-       attach_device(&(vm_info), timer);
+       //attach_device(&(vm_info), timer);
        attach_device(&(vm_info), pic);
-       //attach_device(&(vm_info), pit);
+       attach_device(&(vm_info), pit);
        attach_device(&(vm_info), keyboard);
 
        // Important that this be attached last!