From ef6e7c4efb9a43d8e474d184278242066d61e71c Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 5 Jun 2009 11:27:56 -0400 Subject: Add model/vendor descriptions for PCI & USB net/tty devices --- rules.d/75-tty-description.rules | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rules.d/75-tty-description.rules (limited to 'rules.d/75-tty-description.rules') diff --git a/rules.d/75-tty-description.rules b/rules.d/75-tty-description.rules new file mode 100644 index 0000000..ac868ad --- /dev/null +++ b/rules.d/75-tty-description.rules @@ -0,0 +1,14 @@ +# do not edit this file, it will be overwritten on update + +ACTION!="add|change", GOTO="tty_end" +SUBSYSTEM!="tty", GOTO="tty_end" + +SUBSYSTEMS=="usb", ENV{ID_MODEL}=="", IMPORT{program}="usb_id --export %p" +SUBSYSTEMS=="usb", ENV{ID_MODEL_FROM_DATABASE}=="", IMPORT{program}="usb-db %p" +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", ENV{ID_MODEL_FROM_DATABASE}=="", IMPORT{program}="pci-db %p" +SUBSYSTEMS=="pci", ENV{ID_BUS}="pci", ENV{ID_VENDOR_ID}="$attr{vendor}", ENV{ID_MODEL_ID}="$attr{device}" + +LABEL="tty_end" -- cgit