Updating link to change in openSUSE:Factory/xen revision 92.0

OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=55b9cda496deba4d219bfb38823f905d
This commit is contained in:
OBS User buildservice-autocommit
2010-06-04 13:05:01 +00:00
committed by Git OBS Bridge
parent da1a7c6568
commit 60fee70571
11 changed files with 621 additions and 58 deletions

15
capslock_enable.patch Normal file
View File

@@ -0,0 +1,15 @@
diff -r c2f19aa8a584 tools/ioemu-remote/vnc.c
--- a/tools/ioemu-remote/vnc.c Wed Apr 07 11:13:49 2010 +0800
+++ b/tools/ioemu-remote/vnc.c Mon May 24 13:56:22 2010 +0800
@@ -1326,6 +1326,11 @@
}
break;
case 0x3a: /* CapsLock */
+ if(!down){
+ vs->modifiers_state[keycode] ^= 1;
+ kbd_put_keycode(keycode | 0x80);
+ }
+ return;
case 0x45: /* NumLock */
if (down) {
kbd_put_keycode(keycode & 0x7f);