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.


add conditional build to module Makefile
Lei Xia [Wed, 6 Apr 2011 19:57:28 +0000 (14:57 -0500)]
linux_module/Makefile

index 4732a3a..7b744cc 100644 (file)
@@ -14,10 +14,16 @@ v3vee-objs:=        palacios.o \
                palacios-serial.o \
                palacios-queue.o \
                palacios-ringbuffer.o 
-#              palacios-socket.o \
-#              palacios-vnet.o \
-#              palacios-packet.o \
-#              palacios-hashtable.o 
+
+ifdef CONFIG_PALACIOS_VNET
+               v3vee-objs += palacios-vnet.o           
+endif
+ifdef CONFIG_PALACIOS_PACKET
+               v3vee-objs += palacios-packet.o palacios-hashtable.o
+endif
+ifdef CONFIG_PALACIOS_SOCKET
+               v3vee-objs += palacios-socket.o
+endif
 
 v3vee-objs += ../libv3vee.a