mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* pyinstaller specs * add udev rules * remove ecdsa dep * udev rules, pyinstaller spec update * update udev readme * Fix issue with Tor service creation * remove pyinstaller artifacts for bip32 * main -> cli * remove daemon and debug modes from binaries * add aarch64 (ARM) build * fix when no tor * fix flake8 Co-authored-by: benk10 <ben.kaufman10@gmail.com>
11 lines
769 B
Text
11 lines
769 B
Text
# KeepKey: Your Private Bitcoin Vault
|
|
# http://www.keepkey.com/
|
|
# Put this file into /usr/lib/udev/rules.d or /etc/udev/rules.d
|
|
|
|
# KeepKey HID Firmware/Bootloader
|
|
SUBSYSTEM=="usb", ATTR{idVendor}=="2b24", ATTR{idProduct}=="0001", MODE="0666", GROUP="plugdev", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="keepkey%n"
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="2b24", ATTRS{idProduct}=="0001", MODE="0666", GROUP="plugdev", TAG+="uaccess", TAG+="udev-acl"
|
|
|
|
# KeepKey WebUSB Firmware/Bootloader
|
|
SUBSYSTEM=="usb", ATTR{idVendor}=="2b24", ATTR{idProduct}=="0002", MODE="0666", GROUP="plugdev", TAG+="uaccess", TAG+="udev-acl", SYMLINK+="keepkey%n"
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="2b24", ATTRS{idProduct}=="0002", MODE="0666", GROUP="plugdev", TAG+="uaccess", TAG+="udev-acl"
|