Lenovo Thinkpad 13 のトラックポイント用カーネル ドライバー

Lenovo Thinkpad 13 のトラックポイント用カーネル ドライバー

他のThinkPadでは、udevを使用してトラックポイントを正常に構成できました。この方法しかし、私の新しい Lenovo Thinkpad 13 ではこれは不可能です。

このコマンド:

find /sys/devices/platform/i8042 -name name | xargs grep -Fl TrackPoint | sed 's/\/input\/input[0-9]*\/name$//'

...出力:

/sys/devices/platform/i8042/serio1

しかし、そのフォルダにもサブフォルダにもファイルは含まれていませんsensitivityspeed同じ問題が確認されています。別のカーネルとディストリビューションを使用しているThinkPad 13の所有者

カーネルドライバがデバイスがトラックポイントであることを正しく検出していないのではないかと思います。この仮定は、これ(あまり有益ではない) Ubuntu からのハードウェア評価。

トラックポイントを設定する別の方法としてxinputを使う方法がありますが、私のディストリビューションであるDebianがlibinputに切り替わったため、これは次のような理由で頭痛の種になっています。このバグ(どうやら Fedora にも影響があるようです。)

udev と上記の方法でトラックポイントを設定できるようにしたいのですが、さらにデバッグする方法がわかりません。

Ubuntu のハードウェア評価は、解決不可能なハードウェアの問題であることを意味しますか?

それともカーネルのバグでしょうか?

どうやって知ることが出来ますか?

システム出力の一部:

# uname -a
Linux debian 4.5.0-2-amd64 #1 SMP Debian 4.5.3-2 (2016-05-08) x86_64 GNU/Linux

# xinput list
Virtual core pointer                        id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ ETPS/2 Elantech Touchpad                  id=13   [slave  pointer  (2)]
⎜   ↳ Elantech PS/2 TrackPoint                  id=14   [slave  pointer  (2)]
⎣ Virtual core keyboard                       id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard                 id=5    [slave  keyboard (3)]
    ↳ Power Button                                id=6    [slave  keyboard (3)]
    ↳ Video Bus                                   id=7    [slave  keyboard (3)]
    ↳ Power Button                                id=8    [slave  keyboard (3)]
    ↳ Sleep Button                                id=9    [slave  keyboard (3)]
    ↳ Integrated Camera                           id=11   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard                id=12   [slave  keyboard (3)]
    ↳ ThinkPad Extra Buttons                      id=15   [slave  keyboard (3)]

# xinput list-props 14
Device 'Elantech PS/2 TrackPoint':
    Device Enabled (136):   1
    Coordinate Transformation Matrix (138): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (274): 1.000000
    libinput Accel Speed Default (275): 0.000000
    libinput Accel Profiles Available (276):    1, 1
    libinput Accel Profile Enabled (277):   1, 0
    libinput Accel Profile Enabled Default (278):   1, 0
    libinput Natural Scrolling Enabled (279):   0
    libinput Natural Scrolling Enabled Default (280):   0
    libinput Send Events Modes Available (258): 1, 0
    libinput Send Events Mode Enabled (259):    0, 0
    libinput Send Events Mode Enabled Default (260):    0, 0
    libinput Left Handed Enabled (281): 0
    libinput Left Handed Enabled Default (282): 0
    libinput Scroll Methods Available (283):    0, 0, 1
    libinput Scroll Method Enabled (284):   0, 0, 1
    libinput Scroll Method Enabled Default (285):   0, 0, 1
    libinput Button Scrolling Button (286): 2
    libinput Button Scrolling Button Default (287): 274
    libinput Middle Emulation Enabled (288):    0
    libinput Middle Emulation Enabled Default (289):    0
    Device Node (261):  "/dev/input/event1"
    Device Product ID (262):    2, 14
    libinput Drag Lock Buttons (290):   <no items>
    libinput Horizonal Scroll Enabled (263):    1 

関連情報