You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
618 B
16 lines
618 B
# 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"
|
|
|
|
|