Cannot open input pEvdev

Ubuntu Hardyではマウスのドライバにevdevのバージョン1.2.*を使用することでチルトホイールを利用できるが、まだ開発中の為、現時点でmanpageが追いついておらず、古いevdevのmanpageに従って設定すると、表題のエラー"Cannot open input pEvdev"が表示される。参考:freedesktop.orgに立てられたバグ
上記のリンクから得たpatchを当てたv1.2.*対応のmanpageを作った。
ダウンロード(2.3KB)

2008/04/02追記

xserver-xorg-input-evdev 1:1.2.0-1ubuntu2によって、evdevのマニュアルがv1.2.0用のものになった。


このmanpageに基づいてマウスの設定を行った。以下はその設定である。Synapticsの項目は、先日の記事で紹介したので省略してある。

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "CoreKeyboard"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "jp106"
        Option          "XkbLayout"     "jp,jp"
#       Option          "XkbVariant"    "latin,"
#       Option          "XkbOptions"    "grp:alt_shift_toggle,lv3:ralt_switch,grp_led:scroll"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "evdev"
        Option          "Path"                  "/dev/input/by-id/usb-413c_Dell_Premium_USB_Optical_Mouse-event-mouse"
        Option          "CorePointer"
        Option          "RelHWHEELMapTo"        "Buttons 7 6"
EndSection

Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        ......省略......
EndSection

Section "Device"
        Identifier      "Configured Video Device"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Synaptics Touchpad"
EndSection