Skip to content

Instantly share code, notes, and snippets.

@csexton
Created March 23, 2015 14:09
Show Gist options
  • Save csexton/f984b68722b7182363eb to your computer and use it in GitHub Desktop.
Save csexton/f984b68722b7182363eb to your computer and use it in GitHub Desktop.
Configure udev to allow non-root to dfu a RadBeacon
# udev can be configured to automatically set suitable file permissions on the USB device nodes.
#
# This will allow any member of the plugdev group access to the device nodes. It should be placed in the following file:
#
# /etc/udev/rules.d/radbeacon.rules
#
SUBSYSTEM=="usb", ATTR{idVendor}=="2458", ATTR{idProduct}=="0001", MODE="660", GROUP="plugdev"
SUBSYSTEM=="usb", ATTR{idVendor}=="2458", ATTR{idProduct}=="fffe", MODE="660", GROUP="plugdev"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment