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.


Revised host device support to work with new extension model and
[palacios.git] / linux_module / palacios-graphics-console.c
index e5d4918..3408fe7 100644 (file)
@@ -75,10 +75,10 @@ static v3_graphics_console_t g_open(void * priv_data,
        return 0;
     }
 
-    gc = get_vm_ext_data(guest, "GFX_CONSOLE_INTERFACE");
+    gc = get_vm_ext_data(guest, "GRAPHICS_CONSOLE_INTERFACE");
     
     if (gc == NULL) {
-       printk("ERROR: Could not locate gfx console data for extension GFX_CONSOLE_INTERFACE\n");
+       printk("ERROR: Could not locate gfx console data for extension GRAPHICS_CONSOLE_INTERFACE\n");
        return 0;
     }
 
@@ -366,7 +366,7 @@ static int gfx_console_guest_init(struct v3_guest * guest, void ** vm_data) {
 
 
 static struct linux_ext gfx_cons_ext = {
-    .name = "GFX_CONSOLE_INTERFACE",
+    .name = "GRAPHICS_CONSOLE_INTERFACE",
     .init = gfx_console_init,
     .deinit = NULL,
     .guest_init = gfx_console_guest_init,