打印

Ml2.1b2中touchpad仍然无法配置!!!(已解决)

Ml2.1b2中touchpad仍然无法配置!!!(已解决)

提示share memory is not accessible!跟b1的错误一样,不知有何解决良策?

[ 本帖最后由 superhxl 于 2008-4-29 16:18 编辑 ]
Once we dreamt that we were strangers. We wake up to find that we were dear to each other!

TOP

你用setup里的鼠标配置配置一次,然后在触摸板那一段添加Option "SHMConfig" "on" ,重启动就行了,目前还不知道为什么MI配置的不可以。我对比了,好像是一样的,只是一个鼠标在前,一个键盘在前而已。还在研究。

TOP

已经搞定了!xorg.conf中没有定义touchpad设备,所以在xorg.conf中添加两部分:
引用:
Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "TouchPad" "SentCoreEvents"
EndSection
第二部分:
引用:
Section "InputDevice"
        Identifier   "TouchPad"
        Driver       "synaptics"
        Option       "SendCoreEvents" "true"
        Option       "Device" "/dev/psaux"
        Option             "Protocol" "auto-dev"
        Option             "HorizScrollDelta" "0"
        Option             "SHMConfig" "on"
        Option       "TouchpadOff" "0"
EndSection
红色部分为添加的,呵呵!
Once we dreamt that we were strangers. We wake up to find that we were dear to each other!

TOP