触摸板只是采用ps/2做接口的, 所以配置下xorg.conf就行,
编译内核的时候把psm给注释掉了, 所以没法使用,
重新编译内核后, xorg.conf:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/sysmouse"
Option "ZAxisMapping" "4 5 6 7"
EndSection
// 触摸板
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psm0"
Option "ZAxisMapping" "4 5 6 7"
EndSection
我google时, 有人认为mouse0才是触摸板?这点有问题吧~
sysinstall->test触摸板,KO~
阅读(1398) | 评论(0) | 转发(0) |