diff options
author | John Klug <john.klug@multitech.com> | 2019-01-03 17:50:18 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2019-01-03 17:50:49 -0600 |
commit | ca1ecd38c483b193cc722124d94b0d44067b6f58 (patch) | |
tree | 65d9396ff3b93b20600935e4651f4754d688682e /recipes-core/udev | |
parent | 75c999bd3ba33b2bce41a6364da0e0cc8f59d6e3 (diff) | |
download | meta-mlinux-ca1ecd38c483b193cc722124d94b0d44067b6f58.tar.gz meta-mlinux-ca1ecd38c483b193cc722124d94b0d44067b6f58.tar.bz2 meta-mlinux-ca1ecd38c483b193cc722124d94b0d44067b6f58.zip |
Fix mtrv1.rules for mtrv1 udev
Diffstat (limited to 'recipes-core/udev')
-rw-r--r-- | recipes-core/udev/eudev/mtrv1/mtrv1.rules | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/recipes-core/udev/eudev/mtrv1/mtrv1.rules b/recipes-core/udev/eudev/mtrv1/mtrv1.rules index 5d528e6..239a846 100644 --- a/recipes-core/udev/eudev/mtrv1/mtrv1.rules +++ b/recipes-core/udev/eudev/mtrv1/mtrv1.rules @@ -1,14 +1,13 @@ ACTION=="remove", GOTO="mlinux_end" SUBSYSTEM!="tty", GOTO="mlinux_end" -KERNEL!="ttyXRUSB[0-9]*", GOTO="mlinux_end" +KERNEL!="ttyUSB[0-9]*|ttyACM[0-9]*|ttyXRUSB[0-9]*|ttyS*", GOTO="mlinux_end" SUBSYSTEMS=="usb", ENV{ID_IFACE}="$attr{bInterfaceNumber}" ENV{ID_IFACE}=="", GOTO="mlinux_end" -# Accessory Ports -ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1412", ENV{ID_IFACE}=="00", SYMLINK+="ttyAP1" -ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1414", ENV{ID_IFACE}=="00", SYMLINK+="ttyAP1" -ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1412", ENV{ID_IFACE}=="02", SYMLINK+="ttyAP2" -ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1414", ENV{ID_IFACE}=="02", SYMLINK+="ttyAP2" +# mtr revA: bluetooth on exar chip (ACM0, iface 0) +ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1412", ENV{ID_IFACE}=="00", SYMLINK+="bt" +# mtr revA: external serial on exar chip (ACM1, iface 2) +ATTRS{idVendor}=="04e2", ATTRS{idProduct}=="1412", ENV{ID_IFACE}=="02", SYMLINK+="ext_serial" LABEL="mlinux_end" |