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

Carlos J. Puga Medina cpm at FreeBSD.org
Fri Mar 9 18:40:06 UTC 2018


Author: cpm
Date: Fri Mar  9 18:40:05 2018
New Revision: 463990
URL: https://svnweb.freebsd.org/changeset/ports/463990

Log:
  - Add udev rules for more devices
  - Bump PORTREVISION
  
  Approved by:	Greg V <greg at 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	Fri Mar  9 18:30:48 2018	(r463989)
+++ head/security/u2f-devd/Makefile	Fri Mar  9 18:40:05 2018	(r463990)
@@ -3,6 +3,7 @@
 
 PORTNAME=	u2f-devd
 PORTVERSION=	1.0.0
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	#
 DISTFILES=	#

Modified: head/security/u2f-devd/files/u2f.conf
==============================================================================
--- head/security/u2f-devd/files/u2f.conf	Fri Mar  9 18:30:48 2018	(r463989)
+++ head/security/u2f-devd/files/u2f.conf	Fri Mar  9 18:40:05 2018	(r463990)
@@ -161,3 +161,35 @@ attach 100 {
 	match "product"		"0xf025";
 	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
 };
+
+# Nitrokey FIDO U2F
+notify 100 {
+	match "system"		"USB";
+	match "subsystem"	"DEVICE";
+	match "type"		"ATTACH";
+	match "vendor"		"0x20a0";
+	match "product"		"0x4287";
+	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
+};
+
+attach 100 {
+	match "vendor"		"0x20a0";
+	match "product"		"0x4287";
+	action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
+};
+
+# Google Titan U2F
+notify 100 {
+	match "system"		"USB";
+	match "subsystem"	"DEVICE";
+	match "type"		"ATTACH";
+	match "vendor"		"0x18d1";
+	match "product"		"0x5026";
+	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
+};
+
+attach 100 {
+	match "vendor"		"0x18d1";
+	match "product"		"0x5026";
+	action "chgrp u2f /dev/$device-name; chmod g+rw /dev/device-name";
+};


More information about the svn-ports-all mailing list