mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 04:30:06 +01:00
udev: don't use IMPORT+=
IMPORT really only supports == and != and for a short while udevd warned about this before that warning was reverted again. Where anything else is used, it falls back to ==. systemd upstream rules all use a single = though, so let's stick with that to be consistent, even if it is technically wrong (udevd will warn about this in debug mode). See the long discussion in systemd upstream for details: https://github.com/systemd/systemd/issues/14062 Fixes #461 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
1f5a27bf3d
commit
281ecf10d1
3 changed files with 4 additions and 4 deletions
|
|
@ -725,7 +725,7 @@ litest_init_device_udev_rules(struct litest_test_device *dev, FILE *f)
|
|||
if (need_keyboard_builtin) {
|
||||
fprintf(f, ""
|
||||
"ATTRS{name}==\"litest %s*\","
|
||||
" IMPORT{builtin}+=\"keyboard\"\n",
|
||||
" IMPORT{builtin}=\"keyboard\"\n",
|
||||
dev->name);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
ACTION!="add|change", GOTO="libinput_device_group_end"
|
||||
KERNEL!="event[0-9]*", GOTO="libinput_device_group_end"
|
||||
|
||||
ATTRS{phys}=="?*", IMPORT{program}+="@UDEV_TEST_PATH@libinput-device-group %S%p"
|
||||
ATTRS{phys}=="?*", IMPORT{program}="@UDEV_TEST_PATH@libinput-device-group %S%p"
|
||||
|
||||
LABEL="libinput_device_group_end"
|
||||
|
|
|
|||
|
|
@ -15,12 +15,12 @@ KERNEL!="event*", GOTO="libinput_fuzz_override_end"
|
|||
# about that.
|
||||
ATTRS{capabilities/abs}!="0", \
|
||||
ENV{ID_INPUT_TOUCHPAD}=="1", \
|
||||
IMPORT{program}+="@UDEV_TEST_PATH@libinput-fuzz-extract %S%p", \
|
||||
IMPORT{program}="@UDEV_TEST_PATH@libinput-fuzz-extract %S%p", \
|
||||
RUN{program}+="@UDEV_TEST_PATH@libinput-fuzz-to-zero %S%p", \
|
||||
GOTO="libinput_fuzz_override_end"
|
||||
ATTRS{capabilities/abs}!="0", \
|
||||
ENV{ID_INPUT_TOUCHSCREEN}=="1", \
|
||||
IMPORT{program}+="@UDEV_TEST_PATH@libinput-fuzz-extract %S%p", \
|
||||
IMPORT{program}="@UDEV_TEST_PATH@libinput-fuzz-extract %S%p", \
|
||||
RUN{program}+="@UDEV_TEST_PATH@libinput-fuzz-to-zero %S%p", \
|
||||
GOTO="libinput_fuzz_override_end"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue