summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-05-29 20:32:56 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-05-30 13:54:49 +0200
commitc1111466bd1307f810c4494573bb28f924dceda4 (patch)
tree859462bd4c388c6cb9b092f33037c751497d6b1b /meta-oe
parent7aa7dd55db8db6ec350c743ce42eb469395a3208 (diff)
downloadmeta-openembedded-c1111466bd1307f810c4494573bb28f924dceda4.tar.gz
udev 171: cleanup duplicated rules some more
Install only upstream rules and the touchscreen0 symlink rule That gets us to: root@beagleboard-c3:~# time (udevadm trigger ; udevadm settle) real 0m1.540s user 0m0.062s sys 0m0.273s Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-core/udev/udev/touchscreen.rules18
-rw-r--r--meta-oe/recipes-core/udev/udev_171.bb16
2 files changed, 21 insertions, 13 deletions
diff --git a/meta-oe/recipes-core/udev/udev/touchscreen.rules b/meta-oe/recipes-core/udev/udev/touchscreen.rules
new file mode 100644
index 0000000000..d83fd1673d
--- /dev/null
+++ b/meta-oe/recipes-core/udev/udev/touchscreen.rules
@@ -0,0 +1,18 @@
1# There are a number of modifiers that are allowed to be used in some
2# of the different fields. They provide the following subsitutions:
3#
4# %n the "kernel number" of the device.
5# For example, 'sda3' has a "kernel number" of '3'
6# %e the smallest number for that name which does not matches an existing node
7# %k the kernel name for the device
8# %M the kernel major number for the device
9# %m the kernel minor number for the device
10# %b the bus id for the device
11# %c the string returned by the PROGRAM
12# %s{filename} the content of a sysfs attribute
13# %% the '%' char itself
14#
15
16# Create a symlink to any touchscreen input device
17SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{modalias}=="input:*-e0*,3,*a0,1,*18,*", SYMLINK+="input/touchscreen0"
18SUBSYSTEM=="input", KERNEL=="event[0-9]*", ATTRS{modalias}=="ads7846", SYMLINK+="input/touchscreen0"
diff --git a/meta-oe/recipes-core/udev/udev_171.bb b/meta-oe/recipes-core/udev/udev_171.bb
index 05b7bec603..612da1062a 100644
--- a/meta-oe/recipes-core/udev/udev_171.bb
+++ b/meta-oe/recipes-core/udev/udev_171.bb
@@ -20,7 +20,7 @@ DEFAULT_PREFERENCE = "-1"
20DEPENDS = "gperf-native usbutils acl glib-2.0" 20DEPENDS = "gperf-native usbutils acl glib-2.0"
21 21
22SRCREV = "${PV}" 22SRCREV = "${PV}"
23PR = "r0" 23PR = "r1"
24 24
25# version specific SRC_URI 25# version specific SRC_URI
26SRC_URI = "git://git.kernel.org/pub/scm/linux/hotplug/udev.git;protocol=git \ 26SRC_URI = "git://git.kernel.org/pub/scm/linux/hotplug/udev.git;protocol=git \
@@ -31,10 +31,7 @@ SRC_URI[sha256sum] = "1d5c548d7c85d30b3508b82ad88d853e28dddb6c526d0e67aa92ac18af
31 31
32# generic SRC_URI 32# generic SRC_URI
33SRC_URI += " \ 33SRC_URI += " \
34 file://mount.sh \ 34 file://touchscreen.rules \
35 file://mount.blacklist \
36 file://network.sh \
37 file://local.rules \
38 file://default \ 35 file://default \
39 file://init \ 36 file://init \
40 file://cache \ 37 file://cache \
@@ -103,20 +100,13 @@ do_install () {
103 install -d ${D}${sysconfdir}/default 100 install -d ${D}${sysconfdir}/default
104 install -m 0755 ${WORKDIR}/default ${D}${sysconfdir}/default/udev 101 install -m 0755 ${WORKDIR}/default ${D}${sysconfdir}/default/udev
105 102
106 cp ${S}/rules/rules.d/* ${D}${sysconfdir}/udev/rules.d/ 103 install -m 0644 ${WORKDIR}/touchscreen.rules ${D}${sysconfdir}/udev/rules.d/touchscreen.rules
107
108 install -m 0644 ${WORKDIR}/mount.blacklist ${D}${sysconfdir}/udev/
109 install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules
110 104
111 touch ${D}${sysconfdir}/udev/saved.uname 105 touch ${D}${sysconfdir}/udev/saved.uname
112 touch ${D}${sysconfdir}/udev/saved.cmdline 106 touch ${D}${sysconfdir}/udev/saved.cmdline
113 touch ${D}${sysconfdir}/udev/saved.devices 107 touch ${D}${sysconfdir}/udev/saved.devices
114 touch ${D}${sysconfdir}/udev/saved.atags 108 touch ${D}${sysconfdir}/udev/saved.atags
115 109
116 install -d ${D}${sysconfdir}/udev/scripts/
117
118 install -m 0755 ${WORKDIR}/mount.sh ${D}${sysconfdir}/udev/scripts/mount.sh
119 install -m 0755 ${WORKDIR}/network.sh ${D}${sysconfdir}/udev/scripts
120} 110}
121 111
122# Create the cache after checkroot has run 112# Create the cache after checkroot has run