Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 May 2006 19:27:40 +0900
From:      TOMITA Yoshinori <yoshin-t@jp.fujitsu.com>
To:        freebsd-stable@freebsd.org
Subject:   (kbdmux) JP106/109 USB keyboard backslash/underscore trouble
Message-ID:  <ywlbqtz37mr.fsf@palomino.cad.flab.fujitsu.co.jp>

next in thread | raw e-mail | index | archive | help
Hello,

After upgrading from FreeBSD 5.4 to 6.1, backslash/underscore key on
Japanese 106/109 keyboard, which resides left of Rshift key, cannot be
used any more.

Without kbdmux, the key works well.

Japanese 106/109 PS/2 keyborad has no problem. This problem is USB only.



Here is a patch. This worked for me.


--- kbdmux.c.org        Wed Mar 29 11:06:35 2006
+++ kbdmux.c    Mon May 15 19:08:36 2006
@@ -764,6 +764,9 @@
                case 0x63:      /* wake key */
                        keycode = 0x6f;
                        break;
+               case 0x64:      /* [JP106USB] backslash, underscore */
+                       keycode = 0x73;
+                       break;
                default:        /* ignore everything else */
                        goto next_code;
                }


-- 
---
TOMITA Yoshinori




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?ywlbqtz37mr.fsf>