summaryrefslogtreecommitdiff
path: root/meta/packages
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-11-25 15:01:47 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-11-25 15:01:47 +0000
commit43dd23b93d1a88bdf7dc9e149daf826d6128a123 (patch)
treef9a46a93d4b55448630234d70b391213e8719906 /meta/packages
parentb6b45ca53850c6b8ee2df92c855af87a407f25ca (diff)
downloadopenembedded-core-43dd23b93d1a88bdf7dc9e149daf826d6128a123.tar.gz
openembedded-core-43dd23b93d1a88bdf7dc9e149daf826d6128a123.tar.bz2
openembedded-core-43dd23b93d1a88bdf7dc9e149daf826d6128a123.tar.xz
openembedded-core-43dd23b93d1a88bdf7dc9e149daf826d6128a123.zip
udev-141: Backport fix from 145 which is also needed here
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r--meta/packages/udev/udev-141/local.rules4
-rw-r--r--meta/packages/udev/udev_141.bb2
2 files changed, 4 insertions, 2 deletions
diff --git a/meta/packages/udev/udev-141/local.rules b/meta/packages/udev/udev-141/local.rules
index 5b926018f..dab319b43 100644
--- a/meta/packages/udev/udev-141/local.rules
+++ b/meta/packages/udev/udev-141/local.rules
@@ -28,4 +28,6 @@ KERNEL=="rtc0", SYMLINK+="rtc"
ACTION=="add", DEVPATH=="/devices/*", ENV{MODALIAS}=="?*", RUN+="/sbin/modprobe $env{MODALIAS}"
# Create a symlink to any touchscreen input device
-SUBSYSTEM=="input", KERNEL=="event[0-9]*", SYSFS{modalias}=="input:*-e0*,3,*a0,1,*18,*", SYMLINK+="input/touchscreen0"
+# Need to use ../ so the eventX can find the parent inputX modalias which is a directory above
+SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{../modalias}=="input:*-e0*,3,*a0,1,*18,*", SYMLINK+="input/touchscreen0"
+
diff --git a/meta/packages/udev/udev_141.bb b/meta/packages/udev/udev_141.bb
index 5476195ea..82be51794 100644
--- a/meta/packages/udev/udev_141.bb
+++ b/meta/packages/udev/udev_141.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
the hotplug package and requires a kernel not older than 2.6.12."
RPROVIDES_${PN} = "hotplug"
-PR = "r4"
+PR = "r5"
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://noasmlinkage.patch;patch=1 \