aboutsummaryrefslogtreecommitdiff
path: root/rules
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2015-03-20 12:28:12 +0100
committerAnthony G. Basile <blueness@gentoo.org>2015-04-12 11:18:38 -0400
commit7457718859e2a1cbd3a4ebd50413ce00276027c8 (patch)
tree4dbc68bb04401d94e7c172ac37cf8068349e9447 /rules
parentrules: fix input-name for keyboard rules (diff)
downloadeudev-7457718859e2a1cbd3a4ebd50413ce00276027c8.tar.gz
eudev-7457718859e2a1cbd3a4ebd50413ce00276027c8.tar.bz2
eudev-7457718859e2a1cbd3a4ebd50413ce00276027c8.zip
rules: avoid 'device/' accesses
We should never access parents, as the sysfs hierarchy is in no way stable. Use KERNELS== etc. to match on a parent, then access it via $attr{} (which accesses the matching device, not the current device). Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules')
-rw-r--r--rules/60-keyboard.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/60-keyboard.rules b/rules/60-keyboard.rules
index af3edb5f5..fe616917d 100644
--- a/rules/60-keyboard.rules
+++ b/rules/60-keyboard.rules
@@ -13,7 +13,7 @@ DRIVERS=="atkbd", IMPORT{builtin}="hwdb 'keyboard:atkbd:$attr{[dmi/id]modalias}'
RUN{builtin}+="keyboard", GOTO="keyboard_end"
# device matching the input device name and the machine's DMI data
-IMPORT{builtin}="hwdb 'keyboard:name:$attr{device/name}:$attr{[dmi/id]modalias}'", \
+KERNELS=="input*", IMPORT{builtin}="hwdb 'keyboard:name:$attr{name}:$attr{[dmi/id]modalias}'", \
RUN{builtin}+="keyboard", GOTO="keyboard_end"
LABEL="keyboard_end"