mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
f573629c0b
This adds a udev tag that is supposed to be attached to all devices that might potentially expose a PKCS#11 slot, i.e. CCID smartcards and similar. We can then use the appearance of devices of this type as trigger to rescan PKCS#11 slots.
14 lines
394 B
Plaintext
14 lines
394 B
Plaintext
# do not edit this file, it will be overwritten on update
|
|
|
|
ACTION=="remove", GOTO="fido_id_end"
|
|
|
|
SUBSYSTEM=="hidraw", IMPORT{program}="fido_id"
|
|
|
|
# Tag any form of security token as such
|
|
ENV{ID_SECURITY_TOKEN}=="1", TAG+="security-device"
|
|
|
|
# Tag any CCID device (i.e. Smartcard Reader) as security token
|
|
SUBSYSTEM=="usb", ATTR{bInterfaceClass}=="0b", TAG+="security-device"
|
|
|
|
LABEL="fido_id_end"
|