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.


updates to the PCI configuration for the southbridge and northbridge
[palacios.git] / palacios / src / palacios / vmm_config.c
index ff6dce4..1236a0b 100644 (file)
@@ -350,11 +350,15 @@ static int setup_devices(struct guest_info * info, struct v3_vm_config * config_
     v3_attach_device(info, para_net);
 
     if (config_ptr->enable_pci == 1) {
+       PrintDebug("Attaching PCI\n");
        v3_attach_device(info, pci);
+       PrintDebug("Attaching Northbridge\n");
        v3_attach_device(info, northbridge);
+       PrintDebug("Attaching Southbridge\n");
        v3_attach_device(info, southbridge);
     }
 
+    PrintDebug("Attaching IDE\n");
     v3_attach_device(info, ide);