svn commit: r568694 - in head/security/u2f-devd: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Mar 17 22:57:24 UTC 2021


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 at 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";
 };
 


More information about the svn-ports-all mailing list