]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/fuzz/fuzz-udev-rules/70-touchpad.rules
Merge pull request #16219 from ssahani/network-sr-iov
[thirdparty/systemd.git] / test / fuzz / fuzz-udev-rules / 70-touchpad.rules
CommitLineData
2e646cbe
EV
1# do not edit this file, it will be overwritten on update
2
3ACTION=="remove", GOTO="touchpad_end"
4ENV{ID_INPUT}=="", GOTO="touchpad_end"
5ENV{ID_INPUT_TOUCHPAD}=="", GOTO="touchpad_end"
6KERNEL!="event*", GOTO="touchpad_end"
7
8# touchpad:<subsystem>:v<vid>p<pid>:name:<name>:*
9KERNELS=="input*", ENV{ID_BUS}!="", \
10 IMPORT{builtin}="hwdb 'touchpad:$env{ID_BUS}:v$attr{id/vendor}p$attr{id/product}:name:$attr{name}:'", \
11 GOTO="touchpad_end"
12
13LABEL="touchpad_end"