diff options
author | Dan Williams <dcbw@redhat.com> | 2010-04-09 19:38:22 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-04-09 19:38:22 -0700 |
commit | 44deca2c5a9b7414d2e65fc62f87f67df3066810 (patch) | |
tree | 3ccdd172bbc80b89d72f49a96d4400427667c69e | |
parent | 78c232c2d1901aee15a2d304e838443c9b1d37ba (diff) |
core: blacklist Gemplus smarcard reader (bgo #608022)
-rw-r--r-- | src/77-mm-pcmcia-device-blacklist.rules | 10 | ||||
-rw-r--r-- | src/Makefile.am | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/77-mm-pcmcia-device-blacklist.rules b/src/77-mm-pcmcia-device-blacklist.rules new file mode 100644 index 00000000..76259a20 --- /dev/null +++ b/src/77-mm-pcmcia-device-blacklist.rules @@ -0,0 +1,10 @@ +# do not edit this file, it will be overwritten on update + +ACTION!="add|change", GOTO="mm_pcmcia_device_blacklist_end" +SUBSYSTEM!="pcmcia", GOTO="mm_pcmcia_device_blacklist_end" + +# Gemplus Serial Port smartcard adapter +ATTRS{prod_id1}=="Gemplus", ATTRS{prod_id2}=="SerialPort", ATTRS{prod_id3}=="GemPC Card", ENV{ID_MM_DEVICE_IGNORE}="1" + +LABEL="mm_pcmcia_device_blacklist_end" + diff --git a/src/Makefile.am b/src/Makefile.am index 8df001f5..13832a17 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,8 @@ SUBDIRS=. tests udevrulesdir = $(UDEV_BASE_DIR)/rules.d udevrules_DATA = \ - 77-mm-usb-device-blacklist.rules + 77-mm-usb-device-blacklist.rules \ + 77-mm-pcmcia-device-blacklist.rules EXTRA_DIST = \ $(udevrules_DATA) |