security/u2f-devd: add USB ID for SoloKeys Solo 2

Refernce: https://github.com/solokeys/solo2/

Approved by:	dbaio
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D32862
This commit is contained in:
Ed Maste 2021-11-05 19:00:25 -04:00
parent 98c6d63406
commit 210f94a9b5
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -232,13 +232,13 @@ notify 100 {
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "0x1209";
match "product" "(0x5070|0x50b0)";
match "product" "(0x5070|0x50b0|0xbeee)";
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
};
attach 100 {
match "vendor" "0x1209";
match "product" "(0x5070|0x50b0)";
match "product" "(0x5070|0x50b0|0xbeee)";
action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
};