diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-07-05 10:25:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-05 10:25:59 -0700 |
commit | b1b93cf9ca8b798f7db3fc6ba250c8644649d59c (patch) | |
tree | cbafb5afea5bcdbbe66c3a62e9600b98936aadcc /rules/70-touchpad.rules | |
parent | a17402291b627e330c44d1461c105de3277f4d88 (diff) | |
parent | 0bb7b9860fa752f27b83a8032819a40be7812ee1 (diff) |
Merge pull request #3638 from whot/udev-prop-touchpad-integration
tag touchpads as internal/external
Diffstat (limited to 'rules/70-touchpad.rules')
-rw-r--r-- | rules/70-touchpad.rules | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rules/70-touchpad.rules b/rules/70-touchpad.rules new file mode 100644 index 0000000000..7bede02dec --- /dev/null +++ b/rules/70-touchpad.rules @@ -0,0 +1,13 @@ +# do not edit this file, it will be overwritten on update + +ACTION=="remove", GOTO="touchpad_end" +ENV{ID_INPUT}=="", GOTO="touchpad_end" +ENV{ID_INPUT_TOUCHPAD}=="", GOTO="touchpad_end" +KERNEL!="event*", GOTO="touchpad_end" + +# touchpad:<subsystem>:v<vid>p<pid>:name:<name>:* +KERNELS=="input*", ENV{ID_BUS}!="", \ + IMPORT{builtin}="hwdb 'touchpad:$env{ID_BUS}:v$attr{id/vendor}p$attr{id/product}:name:$attr{name}:'", \ + GOTO="touchpad_end" + +LABEL="touchpad_end" |