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.


ported packet to extension framework and fixed type in socket interface
[palacios.git] / linux_module / Makefile
index 1262bb9..e3cb52a 100644 (file)
@@ -13,8 +13,10 @@ v3vee-objs :=        palacios.o \
                palacios-dev.o \
                palacios-vm.o \
                palacios-mm.o \
-               palacios-queue.o 
-
+               palacios-queue.o \
+               palacios-hashtable.o \
+               linux-exts.o
+       
 ifdef V3_CONFIG_CONSOLE
        v3vee-objs +=   palacios-console.o
 endif
@@ -33,7 +35,9 @@ ifdef V3_CONFIG_EXT_INSPECTOR
 endif
 
 ifdef V3_CONFIG_VNET
-       v3vee-objs += palacios-vnet.o           
+       v3vee-objs +=   palacios-vnet.o \
+                       palacios-vnet-ctrl.o   \
+                       palacios-vnet-brg.o
 endif
 
 ifdef V3_CONFIG_PACKET
@@ -44,6 +48,20 @@ ifdef V3_CONFIG_SOCKET
        v3vee-objs += palacios-socket.o
 endif
 
+ifdef V3_CONFIG_KEYED_STREAMS
+       v3vee-objs += palacios-keyed-stream.o
+endif
+
+ifdef V3_CONFIG_HOST_DEVICE
+       v3vee-objs += palacios-host-dev.o
+endif
+
+ifdef V3_CONFIG_GRAPHICS_CONSOLE
+       v3vee-objs += palacios-graphics-console.o
+endif
+
+
+
 v3vee-objs += ../libv3vee.a