FreeCalypso > hg > fc-usbser-tools
comparison udev/67-freecalypso.rules @ 106:de3b299561b3
udev: add rules file that works on my system
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Oct 2023 01:08:28 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
105:1e820ed0904e | 106:de3b299561b3 |
---|---|
1 # This udev rules file, copied to /etc/udev/rules.d , works on | |
2 # Mother Mychaela's Slackware 14.2 system. I am absolutely NOT | |
3 # a udev expert, I don't claim to understand it, but the present | |
4 # concoction is modeled after OpenOCD's udev rules file. | |
5 | |
6 ACTION!="add|change", GOTO="freecalypso_rules_end" | |
7 SUBSYSTEM!="usb|tty", GOTO="freecalypso_rules_end" | |
8 | |
9 # FTDI default IDs | |
10 | |
11 # FT232x (single-channel) default | |
12 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="660", GROUP="plugdev" | |
13 | |
14 # FT2232x default | |
15 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", MODE="660", GROUP="plugdev" | |
16 | |
17 # FT4232H default | |
18 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6011", MODE="660", GROUP="plugdev" | |
19 | |
20 # FT232H default | |
21 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6014", MODE="660", GROUP="plugdev" | |
22 | |
23 # ID codes allocated by FTDI to Falconia Partners LLC, | |
24 # used extensively in FreeCalypso queendom | |
25 | |
26 # These two codes are used for FT2232x MPSSE+UART configs (JTAG quirk) | |
27 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="7150", MODE="660", GROUP="plugdev" | |
28 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="7151", MODE="660", GROUP="plugdev" | |
29 | |
30 # FreeCalypso dual UART with boot control | |
31 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="7152", MODE="660", GROUP="plugdev" | |
32 | |
33 # MCU host emulation and other configs where no ttyUSB devices | |
34 # should be created at all, userspace access only | |
35 ATTRS{idVendor}=="0403", ATTRS{idProduct}=="7157", MODE="660", GROUP="plugdev" | |
36 | |
37 # CP2102 devices | |
38 | |
39 # CP2102 default ID | |
40 ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE="660", GROUP="plugdev" | |
41 | |
42 # Foxconn T-Com TC300 | |
43 ATTRS{idVendor}=="0489", ATTRS{idProduct}=="e000", MODE="660", GROUP="plugdev" | |
44 | |
45 # Foxconn Pirelli DP-L10 | |
46 ATTRS{idVendor}=="0489", ATTRS{idProduct}=="e003", MODE="660", GROUP="plugdev" | |
47 | |
48 LABEL="freecalypso_rules_end" |