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.


fixed missing initialization in bochs console
[palacios.releases.git] / palacios / src / devices / curses_cons.c
index b43d69b..ca11dba 100644 (file)
@@ -190,7 +190,7 @@ static int cons_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg)
     state->frontend_dev = frontend;
 
     /* open tty for screen display */
-    state->cons = v3_console_open(vm);
+    state->cons = v3_console_open(vm, NUM_COLS, NUM_ROWS);
 
     if (!state->cons) {
        PrintError("Could not open console\n");