diff options
author | Bernhard M. Wiedemann <qemudevbmw@lsmod.de> | 2010-06-02 05:32:30 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-22 15:15:30 -0500 |
commit | 49b586a922c1818cbd9f576600f72bff182bc257 (patch) | |
tree | 95fd4dcd7a47d66dfb3a0462c847dad29bb8bd97 | |
parent | f74550fd53598ac6529dbcfc3c06e98d2d7fbe51 (diff) |
Extra scan codes for missing keys
The code comes from
http://lists.gnu.org/archive/html/qemu-devel/2010-05/msg02788.html
Without this patch it is not possible to send at least 10 special
characters (\|'"`~:;[]{}) via the monitor sendkey command.
Signed-off-by: Bernhard M. Wiedemann <qemudevbmw@lsmod.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | monitor.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1447,7 +1447,8 @@ static const KeyDef key_defs[] = { { 0x17, "i" }, { 0x18, "o" }, { 0x19, "p" }, - + { 0x1a, "bracket_left" }, + { 0x1b, "bracket_right" }, { 0x1c, "ret" }, { 0x1e, "a" }, @@ -1459,7 +1460,11 @@ static const KeyDef key_defs[] = { { 0x24, "j" }, { 0x25, "k" }, { 0x26, "l" }, + { 0x27, "semicolon" }, + { 0x28, "apostrophe" }, + { 0x29, "grave_accent" }, + { 0x2b, "backslash" }, { 0x2c, "z" }, { 0x2d, "x" }, { 0x2e, "c" }, |