Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Feb 2019 23:50:18 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492543 - in head/security/u2f-devd: . files
Message-ID:  <201902092350.x19NoI1c072159@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cpm
Date: Sat Feb  9 23:50:18 2019
New Revision: 492543
URL: https://svnweb.freebsd.org/changeset/ports/492543

Log:
  - Add udev rules for some new devices (BioPass FIDO2, JaCarta2 U2F, Tomu board with chopstx U2F)
  - Bump PORTREVISION
  
  Approved by:	Greg V <greg@unrelenting.technology> (maintainer)

Modified:
  head/security/u2f-devd/Makefile
  head/security/u2f-devd/files/u2f.conf

Modified: head/security/u2f-devd/Makefile
==============================================================================
--- head/security/u2f-devd/Makefile	Sat Feb  9 23:28:05 2019	(r492542)
+++ head/security/u2f-devd/Makefile	Sat Feb  9 23:50:18 2019	(r492543)
@@ -3,7 +3,7 @@
 
 PORTNAME=	u2f-devd
 PORTVERSION=	1.0.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	security
 MASTER_SITES=	#
 DISTFILES=	#

Modified: head/security/u2f-devd/files/u2f.conf
==============================================================================
--- head/security/u2f-devd/files/u2f.conf	Sat Feb  9 23:28:05 2019	(r492542)
+++ head/security/u2f-devd/files/u2f.conf	Sat Feb  9 23:50:18 2019	(r492543)
@@ -66,19 +66,19 @@ attach 100 {
 	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
 };
 
-# Feitian ePass FIDO
+# Feitian ePass FIDO, BioPass FIDO2
 notify 100 {
 	match "system"		"USB";
 	match "subsystem"	"DEVICE";
 	match "type"		"ATTACH";
 	match "vendor"		"0x096e";
-	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b)";
+	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d)";
 	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
 };
 
 attach 100 {
 	match "vendor"		"0x096e";
-	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b)";
+	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d)";
 	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
 };
 
@@ -88,13 +88,13 @@ notify 100 {
 	match "subsystem"	"DEVICE";
 	match "type"		"ATTACH";
 	match "vendor"		"0x24dc";
-	match "product"		"0x0101";
+	match "product"		"(0x0101|0x0501)";
 	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
 };
 
 attach 100 {
 	match "vendor"		"0x24dc";
-	match "product"		"0x0101";
+	match "product"		"(0x0101|0x0501)";
 	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
 };
 
@@ -191,5 +191,21 @@ notify 100 {
 attach 100 {
 	match "vendor"		"0x18d1";
 	match "product"		"0x5026";
+	action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
+};
+
+# Tomu board + chopstx U2F
+notify 100 {
+	match "system"		"USB";
+	match "subsystem"	"DEVICE";
+	match "type"		"ATTACH";
+	match "vendor"		"0x0483";
+	match "product"		"0xcdab";
+	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
+};
+
+attach 100 {
+	match "vendor"		"0x0483";
+	match "product"		"0xcdab";
 	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?201902092350.x19NoI1c072159>