[OpenWrt-Devel] high load without reason

2014-04-23 Thread Bastian Bittorf
on some boxes we can see a high load, but i have no idea, what the cause of this: Mem: 27740K used, 1264K free, 0K shrd, 2160K buff, 9592K cached CPU: 0% usr 0% sys 0% nic 97% idle 0% io 0% irq 1% sirq Load average: 1.03 1.02 1.05 1/40 9974 PID PPID USER STAT VSZ %VSZ %CPU CO

[OpenWrt-Devel] Attitude adjustment replacing openssl by polarssl

2014-04-23 Thread cmsv
In the lights of the heartbeat bug and what is affected due to it as well as looking for reducing built firmware image size i am looking to use polarssl the same way barrier breaker development series uses PolarSSL for some packages as support exists if i am not mistaken In my specific case there

[OpenWrt-Devel] [PATCH v3] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Yousong Zhou
This patch adds protocol support for PPP over SSH. The protocol name is 'pppossh' with the following options. - server, required, SSH server name. - port, SSH server port. - sshuser, required, SSH login username. - identity, client private key file. Default to ~/.ssh/id_{rsa,dsa}. It must

[OpenWrt-Devel] [PATCH v2 3/3] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Yousong Zhou
This patch adds protocol support for PPP over SSH. The protocol name is 'pppossh' with the following options. - server, required, SSH server name. - port, SSH server port. - sshuser, required, SSH login username. - identity, client private key file. Default to ~/.ssh/id_{rsa,dsa}. It must

[OpenWrt-Devel] [PATCH v2 2/3] dnsmasq: add ipset and auth compilation options.

2014-04-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- v1 -> v2 - Incremented PKG_RELEASE. package/network/services/dnsmasq/Makefile | 18 -- .../network/services/dnsmasq/files/dnsmasq.init|5 + 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/package/network

[OpenWrt-Devel] [PATCH v2 1/3] base-files: remove duplicate stop_service() function.

2014-04-23 Thread Yousong Zhou
It was introduced in commit 2f966e8, "base-files: add a post start hook for procd managed services". Signed-off-by: Yousong Zhou --- package/base-files/Makefile|2 +- package/base-files/files/etc/rc.common |4 2 files changed, 1 insertions(+), 5 deletions(-) diff --git

Re: [OpenWrt-Devel] [PATCH 2/4] Remove *.orig and *.rej from .gitignore.

2014-04-23 Thread Yousong Zhou
On 24 April 2014 04:54, Jonas Gorski wrote: > On Wed, Apr 23, 2014 at 5:38 PM, Yousong Zhou wrote: >> On 23 April 2014 23:23, Felix Fietkau wrote: >>> On 2014-04-23 14:16, Yousong Zhou wrote: Signed-off-by: Yousong Zhou >>> Why? >>> >> >> There are times when I apply patches with patch uti

[OpenWrt-Devel] [PATCH] Add kernel modules for USB gadget serial devices.

2014-04-23 Thread Owen Kirby
This patch adds support for building the kernel modules for gadget serial devices. Signed-off-by: Owen Kirby --- package/kernel/linux/modules/usb.mk | 26 ++ 1 file changed, 26 insertions(+) diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/mod

[OpenWrt-Devel] [PATCH] Add kernel module for cramfs support.

2014-04-23 Thread Owen Kirby
This patch adds support for building support for cramfs filesystems as a kernel module. Signed-off-by: Owen Kirby --- package/kernel/linux/modules/fs.mk | 14 ++ 1 file changed, 14 insertions(+) diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.m

Re: [OpenWrt-Devel] [PATCH 2/4] Remove *.orig and *.rej from .gitignore.

2014-04-23 Thread Jonas Gorski
On Wed, Apr 23, 2014 at 5:38 PM, Yousong Zhou wrote: > On 23 April 2014 23:23, Felix Fietkau wrote: >> On 2014-04-23 14:16, Yousong Zhou wrote: >>> Signed-off-by: Yousong Zhou >> Why? >> > > There are times when I apply patches with patch utility, some *.orig > and *.rej files will be generated

[OpenWrt-Devel] [PATCH] Update authsae to latest version

2014-04-23 Thread Etienne CHAMPETIER
Ping tested, add a cool fix https://github.com/cozybit/authsae/commit/295164a83717ce59ca280468fc2f7edcea6b3cbf Signed-off-by: Etienne CHAMPETIER --- package/network/services/authsae/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/network/services/authsae/

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread Rafał Miłecki
2014-04-23 13:41 GMT+02:00 José Vázquez : > I don't know if any of the OpenWRT developers or contributors have > this router. If yes, my opinion is to add support for the board using > the patches sent by Matthew Fatheree as base, reworking them and drop > wireless support for now I think the lack

[OpenWrt-Devel] [PATCH v2] add opentracker package

2014-04-23 Thread Daniel
support for opentracker was suggested in ticket #7023 it's much tighter than cbtt and got only 20% of cbtt binary size Signed-off-by: Daniel Golle --- net/opentracker/Makefile | 54 ++ net/opentracker/files/opentracker.init | 16 + net/op

Re: [OpenWrt-Devel] [PATCH] DGN3500 (all known variants) factory and sysupgrade image building support

2014-04-23 Thread John Crispin
On 07/02/2014 23:23, Marco Antonio Mauro wrote: > index 585090e..641c99d 100644 --- a/tools/firmware-utils/Makefile > +++ b/tools/firmware-utils/Makefile @@ -66,6 +66,7 @@ define > Host/Compile $(call cc,mkporayfw, -Wall) #$(call cc,mkhilinkfw, > -lcrypto) $(call cc,mkdcs932, -Wall) +$

[OpenWrt-Devel] [PATCH] [package] hostapd eglibc 2.15 support

2014-04-23 Thread Zachery Stoddard
From: Zachery Stoddard This patch fixes compilation failure for hostapd when using eglibc 2.15. Patch is for BB but similar logic is required to get hostapd to compile in AA. Signed-off-by: Zachery Stoddard --- diff --git a/package/network/services/hostapd/Makefile /package/network/services/ho

Re: [OpenWrt-Devel] [PATCH] DGN3500 (all known variants) factory and sysupgrade image building support

2014-04-23 Thread John Crispin
On 23/04/2014 19:28, Marco Antonio Mauro wrote: > On Fri, Feb 7, 2014 at 11:23 PM, Marco Antonio Mauro > wrote: >> This patch adds factory image building for the DGN3500, all >> variants, and fixes sysupgrade images to make them play nice with >> the sercomm secondary boot loader. >> >> The fac

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread cmsv
Although it would be good to have this hardware supported aren't we all forgetting something such as BETTER alternatives without extra work and headaches ? I have seen this router costing from $279 to a typical price of $352 and more which ends up for being close to 400 bucks after taxes (sometim

Re: [OpenWrt-Devel] [PATCH] DGN3500 (all known variants) factory and sysupgrade image building support

2014-04-23 Thread Marco Antonio Mauro
On Fri, Feb 7, 2014 at 11:23 PM, Marco Antonio Mauro wrote: > This patch adds factory image building for the DGN3500, all variants, > and fixes sysupgrade images to make them play nice with the sercomm > secondary boot loader. > > The factory images can be used directly in the update dialog in the

[OpenWrt-Devel] [PATCH][bcm63xx]: CPVA502+ board fixes

2014-04-23 Thread dani
Some fixes for Telsey CPVA502+ bcm6348 routers: - reset the external PHY (eth1) with proper platform code, not using a led definiton - eth1 is an external phy, not a switch, deleted forced link speed - fixed led color Patch made for 3.14 kernel patches. Signed-off-by: Daniel Gonzalez Index: ta

Re: [OpenWrt-Devel] [PATCH 2/4] Remove *.orig and *.rej from .gitignore.

2014-04-23 Thread Yousong Zhou
On 23 April 2014 23:23, Felix Fietkau wrote: > On 2014-04-23 14:16, Yousong Zhou wrote: >> Signed-off-by: Yousong Zhou > Why? > There are times when I apply patches with patch utility, some *.orig and *.rej files will be generated in the tree and later copied in the final binary image. It would

Re: [OpenWrt-Devel] [PATCH 2/4] Remove *.orig and *.rej from .gitignore.

2014-04-23 Thread Felix Fietkau
On 2014-04-23 14:16, Yousong Zhou wrote: > Signed-off-by: Yousong Zhou Why? ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH 4/4] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Felix Fietkau
On 2014-04-23 14:30, Jo-Philipp Wich wrote: > Hi. > > I think you should reuse option names used by other protocols, we > already have far too much variation and abbreviation styles for common > option names - see my comments inline below. > >> This patch adds protocol support for PPP over SSH.

Re: [OpenWrt-Devel] [PATCH] ar71xx: abort building if there is failure when generating image.

2014-04-23 Thread Karl Palsson
On Wed, Apr 23, 2014 at 10:24:07PM +0800, Yousong Zhou wrote: > On 23 April 2014 21:40, Michel Stempin wrote: > > > > > > Le 23/04/2014 14:59, Bastian Bittorf a écrit : > > > >> * Yousong Zhou [23.04.2014 14:53]: > >> > >> once upon a time 36ea10375db186bf10c13d89bbdc4cfb62bf5fcc, the idea > >> w

[OpenWrt-Devel] AA Backport Request: r38817

2014-04-23 Thread Zachery Stoddard
Could someone please backport r38817 into AA? Thanks! ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] ar71xx: abort building if there is failure when generating image.

2014-04-23 Thread Yousong Zhou
On 23 April 2014 21:40, Michel Stempin wrote: > > > Le 23/04/2014 14:59, Bastian Bittorf a écrit : > >> * Yousong Zhou [23.04.2014 14:53]: >> >> once upon a time 36ea10375db186bf10c13d89bbdc4cfb62bf5fcc, the idea >> was NOT to abort because e.g. the user builts for a whole arch and >> only "some"

[OpenWrt-Devel] [PATCH] [ar71xx] WNDAP360 adding wifi LED support

2014-04-23 Thread Jacek Kikiewicz
From: Jacek Kikiewicz Re-sending as previous did not get where it should. I added WIFI LED support (so now AP blinks nicely), I removed WPS button GPIO (as it doesn't exist) and changed GPIO for reset button. Signed-off-by: Jacek Kikiewicz --- Index: target/linux/ar71xx/files/arch/mips/ath79

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread José Vázquez
2014-04-23 14:27 GMT+02:00, Zoltan HERPAI : >>> I don't know if any of the OpenWRT developers or contributors have >>> this router. If yes, my opinion is to add support for the board using >>> the patches sent by Matthew Fatheree as base, reworking them and drop >>> wireless support for now until t

Re: [OpenWrt-Devel] Cannot get patch into patchwork

2014-04-23 Thread Yousong Zhou
Hi On 23 April 2014 22:02, Jacek Kikiewicz wrote: > Hello, > > Sorry for sending same patch few times, for some reason I cannot get it to > patchwork... > I configured my client to send plain text, there are no attachments, format > should be good... > Can someone advice what am I doing wrong her

[OpenWrt-Devel] Cannot get patch into patchwork

2014-04-23 Thread Jacek Kikiewicz
Hello, Sorry for sending same patch few times, for some reason I cannot get it to patchwork... I configured my client to send plain text, there are no attachments, format should be good... Can someone advice what am I doing wrong here? Thanks, Jacek

[OpenWrt-Devel] [PATCH] [ar71xx] WNDAP360 add Wifi LED support

2014-04-23 Thread Jacek Kikiewicz
From: Jacek Kikiewicz Re-sending as previous did not get where it should. I added WIFI LED support (so now AP blinks nicely), I removed WPS button GPIO (as it doesn't exist) and changed GPIO for reset button. Signed-off-by: Jacek Kikiewicz --- Index: target/linux/ar71xx/files/arch/mips/ath79

[OpenWrt-Devel] [PATCH] [ar71xx] WNDAP360 add Wifi LED support

2014-04-23 Thread Jacek Kikiewicz
From: Jacek Kikiewicz Re-sending as previous did not get where it should. I added WIFI LED support (so now AP blinks nicely), I removed WPS button GPIO (as it doesn't exist) and changed GPIO for reset button. Signed-off-by: Jacek Kikiewicz --- Index: target/linux/ar71xx/files/arch/mips/ath79

[OpenWrt-Devel] [PATCH][ar71xx] - WNDAP360 add Wifi LED support

2014-04-23 Thread Jacek Kikiewicz
From: Jacek Kikiewicz Re-sending as previous did not get where it should. I added WIFI LED support (so now AP blinks nicely), I removed WPS button GPIO (as it doesn't exist) and changed GPIO for reset button. Signed-off-by: Jacek Kikiewicz --- Index: target/linux/ar71xx/files/arch/mips/ath7

Re: [OpenWrt-Devel] [PATCH] ar71xx: abort building if there is failure when generating image.

2014-04-23 Thread Michel Stempin
Le 23/04/2014 14:59, Bastian Bittorf a écrit : * Yousong Zhou [23.04.2014 14:53]: once upon a time 36ea10375db186bf10c13d89bbdc4cfb62bf5fcc, the idea was NOT to abort because e.g. the user builts for a whole arch and only "some" images are too big. (see the warnings) Yes, but it should at le

[OpenWrt-Devel] [PATCH] netifd: fix IPv6 Link-local DNS server

2014-04-23 Thread Ulrich Weber
interface name must be added to Link-local IPv6 DNS servers, otherwise they are unusable. Signed-off-by: Ulrich Weber --- interface-ip.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/interface-ip.c b/interface-ip.c index d5a3832..6f42015 100644 --- a/interface-

[OpenWrt-Devel] [PATCH] [uboot-lantiq] Add ARV7510PW22 support

2014-04-23 Thread Álvaro Fernández Rojas
Add ARV7510PW22 support. Signed-off-by: Álvaro Fernández Rojas --- It looks like the LZMA removed patch is needed, since the device will reboot itself when trying to uncompress LZMA images without this patch. https://dev.openwrt.org/changeset/40521 diff --git a/package/boot/uboot-lantiq/Makefil

Re: [OpenWrt-Devel] [PATCH] ar71xx: abort building if there is failure when generating image.

2014-04-23 Thread Bastian Bittorf
* Yousong Zhou [23.04.2014 14:53]: once upon a time 36ea10375db186bf10c13d89bbdc4cfb62bf5fcc, the idea was NOT to abort because e.g. the user builts for a whole arch and only "some" images are too big. (see the warnings) bye, bastian ___ openwrt-devel

Re: [OpenWrt-Devel] [PATCH 4/4] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Yousong Zhou
On 23 April 2014 20:30, Jo-Philipp Wich wrote: > Hi. > > I think you should reuse option names used by other protocols, we > already have far too much variation and abbreviation styles for common > option names - see my comments inline below. Thank you, jow. You are right on this. :) > >> This

[OpenWrt-Devel] [PATCH 2/2] [lantiq] Fix ARV4518 etop

2014-04-23 Thread Álvaro Fernández Rojas
Fix ARV4518 etop. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/target/linux/lantiq/dts/ARV4518PWR01.dts b/target/linux/lantiq/dts/ARV4518PWR01.dts index 0007d9d..f2a2e18 100644 --- a/target/linux/lantiq/dts/ARV4518PWR01.dts +++ b/target/linux/lantiq/dts/ARV4518PWR01.dts @@ -104,7 +104,

[OpenWrt-Devel] [PATCH 1/2] [lantiq] Fix ARV7510PW22 etop

2014-04-23 Thread Álvaro Fernández Rojas
Fix ARV7510PW22 etop. Signed-off-by: Álvaro Fernández Rojas --- diff --git a/target/linux/lantiq/dts/ARV7510PW22.dts b/target/linux/lantiq/dts/ARV7510PW22.dts index 0bddce7..24c396d 100644 --- a/target/linux/lantiq/dts/ARV7510PW22.dts +++ b/target/linux/lantiq/dts/ARV7510PW22.dts @@ -107,7 +107,

[OpenWrt-Devel] [PATCH] ar71xx: abort building if there is failure when generating image.

2014-04-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- target/linux/ar71xx/image/Makefile | 22 +- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 8234f88..3cfd4c1 100644 --- a/target/linux/ar71xx/image

Re: [OpenWrt-Devel] [PATCH 4/4] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Jo-Philipp Wich
Hi. I think you should reuse option names used by other protocols, we already have far too much variation and abbreviation styles for common option names - see my comments inline below. > This patch adds protocol support for PPP over SSH. The protocol name is > 'pppossh' with the following optio

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread Zoltan HERPAI
I don't know if any of the OpenWRT developers or contributors have this router. If yes, my opinion is to add support for the board using the patches sent by Matthew Fatheree as base, reworking them and drop wireless support for now until they (Marvell or Belkin) develop a cfg80211 or mac80211 comp

[OpenWrt-Devel] [PATCH 3/4] dnsmasq: add ipset and auth compilation options.

2014-04-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- package/network/services/dnsmasq/Makefile | 16 +++- .../network/services/dnsmasq/files/dnsmasq.init|5 + 2 files changed, 20 insertions(+), 1 deletions(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/networ

[OpenWrt-Devel] [PATCH 4/4] ppp: add new protocol PPPoSSH.

2014-04-23 Thread Yousong Zhou
This patch adds protocol support for PPP over SSH. The protocol name is 'pppossh' with the following options. - sshserver, required, SSH server name - sshport, SSH server port - sshuser, required, SSH login username - identityfile, required, client private key file. - localip, local ip addre

[OpenWrt-Devel] [PATCH 1/4] base-files: remove duplicate stop_service() function.

2014-04-23 Thread Yousong Zhou
It was introduced in commit 2f966e8, "base-files: add a post start hook for procd managed services". Signed-off-by: Yousong Zhou --- package/base-files/Makefile|2 +- package/base-files/files/etc/rc.common |4 2 files changed, 1 insertions(+), 5 deletions(-) diff --git

[OpenWrt-Devel] [PATCH 2/4] Remove *.orig and *.rej from .gitignore.

2014-04-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- .gitignore |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1bef86e..0892453 100644 --- a/.gitignore +++ b/.gitignore @@ -15,11 +15,9 @@ /files /package/feeds /package/openwrt-packages -*.orig -*.rej *~

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread José Vázquez
2014-04-23 13:41 GMT+02:00, José Vázquez : > 2014-04-23 11:40 GMT+02:00, Felix Fietkau : >> On 2014-04-23 11:31, Felix Fietkau wrote: >>> Quick update on this subject: Linksys has now posted a GPL source for >>> the WRT1900AC, and it contains the wifi driver sources. >>> It appears to me, that this

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread José Vázquez
2014-04-23 11:40 GMT+02:00, Felix Fietkau : > On 2014-04-23 11:31, Felix Fietkau wrote: >> Quick update on this subject: Linksys has now posted a GPL source for >> the WRT1900AC, and it contains the wifi driver sources. >> It appears to me, that this driver was properly licensed under GPL, with >>

Re: [OpenWrt-Devel] [PATCH] [packages] add opentracker package

2014-04-23 Thread John Crispin
On 23/04/2014 12:16, Karl Palsson wrote: > On Wed, Apr 23, 2014 at 10:59:46AM +0200, John Crispin wrote: >> >> >> On 23/04/2014 10:44, Hartmut Knaack wrote: >>> +stop() { + service_stop $PROG +} >> >> this bit is redundant > > If it is, can you please update: > http://wiki.openwrt

Re: [OpenWrt-Devel] [PATCH] [packages] add opentracker package

2014-04-23 Thread Karl Palsson
On Wed, Apr 23, 2014 at 10:59:46AM +0200, John Crispin wrote: > > > On 23/04/2014 10:44, Hartmut Knaack wrote: > > +stop() { > >> + service_stop $PROG +} > > this bit is redundant If it is, can you please update: http://wiki.openwrt.org/doc/devel/packages#packaging.a.service It would be

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread Felix Fietkau
On 2014-04-23 11:31, Felix Fietkau wrote: > Quick update on this subject: Linksys has now posted a GPL source for > the WRT1900AC, and it contains the wifi driver sources. > It appears to me, that this driver was properly licensed under GPL, with > proper license headers in all source files. > > T

Re: [OpenWrt-Devel] Making sense of OpenWRT / Linksys WRT1900AC collaboration claims

2014-04-23 Thread Felix Fietkau
Quick update on this subject: Linksys has now posted a GPL source for the WRT1900AC, and it contains the wifi driver sources. It appears to me, that this driver was properly licensed under GPL, with proper license headers in all source files. This means that work on supporting this device can theo

Re: [OpenWrt-Devel] [PATCH] x86_64: enable PCI Express support

2014-04-23 Thread Ulrich Weber
ping there is probably no x86_64 bit system out there without PCI Express... :) On 02/27/2014 12:13 PM, Ulrich Weber wrote: enable PCI Express support for x86_64 target Signed-off-by: Ulrich Weber --- target/linux/x86_64/config-default | 2 ++ 1 file changed, 2 insertions(+) diff --git a/

[OpenWrt-Devel] [PATCH] firewall3: add IPv6 NAT support

2014-04-23 Thread Ulrich Weber
This Patch removes the IPv4 only limitation for NAT. IPv6 NAT support was added in Linux Kernel 3.7 and iptables 1.4.17 Signed-off-by: Ulrich Weber --- defaults.c | 8 zones.c| 13 - 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/defaults.c b/defaults.c

[OpenWrt-Devel] [PATCH] firewall3: support extra_masq option

2014-04-23 Thread Ulrich Weber
allows to set additional options for masquerading rules via new option extra_masq. Useful e.g. for not NATing VPN traffic with: option 'extra_masq' '-m policy --dir out --pol none' Signed-off-by: Ulrich Weber --- options.h | 1 + zones.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/

Re: [OpenWrt-Devel] [PATCH] [packages] add opentracker package

2014-04-23 Thread John Crispin
On 23/04/2014 10:44, Hartmut Knaack wrote: > +stop() { >> +service_stop $PROG +} this bit is redundant ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] [packages] add opentracker package

2014-04-23 Thread Hartmut Knaack
Just a little typo in the description, see below. Daniel schrieb: > support for opentracker was suggested in ticket #7023 > it's much tighter than cbtt and got only 20% of cbtt's binary size > > Signed-off-by: Daniel Golle > --- > net/opentracker/Makefile | 51 > +++

[OpenWrt-Devel] rt3883 wifi

2014-04-23 Thread John Crispin
Hi, i just merged the mac80211 rt3883 patches that gabor created. please send your thank you messages his way. i tested the driver on rt3883, rt3052 and rt5350 to make sure there are no regressions breaking other SoCs but more testing is welcome. if you use ralink SoC please test mac80211 after