From owner-dev-commits-ports-all@freebsd.org Wed Jul 14 17:41:10 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 91EA2653246; Wed, 14 Jul 2021 17:41:10 +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 4GQ4YL1cYWz3F6K; Wed, 14 Jul 2021 17:41:10 +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 161A71A262; Wed, 14 Jul 2021 17:41:10 +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 16EHf9pa029770; Wed, 14 Jul 2021 17:41:09 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16EHf9s6029769; Wed, 14 Jul 2021 17:41:09 GMT (envelope-from git) Date: Wed, 14 Jul 2021 17:41:09 GMT Message-Id: <202107141741.16EHf9s6029769@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Dmitry Marakasov Subject: git: f27b55311a29 - main - security/u2f-devd: add USB ID for HyperFIDO Pro Mini MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: amdmi3 X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: f27b55311a293d04dc4c1d0c048803ebbf8ef619 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jul 2021 17:41:10 -0000 The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=f27b55311a293d04dc4c1d0c048803ebbf8ef619 commit f27b55311a293d04dc4c1d0c048803ebbf8ef619 Author: Dmitry Marakasov AuthorDate: 2021-07-14 16:26:40 +0000 Commit: Dmitry Marakasov CommitDate: 2021-07-14 17:37:31 +0000 security/u2f-devd: add USB ID for HyperFIDO Pro Mini PR: 256845 Submitted by: zarychtam@plan-b.pwste.edu.pl --- 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 8f619c5d8c49..858ee4f33c99 100644 --- a/security/u2f-devd/Makefile +++ b/security/u2f-devd/Makefile @@ -2,7 +2,7 @@ PORTNAME= u2f-devd PORTVERSION= 1.1.10 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= # DISTFILES= # diff --git a/security/u2f-devd/files/u2f.conf b/security/u2f-devd/files/u2f.conf index e3ef3032a3ac..4181254333d5 100644 --- a/security/u2f-devd/files/u2f.conf +++ b/security/u2f-devd/files/u2f.conf @@ -56,13 +56,13 @@ notify 100 { match "subsystem" "DEVICE"; match "type" "ATTACH"; match "vendor" "(0x096e|0x2ccf)"; - match "product" "0x0880"; + match "product" "(0x0880|0x0854)"; action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev"; }; attach 100 { match "vendor" "(0x096e|0x2ccf)"; - match "product" "0x0880"; + match "product" "(0x0880|0x0854)"; action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name"; };