specter-desktop/udev
Stepan Snigirev 57091ff2b8
Feature: Add Jade multisig support (#1520)
* update jadepy library

* display multisig

* add multisig change detection when signing tx with Jade

* requests is available

* update udev rules jade and hwi/jade.py

* black

* sort signers everywhere
2022-01-14 18:21:31 +01:00
..
20-hw1.rules fix ledger (#682) 2020-11-22 14:53:29 +01:00
49-micropython.rules update udev rules for diy (#742) 2020-12-05 11:52:31 +01:00
51-coinkite.rules Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
51-hid-digitalbitbox.rules Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
51-trezor.rules Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
51-usb-keepkey.rules Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
52-hid-digitalbitbox.rules Pyinstaller builds (#258) 2020-07-26 11:20:13 +02:00
53-hid-bitbox02.rules add bitbox2 udev rules (#402) 2020-09-19 11:11:49 +02:00
54-hid-bitbox02.rules add bitbox2 udev rules (#402) 2020-09-19 11:11:49 +02:00
55-usb-jade.rules Feature: Add Jade multisig support (#1520) 2022-01-14 18:21:31 +01:00
README.md Add Blockstream Jade support (#1234) 2021-06-16 00:40:43 +02:00

udev rules

This directory contains all of the udev rules for the supported devices as retrieved from vendor websites and repositories. These are necessary for the devices to be reachable on linux environments.

Usage

Apply these rules by copying them to /etc/udev/rules.d/ and notifying udevadm. Your user will need to be added to the plugdev group, which needs to be created if it does not already exist.

$ sudo cp udev/*.rules /etc/udev/rules.d/
$ sudo udevadm trigger
$ sudo udevadm control --reload-rules
$ sudo groupadd plugdev
$ sudo usermod -aG plugdev `whoami`