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.


Silence warnings if CONFIG_V3VEE
Trammell Hudson [Wed, 22 Oct 2008 15:34:12 +0000 (10:34 -0500)]
kitten/init/main.c

index 709a0ab..070f67c 100644 (file)
@@ -32,7 +32,6 @@ start_kernel()
 {
        unsigned int cpu;
        unsigned int timeout;
-       int status;
 
        /*
         * Parse the kernel boot command line.
@@ -124,6 +123,7 @@ start_kernel()
         * Start up user-space...
         */
        printk(KERN_INFO "Loading initial user-level task (init_task)...\n");
+       int status;
        if ((status = create_init_task()) != 0)
                panic("Failed to create init_task (status=%d).", status);