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 generic device, some keyboard fixes (still in progress)
[palacios.git] / palacios / include / devices / keyboard.h
index da4c085..bd22b44 100644 (file)
@@ -3,7 +3,11 @@
 
 #include <palacios/vm_dev.h>
 
-
+//
+// The underlying driver needs to call this on each key that
+// it wants to inject into the VMM for delivery to a VM
+//
+void deliver_key_to_vmm(uchar_t status, uchar_t scancode);
 
 struct vm_device *create_keyboard();