mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
24239ded2d
/dev/v4l |-- by-id | |-- usb-046d_09a4_C4B15020-video-index0 -> ../../video0 | `-- usb-05a9_a511-video-index0 -> ../../video1 `-- by-path |-- pci-0000:00:1d.0-usb-0:1:1.0-video-index0 -> ../../video1 `-- pci-0000:00:1d.7-usb-0:2:1.0-video-index0 -> ../../video0
18 lines
708 B
Plaintext
18 lines
708 B
Plaintext
# do not edit this file, it will be overwritten on update
|
|
|
|
ACTION!="add|change", GOTO="persistent_v4l_end"
|
|
SUBSYSTEM!="video4linux", GOTO="persistent_v4l_end"
|
|
|
|
SUBSYSTEMS=="usb", IMPORT{program}="usb_id --export"
|
|
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{program}="path_id %p"
|
|
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"
|