Date: Thu, 22 Oct 2020 13:24:47 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552975 - in head/security/u2f-devd: . files Message-ID: <202010221324.09MDOlQD087517@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Thu Oct 22 13:24:47 2020 New Revision: 552975 URL: https://svnweb.freebsd.org/changeset/ports/552975 Log: security/u2f-devd: Add Nitrokey FIDO 2 Support PR: 250524 Submitted by: Henrik Rosenke <rosenke@dssgmbh.de> Modified: head/security/u2f-devd/Makefile head/security/u2f-devd/files/u2f.conf Modified: head/security/u2f-devd/Makefile ============================================================================== --- head/security/u2f-devd/Makefile Thu Oct 22 13:21:44 2020 (r552974) +++ head/security/u2f-devd/Makefile Thu Oct 22 13:24:47 2020 (r552975) @@ -3,6 +3,7 @@ PORTNAME= u2f-devd PORTVERSION= 1.1.10 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= # DISTFILES= # Modified: head/security/u2f-devd/files/u2f.conf ============================================================================== --- head/security/u2f-devd/files/u2f.conf Thu Oct 22 13:21:44 2020 (r552974) +++ head/security/u2f-devd/files/u2f.conf Thu Oct 22 13:24:47 2020 (r552975) @@ -178,6 +178,22 @@ attach 100 { action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name"; }; +# Nitrokey FIDO 2 +notify 100 { + match "system" "USB"; + match "subsystem" "DEVICE"; + match "type" "ATTACH"; + match "vendor" "0x20a0"; + match "product" "0x42b1"; + action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev"; +}; + +attach 100 { + match "vendor" "0x20a0"; + match "product" "0x42b1"; + action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name"; +}; + # Google Titan U2F notify 100 { match "system" "USB";
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010221324.09MDOlQD087517>