Date: Fri, 9 Mar 2018 18:40:06 +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: r463990 - in head/security/u2f-devd: . files Message-ID: <201803091840.w29Ie6qQ038878@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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"; +};
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803091840.w29Ie6qQ038878>