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 user space support for host devices, user space host device example, and vnc...
[palacios.git] / linux_usr / Makefile
index 2fc1ad8..c2a23aa 100644 (file)
@@ -1,4 +1,5 @@
-all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_serial v3_net
+all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_serial v3_net v3_user_host_dev_example
+
 
 
 v3_ctrl : v3_ctrl.c v3_ctrl.h
@@ -23,5 +24,8 @@ v3_monitor : v3_cons.c v3_ctrl.h
 v3_net : v3_net.c v3_ctrl.h
        gcc -static v3_net.c -o v3_net
 
+v3_user_host_dev_example: v3_user_host_dev_example.c v3_user_host_dev.h v3_user_host_dev.c
+       gcc -static -I../linux_module v3_user_host_dev_example.c v3_user_host_dev.c -o v3_user_host_dev_example
+
 clean:
        rm -f v3_ctrl v3_cons v3_mem v3_monitor v3_serial v3_net