Re: [OpenWrt-Devel] [PATCH] procd: Fix USB cellular modems

2014-06-07 Thread Felix Fietkau
On 2014-06-06 23:20, Matthew Reeve wrote:
 Without this patch, /etc/hotplug.d/tty/30-3g won't be called when you insert 
 or remove a USB-serial cellular modem.
 
 (see Ticket #14117)
 
 Signed-off-by: Matthew Reeve mre...@tenxnetworks.com
Applied in r41039, thanks.

- Felix
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] procd: Fix USB cellular modems

2014-06-06 Thread Matthew Reeve
Without this patch, /etc/hotplug.d/tty/30-3g won't be called when you insert or 
remove a USB-serial cellular modem.

(see Ticket #14117)

Signed-off-by: Matthew Reeve mre...@tenxnetworks.com

--- package/system/procd/files/hotplug.json 2014-05-27 22:34:33.175634831 
+
+++ package/system/procd/files/hotplug.json 2014-06-06 20:47:13.736795246 
+
@@ -13,7 +13,7 @@
[ null, 
full, ptmx, zero ],
],
[ regex, DEVNAME,
-   [ ^gpio, 
^hvc, ^tty ],
+   [ ^gpio, 
^hvc ],
],
],
[
@@ -76,10 +76,10 @@
],
[ if,
[ and,
-   [ eq, SUBSYSTEM,
-   [ tty, usb-serial ]
-   ],
-   [ regex, DEVNAME, ^ttyUSB ],
+   [ eq, SUBSYSTEM, usb-serial ],
+   [ regex, DEVNAME,
+   [ ^ttyUSB, ^ttyACM ]
+   ],
],
[ exec, /sbin/hotplug-call, tty ]
],
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel