Date: Wed, 17 Mar 2021 22:57:23 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568694 - in head/security/u2f-devd: . files Message-ID: <202103172257.12HMvNvg007356@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Mar 17 22:57:23 2021 New Revision: 568694 URL: https://svnweb.freebsd.org/changeset/ports/568694 Log: - Add another reported USB product ID for Thetis key PR: 243527 Submitted by: sahajsarup@gmail.com Modified: head/security/u2f-devd/Makefile head/security/u2f-devd/files/u2f.conf Modified: head/security/u2f-devd/Makefile ============================================================================== --- head/security/u2f-devd/Makefile Wed Mar 17 22:29:37 2021 (r568693) +++ head/security/u2f-devd/Makefile Wed Mar 17 22:57:23 2021 (r568694) @@ -3,7 +3,7 @@ PORTNAME= u2f-devd PORTVERSION= 1.1.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= # DISTFILES= # Modified: head/security/u2f-devd/files/u2f.conf ============================================================================== --- head/security/u2f-devd/files/u2f.conf Wed Mar 17 22:29:37 2021 (r568693) +++ head/security/u2f-devd/files/u2f.conf Wed Mar 17 22:57:23 2021 (r568694) @@ -152,13 +152,13 @@ notify 100 { match "subsystem" "DEVICE"; match "type" "ATTACH"; match "vendor" "0x1ea8"; - match "product" "0xf025"; + match "product" "(0xf025|0xfc25)"; action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev"; }; attach 100 { match "vendor" "0x1ea8"; - match "product" "0xf025"; + match "product" "(0xf025|0xfc25)"; action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name"; };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103172257.12HMvNvg007356>