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.


set the default base port of ne2000 to -1 to make it able to coexist with other netwo...
Lei Xia [Fri, 11 Nov 2011 17:03:07 +0000 (11:03 -0600)]
palacios/src/devices/ne2k.c

index d4e8852..b4796f7 100644 (file)
@@ -1115,7 +1115,7 @@ static int register_dev(struct ne2k_state * nic_state)
        }
 
        bars[0].type = PCI_BAR_IO;
-       bars[0].default_base_port = NIC_REG_BASE_PORT;
+       bars[0].default_base_port = -1;
        bars[0].num_ports = 256;
 
        bars[0].io_read = ne2k_pci_read;