From nobody Sat Nov 6 00:40:40 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 07DFD184B568; Sat, 6 Nov 2021 00:40:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HmJSm2Gmxz4c8Z; Sat, 6 Nov 2021 00:40:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2278D218A3; Sat, 6 Nov 2021 00:40:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1A60ee48037646; Sat, 6 Nov 2021 00:40:40 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1A60eeo2037645; Sat, 6 Nov 2021 00:40:40 GMT (envelope-from git) Date: Sat, 6 Nov 2021 00:40:40 GMT Message-Id: <202111060040.1A60eeo2037645@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Ed Maste Subject: git: 210f94a9b561 - main - security/u2f-devd: add USB ID for SoloKeys Solo 2 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: emaste X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 210f94a9b5617545707fb33ec275f3d4140481a7 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by emaste (doc, src committer): URL: https://cgit.FreeBSD.org/ports/commit/?id=210f94a9b5617545707fb33ec275f3d4140481a7 commit 210f94a9b5617545707fb33ec275f3d4140481a7 Author: Ed Maste AuthorDate: 2021-11-05 23:00:25 +0000 Commit: Ed Maste CommitDate: 2021-11-06 00:40:19 +0000 security/u2f-devd: add USB ID for SoloKeys Solo 2 Refernce: https://github.com/solokeys/solo2/ Approved by: dbaio Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D32862 --- security/u2f-devd/Makefile | 2 +- security/u2f-devd/files/u2f.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/security/u2f-devd/Makefile b/security/u2f-devd/Makefile index 858ee4f33c99..841cf6e80559 100644 --- a/security/u2f-devd/Makefile +++ b/security/u2f-devd/Makefile @@ -2,7 +2,7 @@ PORTNAME= u2f-devd PORTVERSION= 1.1.10 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MASTER_SITES= # DISTFILES= # diff --git a/security/u2f-devd/files/u2f.conf b/security/u2f-devd/files/u2f.conf index 4181254333d5..bde74fd6bf7a 100644 --- a/security/u2f-devd/files/u2f.conf +++ b/security/u2f-devd/files/u2f.conf @@ -232,13 +232,13 @@ notify 100 { match "subsystem" "DEVICE"; match "type" "ATTACH"; match "vendor" "0x1209"; - match "product" "(0x5070|0x50b0)"; + match "product" "(0x5070|0x50b0|0xbeee)"; action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev"; }; attach 100 { match "vendor" "0x1209"; - match "product" "(0x5070|0x50b0)"; + match "product" "(0x5070|0x50b0|0xbeee)"; action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name"; };