diff options
author | Jeff Hatch <jhatch@multitech.com> | 2016-08-11 14:04:48 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2016-08-11 14:04:48 -0500 |
commit | b713559f0a085bae1b035d1311d9d53574823fdd (patch) | |
tree | cd9cb02c6555e64b35d0e2fffcd843c521df878b /recipes-core/udev | |
parent | 5e76626af7b4809b94bf6d89c4ae317aa1046c8d (diff) | |
download | meta-mlinux-b713559f0a085bae1b035d1311d9d53574823fdd.tar.gz meta-mlinux-b713559f0a085bae1b035d1311d9d53574823fdd.tar.bz2 meta-mlinux-b713559f0a085bae1b035d1311d9d53574823fdd.zip |
For MTR 3.5 on mLinux, add the udev rules for the G3 and C2 radios so that modem_at0 and modem_at1 get instantiated in /dev
Diffstat (limited to 'recipes-core/udev')
-rw-r--r-- | recipes-core/udev/udev-182/cellular_radios.rules | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-core/udev/udev-182/cellular_radios.rules b/recipes-core/udev/udev-182/cellular_radios.rules index 28f3131..1231d02 100644 --- a/recipes-core/udev/udev-182/cellular_radios.rules +++ b/recipes-core/udev/udev-182/cellular_radios.rules @@ -46,5 +46,11 @@ ATTRS{idVendor}=="1199", ATTRS{idProduct}=="0028", ENV{ID_PORT}=="0", SYMLINK+=" # LAT1, LEU1, LVW2: ttyUSB2, ttyUSB3 (port 04 and port 05) ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1201", ENV{ID_IFACE}=="04", SYMLINK+="modem_at0" ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1201", ENV{ID_IFACE}=="05", SYMLINK+="modem_at1" +# G3: ttyACM0, ttyACM1 +ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="0022", ENV{ID_IFACE}=="00", SYMLINK+="modem_at0" +ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="0022", ENV{ID_IFACE}=="02", SYMLINK+="modem_at1" +# C2: ttyUSB0, ttyUSB1 (Telit Documentation: Modem Port = USB1, Aux Port = USB0) +ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1011", ENV{ID_IFACE}=="01", SYMLINK+="modem_at0" +ATTRS{idVendor}=="1bc7", ATTRS{idProduct}=="1011", ENV{ID_IFACE}=="00", SYMLINK+="modem_at1" LABEL="mlinux_end" |