summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-11-25 14:31:53 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-12-03 17:59:39 +0000
commit935b598736f33645486dffffc120c3ad58f86a9e (patch)
tree8d91137f96f540b694e509c03a4f810e10cc26d7
parent1a6a15e568dbcae6876bbe823c9d23d74f16bcad (diff)
downloadpoky-935b598736f33645486dffffc120c3ad58f86a9e.tar.gz
udev: Fix touchscreen link creation with latest version
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r--meta/packages/udev/udev-145/local.rules4
-rw-r--r--meta/packages/udev/udev_145.bb2
2 files changed, 4 insertions, 2 deletions
diff --git a/meta/packages/udev/udev-145/local.rules b/meta/packages/udev/udev-145/local.rules
index 5b926018f5..dab319b431 100644
--- a/meta/packages/udev/udev-145/local.rules
+++ b/meta/packages/udev/udev-145/local.rules
@@ -28,4 +28,6 @@ KERNEL=="rtc0", SYMLINK+="rtc"
28ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}" 28ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}"
29 29
30# Create a symlink to any touchscreen input device 30# Create a symlink to any touchscreen input device
31SUBSYSTEM=="input", KERNEL=="event[0-9]*", SYSFS{modalias}=="input:*-e0*,3,*a0,1,*18,*", SYMLINK+="input/touchscreen0" 31# Need to use ../ so the eventX can find the parent inputX modalias which is a directory above
32SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{../modalias}=="input:*-e0*,3,*a0,1,*18,*", SYMLINK+="input/touchscreen0"
33
diff --git a/meta/packages/udev/udev_145.bb b/meta/packages/udev/udev_145.bb
index ab455570ba..ab5d3fe458 100644
--- a/meta/packages/udev/udev_145.bb
+++ b/meta/packages/udev/udev_145.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
3the hotplug package and requires a kernel not older than 2.6.12." 3the hotplug package and requires a kernel not older than 2.6.12."
4RPROVIDES_${PN} = "hotplug" 4RPROVIDES_${PN} = "hotplug"
5 5
6PR = "r5" 6PR = "r6"
7 7
8SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ 8SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
9 file://run.rules \ 9 file://run.rules \