]> git.ipfire.org Git - thirdparty/systemd.git/blame - rules.d/60-serial.rules
dlfcn-util: add dlsym_many_and_warn() helper
[thirdparty/systemd.git] / rules.d / 60-serial.rules
CommitLineData
bc4c7518
KS
1# do not edit this file, it will be overwritten on update
2
1c5f4cb1
KS
3ACTION=="remove", GOTO="serial_end"
4SUBSYSTEM!="tty", GOTO="serial_end"
5
6SUBSYSTEMS=="pci", ENV{ID_BUS}="pci", ENV{ID_VENDOR_ID}="$attr{vendor}", ENV{ID_MODEL_ID}="$attr{device}"
876c75fe
ZJS
7# We already ran the hwdb builtin for devices with MODALIAS in 50-default.rules.
8# Let's cover the remaining case here, where we walk up the tree to find a node with $MODALIAS.
9ENV{MODALIAS}=="", SUBSYSTEMS=="pci", IMPORT{builtin}="hwdb --subsystem=pci"
1c5f4cb1
KS
10
11# /dev/serial/by-path/, /dev/serial/by-id/ for USB devices
12KERNEL!="ttyUSB[0-9]*|ttyACM[0-9]*", GOTO="serial_end"
bc4c7518 13
edb0d9d8 14SUBSYSTEMS=="usb-serial", ENV{.ID_PORT}="$attr{port_number}"
bc4c7518 15
d7867b31 16IMPORT{builtin}="path_id"
edb0d9d8
KS
17ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="", SYMLINK+="serial/by-path/$env{ID_PATH}"
18ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="?*", SYMLINK+="serial/by-path/$env{ID_PATH}-port$env{.ID_PORT}"
bc4c7518 19
d7867b31 20IMPORT{builtin}="usb_id"
1c5f4cb1 21ENV{ID_SERIAL}=="", GOTO="serial_end"
edb0d9d8 22SUBSYSTEMS=="usb", ENV{ID_USB_INTERFACE_NUM}="$attr{bInterfaceNumber}"
1c5f4cb1 23ENV{ID_USB_INTERFACE_NUM}=="", GOTO="serial_end"
edb0d9d8
KS
24ENV{.ID_PORT}=="", SYMLINK+="serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}"
25ENV{.ID_PORT}=="?*", SYMLINK+="serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}-port$env{.ID_PORT}"
bc4c7518 26
1c5f4cb1 27LABEL="serial_end"