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 dimension flags to console hooks
[palacios.git] / palacios / include / palacios / vmm_console.h
index e49fab0..dcff763 100644 (file)
@@ -43,7 +43,7 @@ int v3_console_update(v3_console_t cons);
 
 struct v3_console_hooks {
     /* open console device, mode is a combination of TTY_OPEN_MODE_* flags */
-    void *(*open)(void * priv_data);
+    void *(*open)(void * priv_data, unsigned int width, unsigned int height);
 
     /* set cursor position */
     int (*set_cursor)(void * tty, int x, int y);