mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
ef2ad30aee
This change is only about the source tree. We have tmpfiles.d/, modprobe.d/, sysctl.d/, and sysusers.d/, but for historical reasons, rules/ didn't fit this pattern. We also *install* it as rules.d/. Let's rename to be consistent.
21 lines
769 B
Plaintext
21 lines
769 B
Plaintext
# do not edit this file, it will be overwritten on update
|
|
|
|
ACTION=="remove", GOTO="persistent_v4l_end"
|
|
SUBSYSTEM!="video4linux", GOTO="persistent_v4l_end"
|
|
ENV{MAJOR}=="", GOTO="persistent_v4l_end"
|
|
|
|
IMPORT{program}="v4l_id $devnode"
|
|
|
|
SUBSYSTEMS=="usb", IMPORT{builtin}="usb_id"
|
|
KERNEL=="video*", ENV{ID_SERIAL}=="?*", SYMLINK+="v4l/by-id/$env{ID_BUS}-$env{ID_SERIAL}-video-index$attr{index}"
|
|
|
|
# check for valid "index" number
|
|
TEST!="index", GOTO="persistent_v4l_end"
|
|
ATTR{index}!="?*", GOTO="persistent_v4l_end"
|
|
|
|
IMPORT{builtin}="path_id"
|
|
ENV{ID_PATH}=="?*", KERNEL=="video*|vbi*", SYMLINK+="v4l/by-path/$env{ID_PATH}-video-index$attr{index}"
|
|
ENV{ID_PATH}=="?*", KERNEL=="audio*", SYMLINK+="v4l/by-path/$env{ID_PATH}-audio-index$attr{index}"
|
|
|
|
LABEL="persistent_v4l_end"
|