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.


Better reporting when vmm exits
Trammell Hudson [Wed, 22 Oct 2008 16:10:36 +0000 (11:10 -0500)]
kitten/init/main.c

index 070f67c..9b8c086 100644 (file)
@@ -118,6 +118,8 @@ start_kernel()
 
 #ifdef CONFIG_V3VEE
        v3vee_run_vmm();
+       printk( "%s: VMM returned.  We're spinning\n", __func__ );
+       while(1) { asm( "hlt" ); }
 #else
        /*
         * Start up user-space...
@@ -128,6 +130,6 @@ start_kernel()
                panic("Failed to create init_task (status=%d).", status);
 
        schedule();  /* This should not return */
-#endif
        BUG();
+#endif
 }