summaryrefslogtreecommitdiff
path: root/development/teensy_loader_cli/49-teensy.rules
diff options
context:
space:
mode:
authorFelix Pfeifer <pfeifer[dot]felix[at]googlemail[dot]com>2010-12-16 22:53:48 -0200
committerErik Hanson <erik@slackbuilds.org>2010-12-17 07:56:49 -0600
commit5aac26c3cbfe743fe2c7c4c49d4554043a67f3cc (patch)
tree371c94f00f3a52091e2b1a9a5343217b35e170ce /development/teensy_loader_cli/49-teensy.rules
parent30316b4e641f973c3c26ffa628d0e3b75e69b547 (diff)
downloadslackbuilds-5aac26c3cbfe743fe2c7c4c49d4554043a67f3cc.tar.gz
development/teensy_loader_cli: Added (Teensy CLI downloader)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'development/teensy_loader_cli/49-teensy.rules')
-rw-r--r--development/teensy_loader_cli/49-teensy.rules30
1 files changed, 30 insertions, 0 deletions
diff --git a/development/teensy_loader_cli/49-teensy.rules b/development/teensy_loader_cli/49-teensy.rules
new file mode 100644
index 0000000000..b8d3cc7411
--- /dev/null
+++ b/development/teensy_loader_cli/49-teensy.rules
@@ -0,0 +1,30 @@
+# This file must be placed at:
+#
+# /etc/udev/rules.d/49-teensy.rules (preferred location)
+# or
+# /lib/udev/rules.d/49-teensy.rules (req'd on some broken systems)
+#
+#
+SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", MODE:="0666"
+KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", SYMLINK+="ttyUSB00%n", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1"
+#
+# If you share your linux system with other users, or just don't like the
+# idea of write permission for everybody, you can replace MODE:="0666" with
+# OWNER:="yourusername" to create the device owned by you, or with
+# GROUP:="somegroupname" and mange access using standard unix groups.
+#
+#
+# If using USB Serial you get a new device each time (Ubuntu 9.10)
+# eg: /dev/ttyACM0, ttyACM1, ttyACM2, ttyACM3, ttyACM4, etc
+# apt-get remove --purge modemmanager (reboot may be necessary)
+#
+#
+# Older modem proding (eg, Ubuntu 9.04) caused very slow serial device detection.
+# To fix, add this near top of /lib/udev/rules.d/77-nm-probe-modem-capabilities.rules
+# SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", GOTO="nm_modem_probe_end"
+#
+#
+# (old udev rules)
+#SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="047[78]", MODE:="0666"
+#SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="048[02]", MODE:="0666"
+#KERNEL=="ttyACM*", SYMLINK+="ttyUSB00%n", MODE:="0666"