From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NuAEf-0006Qr-HO for qemu-devel@nongnu.org; Tue, 23 Mar 2010 15:57:57 -0400 Received: from [140.186.70.92] (port=43978 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuAEd-0006Pi-TH for qemu-devel@nongnu.org; Tue, 23 Mar 2010 15:57:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NuAEX-0008Ax-Ud for qemu-devel@nongnu.org; Tue, 23 Mar 2010 15:57:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5718) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NuAEX-00089w-Nb for qemu-devel@nongnu.org; Tue, 23 Mar 2010 15:57:49 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2NJvjZh023638 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 23 Mar 2010 15:57:45 -0400 Received: from localhost (dhcp-1-229.tlv.redhat.com [10.35.1.229]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o2NJviEj007368 for ; Tue, 23 Mar 2010 15:57:45 -0400 Date: Tue, 23 Mar 2010 21:57:19 +0200 From: Shahar Havivi Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH 0/2] Qemu support for multiple keyboard devices - v2 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org * 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(-)