| 1 |
# udev rules for pcscd and CCID readers
|
| 2 |
|
| 3 |
# Gemplus PCMCIA Card
|
| 4 |
#SUBSYSTEMS=="pcmcia", DRIVERS=="serial_cs", ACTION=="add", ATTRS{prod_id1}=="Gemplus", ATTRS{prod_id2}=="SerialPort", ATTRS{prod_id3}=="GemPC Card", RUN+="/usr/sbin/pcscd --hotplug"
|
| 5 |
|
| 6 |
# If not adding the device, go away
|
| 7 |
ACTION!="add", GOTO="pcscd_ccid_rules_end"
|
| 8 |
|
| 9 |
# Kobil mIDentity
|
| 10 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0d46", ATTRS{idProduct}=="4081", RUN+="/usr/sbin/Kobil_mIDentity_switch"
|
| 11 |
|
| 12 |
# generic CCID device
|
| 13 |
SUBSYSTEMS=="usb", ATTRS{bInterfaceClass}=="0b", RUN+="/usr/sbin/pcscd --hotplug"
|
| 14 |
|
| 15 |
# non CCID generic (InterfaceClass: 0xFF)
|
| 16 |
# CherrySmartTerminalST2XXX.txt
|
| 17 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="046a", ATTRS{idProduct}=="003e", RUN+="/usr/sbin/pcscd --hotplug"
|
| 18 |
# DellSK-3106.txt
|
| 19 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="413c", ATTRS{idProduct}=="2100", RUN+="/usr/sbin/pcscd --hotplug"
|
| 20 |
# MySmartPad.txt
|
| 21 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="09be", ATTRS{idProduct}=="0002", RUN+="/usr/sbin/pcscd --hotplug"
|
| 22 |
# SCR331-DI-NTTCom.txt
|
| 23 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04e6", ATTRS{idProduct}=="5120", RUN+="/usr/sbin/pcscd --hotplug"
|
| 24 |
# SCR331-DI.txt
|
| 25 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04e6", ATTRS{idProduct}=="5111", RUN+="/usr/sbin/pcscd --hotplug"
|
| 26 |
# SDI010.txt
|
| 27 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04e6", ATTRS{idProduct}=="5121", RUN+="/usr/sbin/pcscd --hotplug"
|
| 28 |
# SPR532.txt
|
| 29 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04e6", ATTRS{idProduct}=="e003", RUN+="/usr/sbin/pcscd --hotplug"
|
| 30 |
# Verisign_secure_storage_token.txt
|
| 31 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="08e6", ATTRS{idProduct}=="1359", RUN+="/usr/sbin/pcscd --hotplug"
|
| 32 |
# Verisign_secure_token.txt
|
| 33 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="08e6", ATTRS{idProduct}=="ace0", RUN+="/usr/sbin/pcscd --hotplug"
|
| 34 |
# SchlumbergerSema Cyberflex Access e-gate
|
| 35 |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0973", ATTRS{idProduct}=="0003", RUN+="/usr/sbin/pcscd --hotplug"
|
| 36 |
|
| 37 |
# All done
|
| 38 |
LABEL="pcscd_ccid_rules_end"
|