Skip to content
This repository has been archived by the owner on Oct 14, 2020. It is now read-only.

Commit

Permalink
Merge branch 'pr-123'
Browse files Browse the repository at this point in the history
  • Loading branch information
klali committed Mar 27, 2019
2 parents b704a14 + 9bfe57f commit 8d210b5
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions u2f.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,22 @@ notify 100 {
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
};

# Tomu board + chopstx U2F
# Tomu board + chopstx U2F + SoloKeys
notify 100 {
match "system" "USB";
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "0x0483";
match "product" "0xcdab";
match "product" "(0xcdab|0xa2ca)";
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
};

# SoloKeys
notify 100 {
match "system" "USB";
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "0x1209";
match "product" "(0x5070|0x50b0)";
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
};

0 comments on commit 8d210b5

Please sign in to comment.