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 / src / palacios / vmm_console.c
index 772b83c..9ecf780 100644 (file)
 
 struct v3_console_hooks * console_hooks = 0;
 
-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) {
     V3_ASSERT(console_hooks != NULL);
     V3_ASSERT(console_hooks->open != NULL);
 
-    return console_hooks->open(vm->host_priv_data);
+    return console_hooks->open(vm->host_priv_data, width, height);
 }