Well looking at the situation I am suggesting you that you have to download evtouch from the internet. You have to download tarball and extract in the same directory by using the following code.
Code:
tar xzvf evtouch-xx.yy.tar.gz
Now you have to copy the file to evtouch_drv.so to proper location /usr/X11R6/lib/modules/input or /usr/lib/xorg/modules/input/.Now enter following line of code at the /etc/X11/XF86Config-4 or /etc/X11/xorg.conf.
Code:
Section "InputDevice"
Identifier "touchscreen"
Driver "evtouch"
Option "Device" "/dev/input/event1"
Option "DeviceName" "touchscreen"
Option "MinX" "98"
Option "MinY" "43"
Option "MaxX" "940"
Option "MaxY" "925"
Option "ReportingMode" "Raw"
Option "Emulate3Buttons"
Option "Emulate3Timeout" "50"
Option "SendCoreEvents" "On"
EndSection
Now add the following line at /etc/X11/XF86Config-4 or /etc/X11/xorg.conf at ServerLayout section
Code:
InputDevice "touchscreen" "CorePointer"
I am hoping that it will help you out to solve the problem.
Bookmarks