All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] Qemu support for multiple keyboard devices - v2
@ 2010-03-23 19:57 Shahar Havivi
  2010-03-23 19:58 ` [Qemu-devel] [PATCH 1/2] Support for multiple keyboard devices Shahar Havivi
  2010-03-23 19:58 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
  0 siblings, 2 replies; 17+ messages in thread
From: Shahar Havivi @ 2010-03-23 19:57 UTC (permalink / raw)
  To: qemu-devel

* After Anthony patches, and Luiz comments

Qemu support for multiple keyboard devices:

Patch #1 adding keyboard is done to list instead of "last added keyboard 
         wins", when removing keyboard via device_del - next keyboard
         selected.

Patch #2 adding 2 new monitor command to handle keyboard list: 
         'info keyboard' - show all keyboards and mark the current one
         'keyboard_set'  - set active keyboard by index as display in
                           'info keyboard' 

Shahar Havivi (2):
  Support for multiple keyboard devices
  Added monitor commands: 'keyboard_set' and 'info keybaord'

 console.h            |   16 ++++-
 hw/adb.c             |    2 +-
 hw/escc.c            |    3 +-
 hw/musicpal.c        |    2 +-
 hw/nseries.c         |    4 +-
 hw/palm.c            |    2 +-
 hw/ps2.c             |    2 +-
 hw/pxa2xx_keypad.c   |    2 +-
 hw/spitz.c           |    2 +-
 hw/stellaris_input.c |    2 +-
 hw/syborg_keyboard.c |    2 +-
 hw/usb-hid.c         |   10 ++-
 hw/xenfb.c           |    4 +-
 input.c              |  194 +++++++++++++++++++++++++++++++++++++++++++++++---
 monitor.c            |    8 ++
 qemu-monitor.hx      |   17 +++++
 qerror.c             |    8 ++
 17 files changed, 253 insertions(+), 27 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/2 v3] Qemu support for multiple keyboard devices
@ 2010-03-31  8:15 Shahar Havivi
  2010-03-31  8:16 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
  0 siblings, 1 reply; 17+ messages in thread
From: Shahar Havivi @ 2010-03-31  8:15 UTC (permalink / raw)
  To: qemu-devel

v3: 
Changes by Markus comments,

Patch #1 Change keyboard list pointer to qemu tail queue
Patch #2 Add static index to keyboard entry
         Remove unused error messages


Qemu support for multiple keyboard devices:

Patch #1 adding keyboard is done to list instead of "last added keyboard 
         wins", when removing keyboard via device_del - next keyboard
         selected.

Patch #2 adding 2 new monitor command to handle keyboard list: 
         'info keyboard' - show all keyboards and mark the current one
         'keyboard_set'  - set active keyboard by index as display in
                           'info keyboard' 

Shahar Havivi (2):
  Support for multiple keyboard devices
  Added monitor commands: 'keyboard_set' and 'info keybaord'

 console.h            |   18 ++++++-
 hw/adb.c             |    2 +-
 hw/escc.c            |    3 +-
 hw/musicpal.c        |    2 +-
 hw/nseries.c         |    4 +-
 hw/palm.c            |    2 +-
 hw/ps2.c             |    2 +-
 hw/pxa2xx_keypad.c   |    3 +-
 hw/spitz.c           |    3 +-
 hw/stellaris_input.c |    2 +-
 hw/syborg_keyboard.c |    2 +-
 hw/usb-hid.c         |   10 ++-
 hw/xenfb.c           |    4 +-
 input.c              |  152 ++++++++++++++++++++++++++++++++++++++++++++++---
 monitor.c            |    8 +++
 qemu-monitor.hx      |   17 ++++++
 16 files changed, 207 insertions(+), 27 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Qemu-devel] [PATCH 0/2] Qemu support for multiple keyboard devices
@ 2010-03-19 10:57 Shahar Havivi
  2010-03-19 10:58 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
  0 siblings, 1 reply; 17+ messages in thread
From: Shahar Havivi @ 2010-03-19 10:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: Dor Laor

Qemu support for multiple keyboard devices:

Patch #1 adding keyboard is done to list instead of "last added keyboard 
         wins", when removing keyboard via device_del - next keyboard
         selected.

Patch #2 adding 2 new monitor command to handle keyboard list: 
         'info keyboard' - show all keyboards and mark the current one
         'keyboard_set'  - set active keyboard by index as display in
                           'info keyboard' 
         

Shahar Havivi (2):
  Support for multiple keyboard devices
  Added monitor commands: 'keyboard_set' and 'info keybaord'

 console.h            |   16 +++++-
 hw/adb.c             |    2 +-
 hw/escc.c            |    3 +-
 hw/musicpal.c        |    2 +-
 hw/nseries.c         |    4 +-
 hw/palm.c            |    2 +-
 hw/ps2.c             |    2 +-
 hw/pxa2xx_keypad.c   |    2 +-
 hw/spitz.c           |    2 +-
 hw/stellaris_input.c |    2 +-
 hw/syborg_keyboard.c |    2 +-
 hw/usb-hid.c         |   10 ++-
 hw/xenfb.c           |    4 +-
 input.c              |  157 +++++++++++++++++++++++++++++++++++++++++++++++--
 monitor.c            |    8 +++
 qemu-monitor.hx      |   17 ++++++
 16 files changed, 211 insertions(+), 24 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2010-03-31 15:19 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-23 19:57 [Qemu-devel] [PATCH 0/2] Qemu support for multiple keyboard devices - v2 Shahar Havivi
2010-03-23 19:58 ` [Qemu-devel] [PATCH 1/2] Support for multiple keyboard devices Shahar Havivi
2010-03-26  9:46   ` Markus Armbruster
2010-03-27 15:56     ` Shahar Havivi
2010-03-23 19:58 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
2010-03-26  9:57   ` Markus Armbruster
2010-03-26 18:40     ` Shahar Havivi
2010-03-31 15:10       ` Markus Armbruster
2010-03-31 15:14         ` Shahar Havivi
2010-03-31 15:19         ` [Qemu-devel] " Juan Quintela
2010-03-27 18:15     ` [Qemu-devel] " Shahar Havivi
  -- strict thread matches above, loose matches on Subject: below --
2010-03-31  8:15 [Qemu-devel] [PATCH 0/2 v3] Qemu support for multiple keyboard devices Shahar Havivi
2010-03-31  8:16 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
2010-03-19 10:57 [Qemu-devel] [PATCH 0/2] Qemu support for multiple keyboard devices Shahar Havivi
2010-03-19 10:58 ` [Qemu-devel] [PATCH 2/2] Added monitor commands: 'keyboard_set' and 'info keybaord' Shahar Havivi
2010-03-19 20:22   ` Luiz Capitulino
2010-03-19 21:03     ` Shahar Havivi
2010-03-19 22:29     ` Shahar Havivi
2010-03-22  0:27       ` Luiz Capitulino

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.