View | Details | Raw Unified | Return to bug 282715 | Differences between
and this patch

Collapse All | Expand All

(-)b/security/u2f-devd/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	u2f-devd
1
PORTNAME=	u2f-devd
2
PORTVERSION=	1.1.10
2
PORTVERSION=	1.1.10
3
PORTREVISION=	8
3
PORTREVISION=	9
4
CATEGORIES=	security
4
CATEGORIES=	security
5
MASTER_SITES=	#
5
MASTER_SITES=	#
6
DISTFILES=	#
6
DISTFILES=	#
(-)b/security/u2f-devd/files/u2f.conf (-3 / +18 lines)
Lines 72-84 notify 100 { Link Here
72
	match "subsystem"	"DEVICE";
72
	match "subsystem"	"DEVICE";
73
	match "type"		"ATTACH";
73
	match "type"		"ATTACH";
74
	match "vendor"		"0x096e";
74
	match "vendor"		"0x096e";
75
	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d)";
75
	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d|0x0868)";
76
	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
76
	action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
77
};
77
};
78
78
79
attach 100 {
79
attach 100 {
80
	match "vendor"		"0x096e";
80
	match "vendor"		"0x096e";
81
	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d)";
81
	match "product"		"(0x0850|0x0852|0x0853|0x0854|0x0856|0x0858|0x085a|0x085b|0x085d|0x0868)";
82
	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
82
	action	"chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
83
};
83
};
84
84
Lines 303-305 attach 100 { Link Here
303
	match "product"		"(0x53c0|0x53c1)";
303
	match "product"		"(0x53c0|0x53c1)";
304
	action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
304
	action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
305
};
305
};
306
- 
306
307
# Token2 FIDO2
308
notify 100 {
309
        match "system"          "USB";
310
        match "subsystem"       "DEVICE";
311
        match "type"            "ATTACH";
312
        match "vendor"          "0x349e";
313
        match "product"         "0x0202";
314
        action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
315
};
316
317
attach 100 {
318
        match "vendor"          "0x349e";
319
        match "product"         "0x0202";
320
        action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
321
};

Return to bug 282715