Ahmad, Thank you for the response. This patch allows the driver to make install successfully. However, I am not getting the touchscreen to work. Here are my steps so far:
Download, patch, and install driver: sudo apt-get install build-essential sudo apt-get install xserver-xorg-dev x11proto-core-dev sudo apt-get install xserver-xorg-dev x11proto-core-dev wget http://launchpadlibrarian.net/8975442/xf86-input-fujitouch-0.6.5.tar.bz2 tar xjf xf86-input-fujitouch-0.6.5.tar.bz2 cd xf86-input-fujitouch-0.6.5 wget http://launchpadlibrarian.net/21635770/fujitouch.diff patch -p0 < fujitouch.diff ./configure --prefix=/usr && make && sudo make install Xorg.conf editing: Stop GDM: Press CTRL-ALT-F1 to change to tty1 stop sudo /etc/init.d/gdm stop Create a default xorg.conf, by running the following command: Xorg -configure Go back to tty1, and stop X: Press CTRL-ALT-F1 to change to tty1 sudo kill -9 Xorg Edit xorg.conf: sudo nano /etc/X11/xorg.conf Add following to end of xorg.conf file: Section "InputDevice" Section "InputDevice" Identifier "touchscreen" Identifier "touchscreen" Driver "fujitsu" Driver "fujitsu" Option "Device" "/dev/ttyS0" Option "Device" "/ dev/ttyS0" Option "DeviceName" "touchscreen" Option "DeviceName" "touchscreen" Option "MinX" "100" Option "MinX" "100" Option "MinY" "200" Option "MinY" "200" Option "MaxX" "4020" Option "MaxX" "4020" Option "MaxY" "3990" Option "MaxY" "3990" Option "SendCoreEvents" "On" Option "SendCoreEvents" "On" EndSection This is where things get tricky. There is no default ServerLayout section. So we have to create one. Append tnew ServerLayout section to end of xorg.conf: Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "touchscreen" "CorePointer" EndSection Save file: Press CTRL-O to save, CTRL-X to quit editing Restart GDM: sudo /etc/init.d/gdm start Test the touchscreen. -- add support for fujitsu tablet input device https://bugs.launchpad.net/bugs/134401 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
