summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2009-06-05 11:27:56 -0400
committerDan Williams <dcbw@redhat.com>2009-06-05 11:27:56 -0400
commitef6e7c4efb9a43d8e474d184278242066d61e71c (patch)
treec607ac310a2a8b129bd9b754a3fa3ac5070718b4
parenteeb632dc3cf4ca51650c15cb278c28b800883bd0 (diff)
Add model/vendor descriptions for PCI & USB net/tty devices
-rw-r--r--rules.d/75-net-description.rules14
-rw-r--r--rules.d/75-tty-description.rules14
-rw-r--r--rules.d/Makefile.am4
3 files changed, 31 insertions, 1 deletions
diff --git a/rules.d/75-net-description.rules b/rules.d/75-net-description.rules
new file mode 100644
index 0000000..1c4c401
--- /dev/null
+++ b/rules.d/75-net-description.rules
@@ -0,0 +1,14 @@
+# do not edit this file, it will be overwritten on update
+
+ACTION!="add|change", GOTO="net_end"
+SUBSYSTEM!="net", GOTO="net_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="net_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="net_end"
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"
diff --git a/rules.d/Makefile.am b/rules.d/Makefile.am
index 65800ef..fe96761 100644
--- a/rules.d/Makefile.am
+++ b/rules.d/Makefile.am
@@ -4,4 +4,6 @@ udevrulesdir = $(udev_prefix)/lib/udev/rules.d
dist_udevrules_DATA = \
78-sound-card.rules \
- 60-persistent-alsa.rules
+ 60-persistent-alsa.rules \
+ 75-net-description.rules \
+ 75-tty-description.rules