summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen West <bewest@gmail.com>2015-05-01 14:10:03 -0700
committerBen West <bewest@gmail.com>2015-05-01 14:10:03 -0700
commit086e7387d37e427a5bcab87da1314b6c8281072f (patch)
treed9dff5d7f8d692c438326141c8e992136cf7cce7
parent1265e18c56f2b84f345536368ee8b6026ce484d5 (diff)
Add udev permissions
-rw-r--r--etc/udev/rules.d/80-dexcom.rules17
1 files changed, 17 insertions, 0 deletions
diff --git a/etc/udev/rules.d/80-dexcom.rules b/etc/udev/rules.d/80-dexcom.rules
new file mode 100644
index 0000000..ff10aa9
--- /dev/null
+++ b/etc/udev/rules.d/80-dexcom.rules
@@ -0,0 +1,17 @@
1
2
3
4# udev can only match one entry at a time, but this triggers additional add entries.
5# 22a3:0047
6# 22a3 0047
7ATTRS{idVendor}=="22a3", ATTRS{idProduct}=="0047", \
8 ENV{ID_MM_DEVICE_IGNORE}="1", \
9 MODE="0664", GROUP="plugdev"
10
11
12# create a symlink to the ttyUSB device created automatically above
13#ACTION=="add", \
14# SUBSYSTEM=="tty", \
15# ATTRS{idVendor}=="22a3", ATTRS{idProduct}=="0047", \
16# SYMLINK+="ttyUSB.Dexcom%n"
17