aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-core-ivi/busybox/files/find-touchscreen.sh
blob: da7ceb64fb0b1b816767ee161e927339c132b6c7 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if [ `egrep "input:.*-e0.*,3,.*a0,1,.*18,.*" /sys/class/input/$MDEV/device/modalias|wc -l` -gt 0 ]; then
	ln -sf /dev/input/$MDEV /dev/input/touchscreen0
fi

if [ `egrep "ads7846" /sys/class/input/$MDEV/device/modalias|wc -l` -gt 0 ]; then
	ln -sf /dev/input/$MDEV /dev/input/touchscreen0
fi