1
0

hardware wallets: pull udev rules into our repository

README.md heavily based on 060c7fc618/hwilib/udev/README.md
This commit is contained in:
SomberNight
2019-11-15 14:58:32 +01:00
parent 6ebbaa60ef
commit 600b26eed6
9 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Linux udev support file.
#
# This is a example udev file for HIDAPI devices which changes the permissions
# to 0666 (world readable/writable) for a specific device on Linux systems.
#
# - Copy this file into /etc/udev/rules.d and unplug and re-plug your Coldcard.
# - Udev does not have to be restarted.
#
# probably not needed:
SUBSYSTEMS=="usb", ATTRS{idVendor}=="d13e", ATTRS{idProduct}=="cc10", GROUP="plugdev", MODE="0666"
# required:
# from <https://github.com/signal11/hidapi/blob/master/udev/99-hid.rules>
KERNEL=="hidraw*", ATTRS{idVendor}=="d13e", ATTRS{idProduct}=="cc10", GROUP="plugdev", MODE="0666"