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.


added needed header file
Jack Lange [Fri, 18 Mar 2011 22:26:07 +0000 (17:26 -0500)]
linux_usr/v3_ctrl.h [new file with mode: 0644]

diff --git a/linux_usr/v3_ctrl.h b/linux_usr/v3_ctrl.h
new file mode 100644 (file)
index 0000000..eb92d7d
--- /dev/null
@@ -0,0 +1,31 @@
+/* 
+ * V3 Control header file 
+ * (c) Jack lange, 2010
+ */
+
+#ifndef _v3_ctrl_h
+#define _v3_ctrl_h
+
+#define V3_START_GUEST 10
+#define V3_ADD_MEMORY 50
+#define V3_START_NETWORK 60
+
+#define V3_VM_CONSOLE_CONNECT 20
+#define V3_VM_SERIAL_CONNECT 21
+#define V3_VM_STOP 22
+
+static const char * v3_dev = "/dev/v3vee";
+
+struct v3_guest_img {
+    unsigned long long size;
+    void * guest_data;
+    char name[128];
+};
+
+
+struct v3_mem_region {
+    unsigned long long base_addr;
+    unsigned long long num_pages;
+};
+
+#endif