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.


removed io port check for northbridge
Jack Lange [Tue, 23 Nov 2010 17:11:16 +0000 (11:11 -0600)]
palacios/src/devices/i440fx.c

index 24e0d29..f1fc628 100644 (file)
@@ -94,11 +94,13 @@ static int i440_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
        ret |= v3_dev_hook_io(dev, 0x0cfc + i, &io_read, &io_write);
     }
 
+    /*
     if (ret != 0) {
        PrintError("Error hooking i440FX io ports\n");
        v3_remove_device(dev);
        return -1;
     }
+    */
 
     for (i = 0; i < 6; i++) {
        bars[i].type = PCI_BAR_NONE;