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 RTL8139's default io base port to -1 when registered with PCI bus Release-1.3
Lei Xia [Fri, 11 Nov 2011 17:06:41 +0000 (11:06 -0600)]
palacios/src/devices/rtl8139.c

index 47abbde..9eaa306 100644 (file)
@@ -1712,7 +1712,7 @@ static int register_dev(struct rtl8139_state * nic_state)  {
     }
 
     bars[0].type = PCI_BAR_IO;
-    bars[0].default_base_port = 0xc100;
+    bars[0].default_base_port = -1;
     bars[0].num_ports = 0x100;
 
     bars[0].io_read = rtl8139_ioport_read;