1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

security/u2f-devd: add USB ID for HyperFIDO Pro Mini

PR:		256845
Submitted by:	zarychtam@plan-b.pwste.edu.pl
This commit is contained in:
Dmitry Marakasov 2021-07-14 19:26:40 +03:00
parent b864f8b8ca
commit f27b55311a
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= u2f-devd
PORTVERSION= 1.1.10
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= security
MASTER_SITES= #
DISTFILES= #

View File

@ -56,13 +56,13 @@ notify 100 {
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "(0x096e|0x2ccf)";
match "product" "0x0880";
match "product" "(0x0880|0x0854)";
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
};
attach 100 {
match "vendor" "(0x096e|0x2ccf)";
match "product" "0x0880";
match "product" "(0x0880|0x0854)";
action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
};