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.


compilation fix
Jack Lange [Wed, 10 Nov 2010 23:49:12 +0000 (17:49 -0600)]
palacios/include/palacios/vmm_console.h

index dcff763..1315ccd 100644 (file)
@@ -30,7 +30,7 @@
 
 typedef void * v3_console_t;
 
-v3_console_t v3_console_open(struct v3_vm_info * vm);
+v3_console_t v3_console_open(struct v3_vm_info * vm, uint32_t width, uint32_t height);
 
 int v3_console_set_cursor(v3_console_t cons, int x, int y);
 int v3_console_set_char(v3_console_t cons, int x, int y, char c, uint8_t style);