<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mtk-20170518/target/linux/ppc40x, branch mtk-20170518</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>target/linux : drop many arch</title>
<updated>2018-09-14T20:25:09+00:00</updated>
<author>
<name>Ludovic Pouzenc</name>
<email>ludovic@pouzenc.fr</email>
</author>
<published>2018-09-14T20:25:09+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=3362d9fb3a94d0909b79c290abc8db6abe4cca21'/>
<id>3362d9fb3a94d0909b79c290abc8db6abe4cca21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>target/linux/*/image/Makefile: use new dts path variable</title>
<updated>2014-07-21T18:42:06+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2014-07-21T18:42:06+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=7d8f187201d361e1c0059d18d7e0f119ae4b6472'/>
<id>7d8f187201d361e1c0059d18d7e0f119ae4b6472</id>
<content type='text'>
Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;

SVN-Revision: 41791
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;

SVN-Revision: 41791
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update to 3.10.49 Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;</title>
<updated>2014-07-20T17:31:11+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2014-07-20T17:31:11+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=ba63338d3f8b791be2fb606f88bdec63a7aa7d53'/>
<id>ba63338d3f8b791be2fb606f88bdec63a7aa7d53</id>
<content type='text'>
SVN-Revision: 41776
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SVN-Revision: 41776
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10.36-&gt;3.10.44</title>
<updated>2014-06-26T13:47:42+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2014-06-26T13:47:42+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=994e5ce2f93bf8beeb099a9fd38d1dc358005c30'/>
<id>994e5ce2f93bf8beeb099a9fd38d1dc358005c30</id>
<content type='text'>
205-fix-headers_install.patch is obseleted by upstream commit 3246a0352e3d58380b9386570f1db1faf7edf8a8

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

SVN-Revision: 41351
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
205-fix-headers_install.patch is obseleted by upstream commit 3246a0352e3d58380b9386570f1db1faf7edf8a8

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

SVN-Revision: 41351
</pre>
</div>
</content>
</entry>
<entry>
<title>target/linux/*/base-files/lib/upgrade/platform.sh - wrong check for ARGC</title>
<updated>2014-06-02T12:43:22+00:00</updated>
<author>
<name>John Crispin</name>
<email>john@openwrt.org</email>
</author>
<published>2014-06-02T12:43:22+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=f933a741a9c44cea58b2b3837dca99fc55d0b957'/>
<id>f933a741a9c44cea58b2b3837dca99fc55d0b957</id>
<content type='text'>
ARGC is a 'C-ism', but not known/valid in shell-syntax - insert the correct
var $# (=number of args) here. under normal conditions this had no impact,
but we should at least correct it. the error was observable like this:

root@box:~ [ -e "/etc/functions.sh" ] &amp;&amp; . /etc/functions.sh
root@box:~ [ -e "/lib/functions.sh" ] &amp;&amp; . /lib/functions.sh
root@box:~ . /lib/upgrade/platform.sh
root@box:~ . /lib/upgrade/common.sh
root@box:~ platform_check_image /tmp/myfirmware.bin
ash: bad number
root@box:~ echo $?
0

Signed-off-by: Bastian Bittorf &lt;bittorf@bluebottle.com&gt;

SVN-Revision: 40915
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ARGC is a 'C-ism', but not known/valid in shell-syntax - insert the correct
var $# (=number of args) here. under normal conditions this had no impact,
but we should at least correct it. the error was observable like this:

root@box:~ [ -e "/etc/functions.sh" ] &amp;&amp; . /etc/functions.sh
root@box:~ [ -e "/lib/functions.sh" ] &amp;&amp; . /lib/functions.sh
root@box:~ . /lib/upgrade/platform.sh
root@box:~ . /lib/upgrade/common.sh
root@box:~ platform_check_image /tmp/myfirmware.bin
ash: bad number
root@box:~ echo $?
0

Signed-off-by: Bastian Bittorf &lt;bittorf@bluebottle.com&gt;

SVN-Revision: 40915
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10 to 3.10.36</title>
<updated>2014-04-12T11:59:07+00:00</updated>
<author>
<name>Gabor Juhos</name>
<email>juhosg@openwrt.org</email>
</author>
<published>2014-04-12T11:59:07+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=d2812cb036585a9dfe3147e691b4ec3dc3a188d8'/>
<id>d2812cb036585a9dfe3147e691b4ec3dc3a188d8</id>
<content type='text'>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 40467
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 40467
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10 to 3.10.34</title>
<updated>2014-03-27T09:28:33+00:00</updated>
<author>
<name>Gabor Juhos</name>
<email>juhosg@openwrt.org</email>
</author>
<published>2014-03-27T09:28:33+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=627baa28d33ca202e0f79e9a2a8eb6bc9d823a1a'/>
<id>627baa28d33ca202e0f79e9a2a8eb6bc9d823a1a</id>
<content type='text'>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 40291
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 40291
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10 to 3.10.32</title>
<updated>2014-02-23T10:59:40+00:00</updated>
<author>
<name>Gabor Juhos</name>
<email>juhosg@openwrt.org</email>
</author>
<published>2014-02-23T10:59:40+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=f677b1bc7e37642eb1c42d3068ff3c44eb5ed3cb'/>
<id>f677b1bc7e37642eb1c42d3068ff3c44eb5ed3cb</id>
<content type='text'>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 39707
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 39707
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10 to 3.10.28</title>
<updated>2014-01-26T11:30:34+00:00</updated>
<author>
<name>Gabor Juhos</name>
<email>juhosg@openwrt.org</email>
</author>
<published>2014-01-26T11:30:34+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=a2543d72d8a0b4a9efcee26c8af36d618de4c863'/>
<id>a2543d72d8a0b4a9efcee26c8af36d618de4c863</id>
<content type='text'>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 39399
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 39399
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update 3.10 to 3.10.26</title>
<updated>2014-01-11T16:06:37+00:00</updated>
<author>
<name>Gabor Juhos</name>
<email>juhosg@openwrt.org</email>
</author>
<published>2014-01-11T16:06:37+00:00</published>
<link rel='alternate' type='text/html' href='http://www.chd.sx/cgit/mtk-20170518/commit/?id=0e2586a7748385c97062a8d8816c98011175fb3d'/>
<id>0e2586a7748385c97062a8d8816c98011175fb3d</id>
<content type='text'>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

SVN-Revision: 39220
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

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