]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/fuzz/fuzz-udev-rules/60-persistent-v4l.rules
Merge pull request #16219 from ssahani/network-sr-iov
[thirdparty/systemd.git] / test / fuzz / fuzz-udev-rules / 60-persistent-v4l.rules
CommitLineData
2e646cbe
EV
1# do not edit this file, it will be overwritten on update
2
3ACTION=="remove", GOTO="persistent_v4l_end"
4SUBSYSTEM!="video4linux", GOTO="persistent_v4l_end"
5ENV{MAJOR}=="", GOTO="persistent_v4l_end"
6
7IMPORT{program}="v4l_id $devnode"
8
9SUBSYSTEMS=="usb", IMPORT{builtin}="usb_id"
10KERNEL=="video*", ENV{ID_SERIAL}=="?*", SYMLINK+="v4l/by-id/$env{ID_BUS}-$env{ID_SERIAL}-video-index$attr{index}"
11
12# check for valid "index" number
13TEST!="index", GOTO="persistent_v4l_end"
14ATTR{index}!="?*", GOTO="persistent_v4l_end"
15
16IMPORT{builtin}="path_id"
17ENV{ID_PATH}=="?*", KERNEL=="video*|vbi*", SYMLINK+="v4l/by-path/$env{ID_PATH}-video-index$attr{index}"
18ENV{ID_PATH}=="?*", KERNEL=="audio*", SYMLINK+="v4l/by-path/$env{ID_PATH}-audio-index$attr{index}"
19
20LABEL="persistent_v4l_end"