In deze versie is een bug geïntroduceerd die je de “/dev/serial/by-id ” directory mist. Zie ook dit draadje.
De oplossing is om de vorige versie van ‘/usr/lib/udev/rules.d/60-serial.rules’ te pakken. Basis kopiëren/plakken van versie die wel werkt:
# bewerk dit bestand niet, het wordt overschreven bij update
ACTION==”verwijderen”, GOTO=”serial_end”
SUBSYSTEEM!=”tty”, GOTO=”serial_end”
SUBSYSTEMS==”usb”, IMPORT{ingebouwd}=”usb_id”, IMPORT{ingebouwd}=”hwdb –subsystem=usb”
SUBSYSTEMS==”pci”, ENV{ID_BUS}==””, ENV{ID_BUS}=”pci”,
ENV{ID_VENDOR_ID}=”$attr{leverancier}”, ENV{ID_MODEL_ID}=”$attr{device}”,
IMPORTEREN{ingebouwd}=”hwdb –subsystem=pci”
# /dev/serial/by-path/, /dev/serial/by-id/ voor USB-apparaten
KERNEL!=”ttyUSB[0-9]*|ttyACM[0-9]*”, GOTO=”serial_end”
SUBSYSTEMS==”usb-serial”, ENV{.ID_PORT}=”$attr{port_number}”
IMPORTEREN{ingebouwd}=”path_id”
ENV{ID_PATH}==”?*”, ENV{.ID_PORT}==””, SYMLINK+=”serieel/by-path/$env{ID_PATH}”
ENV{ID_PATH}==”?*”, ENV{.ID_PORT}==”?*”, SYMLINK+=”serial/by-path/$env{ID_PATH}-port$env{.ID_PORT}”
ENV{ID_BUS}==””, GOTO=”serial_end”
ENV{ID_SERIAL}==””, GOTO=”serial_end”
ENV{ID_USB_INTERFACE_NUM}==””, GOTO=”serial_end”
ENV{.ID_PORT}==””, SYMLINK+=”serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}”
ENV{.ID_PORT}==”?*”, SYMLINK+=”serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}-port$env{.ID_PORT}”
LABEL=”serial_end”
[Reactie gewijzigd door GorgeousMetal op 30 april 2023 11:48]
credit :Source link