From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3Q91-0002GN-1Z for qemu-devel@nongnu.org; Fri, 02 Mar 2012 05:55:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3Q8k-0006Fh-FV for qemu-devel@nongnu.org; Fri, 02 Mar 2012 05:55:26 -0500 Received: from isrv.corpit.ru ([86.62.121.231]:60950) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3Q8k-0006FH-7l for qemu-devel@nongnu.org; Fri, 02 Mar 2012 05:55:10 -0500 Message-ID: <4F50A70B.2080002@msgid.tls.msk.ru> Date: Fri, 02 Mar 2012 14:55:07 +0400 From: Michael Tokarev MIME-Version: 1.0 References: <4F3D7C06.6010804@iki.fi> In-Reply-To: <4F3D7C06.6010804@iki.fi> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Bug#660154: qemu-keymaps: Finnish keyboard mapping broken List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Timo Sirainen Cc: qemu-devel , 660154@bugs.debian.org On 17.02.2012 01:58, Timo Sirainen wrote: > Subject: qemu-keymaps: Finnish keyboard mapping broken > Package: qemu-keymaps > Version: 1.0+dfsg-3 > Severity: normal > > With "-k fi -vnc :1" the keyboard layout works pretty well, except the key between left shift and "z" key, which generates <> characters doesn't work. Instead of "<" it shows "z" and instead of ">" (shift-<) it shows "X". > > It works correctly if I comment out these lines: > > less 0x2c shift altgr > greater 0x2d shift altgr Confirmed, and the fix is verified by independent person with finnish keyboard -- https://bugzilla.redhat.com/show_bug.cgi?id=794653 Thank you Atro for the help! The attached patch does just this: removes the two mentioned lines. index 2a4e0f0..4be7586 100644 --- a/pc-bios/keymaps/fi +++ b/pc-bios/keymaps/fi @@ -99,9 +99,7 @@ asterisk 0x2b shift acute 0x2b altgr multiply 0x2b shift altgr guillemotleft 0x2c altgr -less 0x2c shift altgr guillemotright 0x2d altgr -greater 0x2d shift altgr copyright 0x2e altgr leftdoublequotemark 0x2f altgr grave 0x2f shift altgr Thanks! /mjt