21894-intel-unmask-cpuid.patch - Upstream patch from Jan 22148-serial-irq-dest.patch - bnc#628719 - improve check_device_status to handle HA cases check_device_status.patch - bnc#628719 - multi-xvdp mutli-xvdp.patch - bnc#632956 - fix VNC altgr-insert behavior 22135-heap-lock.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=74
17 lines
581 B
Diff
17 lines
581 B
Diff
Index: xen-4.0.1-testing/tools/ioemu-qemu-xen/vnc.c
|
|
===================================================================
|
|
--- xen-4.0.1-testing.orig/tools/ioemu-qemu-xen/vnc.c
|
|
+++ xen-4.0.1-testing/tools/ioemu-qemu-xen/vnc.c
|
|
@@ -1344,6 +1344,11 @@ static void do_key_event(VncState *vs, i
|
|
}
|
|
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);
|