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.


Merged changes and added CONFIG_V3VEE wrappers
Trammell Hudson [Tue, 21 Oct 2008 20:15:23 +0000 (15:15 -0500)]
build/Makefile
kitten/.hg/dirstate
kitten/init/main.c

index 65a0aa3..1cfd87d 100644 (file)
@@ -40,6 +40,7 @@
 # ----------------------------------------------------------------------
 PROJECT_ROOT := ..
 PALACIOS_BUILD_DIR := $(PROJECT_ROOT)/palacios/build
+KITTEN_TOP_DIR := $(PROJECT_ROOT)/kitten
 GEEKOS_BUILD_DIR := $(PROJECT_ROOT)/geekos/build
 GUEST_ISO_DIR := /opt/vmm-tools/isos
 
@@ -198,6 +199,12 @@ palacios-full:
 palacios-lean:
        (cd $(PALACIOS_BUILD_DIR) && make LEAN_AND_MEAN=1 world)
 
+kitten: palacios-full
+       cp $(PALACIOS_BUILD_DIR)/libv3vee.a $(KITTEN_TOP_DIR)/palacios/
+       cp $(PALACIOS_BUILD_DIR)/../lib/xed/libxed32e.a $(KITTEN_TOP_DIR)/palacios/
+       cp $(PALACIOS_BUILD_DIR)/vm_kernel $(KITTEN_TOP_DIR)/palacios/
+       (cd $(KITTEN_TOP_DIR) && make oldconfig && make)
+
 
 geekos: 
        cp $(PALACIOS_BUILD_DIR)/libv3vee.a $(GEEKOS_BUILD_DIR)/palacios/
index 23a1d25..2d7cc7f 100644 (file)
Binary files a/kitten/.hg/dirstate and b/kitten/.hg/dirstate differ
index 790ef1e..49a2c04 100644 (file)
@@ -116,19 +116,12 @@ start_kernel()
                        panic("Failed to boot CPU %d.\n", cpu);
        }
 
-#ifdef CONFIG_V3VEE
-       /*
-        * Start up the V3Vee subsystem
-        */
-       Init_V3( 0, 0 );
-#else
        /*
         * Start up user-space...
         */
        printk(KERN_INFO "Loading initial user-level task (init_task)...\n");
        if ((status = create_init_task()) != 0)
                panic("Failed to create init_task (status=%d).", status);
-#endif
 
        schedule();  /* This should not return */
        BUG();