diff options
author | Marcin Juszkiewicz <hrw@koansoftware.com> | 2009-01-13 18:19:39 +0100 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@koansoftware.com> | 2009-01-16 15:50:22 +0100 |
commit | 74c7fba31d7f8e9431534a0c78db3ba224f416ec (patch) | |
tree | 8a25e88048784390fc89cc8ff33e66f8f2cbbf8f /packages/busybox/files | |
parent | 56ed3d7fecee0aa8ae39f85b414cb8c8a4c56459 (diff) |
busybox/mdev: support devices with ads7846 touchscreen and wrong modalias
Diffstat (limited to 'packages/busybox/files')
-rw-r--r-- | packages/busybox/files/find-touchscreen.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/busybox/files/find-touchscreen.sh b/packages/busybox/files/find-touchscreen.sh index 34835e7f1c..1582ea891c 100644 --- a/packages/busybox/files/find-touchscreen.sh +++ b/packages/busybox/files/find-touchscreen.sh @@ -1,7 +1,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 |