mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-23 17:20:26 +07:00
f17491e27d
<grawity> btw, in 15ce372b75
"call 'hwdb' with --subsystem=" you
actually added "usb_id --subsystem=usb" (75-tty-description.rules)
<kay> ouch :)
16 lines
599 B
Plaintext
16 lines
599 B
Plaintext
# do not edit this file, it will be overwritten on update
|
|
|
|
ACTION=="remove", GOTO="tty_end"
|
|
SUBSYSTEM!="tty", GOTO="tty_end"
|
|
|
|
SUBSYSTEMS=="usb", ENV{ID_MODEL}=="", IMPORT{builtin}="usb_id"
|
|
SUBSYSTEMS=="usb", IMPORT{builtin}="hwdb --subsystem=usb"
|
|
SUBSYSTEMS=="usb", ATTRS{idVendor}!="", ATTRS{idProduct}!="", ENV{ID_VENDOR_ID}="$attr{idVendor}", ENV{ID_MODEL_ID}="$attr{idProduct}"
|
|
SUBSYSTEMS=="usb", GOTO="tty_end"
|
|
|
|
SUBSYSTEMS=="pci", IMPORT{builtin}="hwdb --subsystem=usb"
|
|
SUBSYSTEMS=="pci", ENV{ID_BUS}="pci", ENV{ID_VENDOR_ID}="$attr{vendor}", ENV{ID_MODEL_ID}="$attr{device}"
|
|
|
|
|
|
LABEL="tty_end"
|