Hi everybody!
I'm working with AT91SAM9261EK. Linux kernel is 2.6.30. Rootfs image is build with Openembedded (x11-image). I use CRT monitor (480x640) instead touchscreen. After first boot the mouse pointer was invisible. After some corrections in rootfs it has become visible but USB-mouse still doesn't work:
1)In file /etc/sysconfig/gpelogin instead string
Code:
AUTOLOGIN="false"
I've written
Code:
AUTOLOGIN="true"
2)In file /etc/profile.d/tslib.sh instead string
Code:
TSLIB_TSDEVICE=/dev/input/touchscreen0
I've written
Code:
TSLIB_TSDEVICE=/dev/input/mouse0
3)In directory /etc/X11/Xinit.d I've removed the script 30xTs_Calibrate
4) in file /etc/matchbox/session instead string
Code:
exec matchbox-window-manager -use_cursor no $@
I've written
Code:
exec matchbox-window-manager -use_cursor yes $@
Maybe someone has any suggestions how to enable USB-mouse in Angstrom-x11???