<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mtk-20170518/package/network/utils/wwan, branch master</title>
<subtitle>MTK 20170518 : Mediatek SDK based on OpenWRT Barrier Breaker</subtitle>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/'/>
<entry>
<title>wwan: Fix teardown for sierra_net driver</title>
<updated>2018-07-27T09:17:20+00:00</updated>
<author>
<name>Masashi Honma</name>
<email>masashi.honma@gmail.com</email>
</author>
<published>2018-07-17T23:40:33+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=d05967baecca33774ab95d4ffabbcb4cc9d0a1bf'/>
<id>d05967baecca33774ab95d4ffabbcb4cc9d0a1bf</id>
<content type='text'>
The sierra_net driver is using proto_directip_setup for setup. So use
proto_directip_teardown for teardown.

Signed-off-by: Masashi Honma &lt;masashi.honma@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The sierra_net driver is using proto_directip_setup for setup. So use
proto_directip_teardown for teardown.

Signed-off-by: Masashi Honma &lt;masashi.honma@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan: Add support for Gemalto Cinterion cellular modules</title>
<updated>2018-06-22T07:31:32+00:00</updated>
<author>
<name>David Thornley</name>
<email>david.thornley@touchstargroup.com</email>
</author>
<published>2018-06-22T06:25:22+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=cb262b09396edd171eb3903e50ce5ddeb593f963'/>
<id>cb262b09396edd171eb3903e50ce5ddeb593f963</id>
<content type='text'>
Includes specific support for PH8(1e2d-0053) / ELS61(1e2d-005b) modules.

Note for ELS61, the serial driver changes from serial option(ttyUSB) to usb-cdc (ttyACM).

Two additional fixes in this commit resolve issues with ttyACM devices: -

* wwan.sh - sys-fs has a subdirectory indirection (*/tty/ttyACMx) which was not handled properly
* wwan.usb - dependent scripts were not included, so this never actually called proto_set_available for example (and relied on inadvertent call for ttyUSB case)

Signed-off-by: David Thornley &lt;david.thornley@touchstargroup.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Includes specific support for PH8(1e2d-0053) / ELS61(1e2d-005b) modules.

Note for ELS61, the serial driver changes from serial option(ttyUSB) to usb-cdc (ttyACM).

Two additional fixes in this commit resolve issues with ttyACM devices: -

* wwan.sh - sys-fs has a subdirectory indirection (*/tty/ttyACMx) which was not handled properly
* wwan.usb - dependent scripts were not included, so this never actually called proto_set_available for example (and relied on inadvertent call for ttyUSB case)

Signed-off-by: David Thornley &lt;david.thornley@touchstargroup.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan: json format in some modem definitions</title>
<updated>2017-09-16T21:04:46+00:00</updated>
<author>
<name>Alexandru Ardelean</name>
<email>ardeleanalex@gmail.com</email>
</author>
<published>2017-09-04T13:16:00+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=ad510c4d62fd6dd879a02cb2253eb37c2179d9c0'/>
<id>ad510c4d62fd6dd879a02cb2253eb37c2179d9c0</id>
<content type='text'>
Method used:
```
cd package/network/utils/wwan/files/data
sed -e 's/}}/}/g' -i *
sed -e 's/}\t"acm": 1/\t"acm": 1/g' -i *
sed -e 's/}\t"generic": 1/\t"generic": 1/g' -i *
```

Manually adjusted commas.
Validated with
```
for f in `ls` ; do echo $f ; python -m json.tool &lt; $f || break ; done
```

Thanks to @lynxis for pointing out the commas.

Signed-off-by: Alexandru Ardelean &lt;ardeleanalex@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Method used:
```
cd package/network/utils/wwan/files/data
sed -e 's/}}/}/g' -i *
sed -e 's/}\t"acm": 1/\t"acm": 1/g' -i *
sed -e 's/}\t"generic": 1/\t"generic": 1/g' -i *
```

Manually adjusted commas.
Validated with
```
for f in `ls` ; do echo $f ; python -m json.tool &lt; $f || break ; done
```

Thanks to @lynxis for pointing out the commas.

Signed-off-by: Alexandru Ardelean &lt;ardeleanalex@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>DWR-512: adding wwan support for the dwr-512 3G modem</title>
<updated>2017-05-25T17:01:08+00:00</updated>
<author>
<name>Giuseppe Lippolis</name>
<email>giu.lippolis@gmail.com</email>
</author>
<published>2016-12-22T21:12:44+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=4ba2f4dc6357e85a8dbc98266a14197fb058159c'/>
<id>4ba2f4dc6357e85a8dbc98266a14197fb058159c</id>
<content type='text'>
This PR allow the 3G modem embedded in the DWR-512 to be managed
by the wwan-ncm scripts. The modem will use the usb-option and
usb-cdc-ether drivers.
The DWR-512 DT is updated accordingly.

Signed-off-by: Giuseppe Lippolis &lt;giu.lippolis@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR allow the 3G modem embedded in the DWR-512 to be managed
by the wwan-ncm scripts. The modem will use the usb-option and
usb-cdc-ether drivers.
The DWR-512 DT is updated accordingly.

Signed-off-by: Giuseppe Lippolis &lt;giu.lippolis@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan: rename data files</title>
<updated>2016-10-26T13:16:51+00:00</updated>
<author>
<name>Simon Hailes</name>
<email>btsimonh@googlemail.com</email>
</author>
<published>2016-10-11T19:30:15+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=86c6b07e15b25d1f6dbb7c0b1ef428c5c4c05395'/>
<id>86c6b07e15b25d1f6dbb7c0b1ef428c5c4c05395</id>
<content type='text'>
This is to ensure that git can be cloned onto a windows drive without failing.

Signed-off-by: Simon Hailes &lt;btsimonh@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is to ensure that git can be cloned onto a windows drive without failing.

Signed-off-by: Simon Hailes &lt;btsimonh@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>global: change my email address</title>
<updated>2016-05-12T01:29:36+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@phrozen.org</email>
</author>
<published>2016-05-11T07:06:21+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=b8ab6af1a9b8cf1ac76e7008661fd3e775e9ae2b'/>
<id>b8ab6af1a9b8cf1ac76e7008661fd3e775e9ae2b</id>
<content type='text'>
Signed-off-by: John Crispin &lt;john@phrozen.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: John Crispin &lt;john@phrozen.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan: Improve USB modem hotplug script</title>
<updated>2015-03-09T14:06:30+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2015-03-09T14:06:30+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=3f0f0b8eceebf25e844264b87c7e36d23141e626'/>
<id>3f0f0b8eceebf25e844264b87c7e36d23141e626</id>
<content type='text'>
Adds ncm proto to the list of checked protocols, sets interfaces
unavailable on device removal and removes the unnecessary ifup
command.

Signed-off-by: Matti Laakso &lt;malaakso@elisanet.fi&gt;

SVN-Revision: 44629
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds ncm proto to the list of checked protocols, sets interfaces
unavailable on device removal and removes the unnecessary ifup
command.

Signed-off-by: Matti Laakso &lt;malaakso@elisanet.fi&gt;

SVN-Revision: 44629
</pre>
</div>
</content>
</entry>
<entry>
<title>comgt, wwan: Move USB data files to wwan package</title>
<updated>2015-03-09T14:06:20+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2015-03-09T14:06:20+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=dfb9e7c31c9bbe43641c4a28ca0506e698dd8f2a'/>
<id>dfb9e7c31c9bbe43641c4a28ca0506e698dd8f2a</id>
<content type='text'>
USB modem data files should be a part of the wwan package, which
actually uses them unlike comgt.

Signed-off-by: Matti Laakso &lt;malaakso@elisanet.fi&gt;

SVN-Revision: 44628
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
USB modem data files should be a part of the wwan package, which
actually uses them unlike comgt.

Signed-off-by: Matti Laakso &lt;malaakso@elisanet.fi&gt;

SVN-Revision: 44628
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a few SPDX tags</title>
<updated>2014-11-02T12:20:54+00:00</updated>
<author>
<name>Steven Barth</name>
<email>cyrus@openwrt.org</email>
</author>
<published>2014-11-02T12:20:54+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=bec9d38fa4ed4dcf13230fe6b91b4ef81306accc'/>
<id>bec9d38fa4ed4dcf13230fe6b91b4ef81306accc</id>
<content type='text'>
Signed-off-by: Steven Barth &lt;steven@midlink.org&gt;

SVN-Revision: 43151
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Steven Barth &lt;steven@midlink.org&gt;

SVN-Revision: 43151
</pre>
</div>
</content>
</entry>
<entry>
<title>wwan: add a generic 3g/4g proto</title>
<updated>2014-10-08T08:01:20+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2014-10-08T08:01:20+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=90120bb7712361d67edb84faee78f2b191e1158b'/>
<id>90120bb7712361d67edb84faee78f2b191e1158b</id>
<content type='text'>
this proto handler will detect which of 3g, qmi, mbim, ncm or directip you need
for a stick and setup uci automagically

Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;

SVN-Revision: 42837
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this proto handler will detect which of 3g, qmi, mbim, ncm or directip you need
for a stick and setup uci automagically

Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;

SVN-Revision: 42837
</pre>
</div>
</content>
</entry>
</feed>
