rk3568_ubuntu_r60_v1.3.2/yocto/meta-quectel-app/recipes/usb-mount/files/find-touchscreen.sh

12 lines
342 B
Bash
Raw Normal View History

2023-11-03 14:12:44 +08:00
#!/bin/sh
MDEV=`echo $MDEV | sed 's#input/##g'`
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