Re: [OpenWrt-Devel] [PATCH] kernel: bridge: multicast: backport a few more fixes for 3.10

2015-01-18 Thread Felix Fietkau
On 2015-01-19 00:26, Linus Lüssing wrote: > On Wed, Jan 14, 2015 at 12:12:33AM +0100, Linus Lüssing wrote: >> On Tue, Dec 30, 2014 at 04:10:56AM +0100, Linus Lüssing wrote: >> > The following patches unfortunately didn't hit the kernel stable >> > branches yet, therefore cherrypicking them for Open

Re: [OpenWrt-Devel] [PATCH v2 2/8] packages: uboot-sunxi: uEnv is used as a script rather than default env

2015-01-18 Thread Zoltan HERPAI
On Mon, 19 Jan 2015, Daniel Golle wrote: Signed-off-by: Daniel Golle --- package/boot/uboot-sunxi/uEnv.txt | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package/boot/uboot-sunxi/uEnv.txt b/package/boot/uboot-sunxi/uEnv.txt index e4fc0e1..e024954 100644 --- a/pa

[OpenWrt-Devel] [PATCH v2 2/8] packages: uboot-sunxi: uEnv is used as a script rather than default env

2015-01-18 Thread Daniel Golle
Signed-off-by: Daniel Golle --- package/boot/uboot-sunxi/uEnv.txt | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package/boot/uboot-sunxi/uEnv.txt b/package/boot/uboot-sunxi/uEnv.txt index e4fc0e1..e024954 100644 --- a/package/boot/uboot-sunxi/uEnv.txt +++ b/pack

Re: [OpenWrt-Devel] [PATCH 7/8] sunxi: add support for Lamobo R1

2015-01-18 Thread Zoltan HERPAI
Hi Daniel, On Mon, 19 Jan 2015, Daniel Golle wrote: Partially based on patchset form Wang Yi published on https://github.com/Lamobo/Lamobo-R1-OpenWrt as well as on Bananapi DTS. Signed-off-by: Daniel Golle --- .../sunxi/base-files/etc/uci-defaults/02_network | 6 + target/linux/sunxi/base

Re: [OpenWrt-Devel] [PATCH 2/8] packages: uboot-sunxi: uEnv is used as a script rather than default env

2015-01-18 Thread Zoltan HERPAI
Hi Daniel, On Mon, 19 Jan 2015, Daniel Golle wrote: --- package/boot/uboot-sunxi/uEnv.txt | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package/boot/uboot-sunxi/uEnv.txt b/package/boot/uboot-sunxi/uEnv.txt index e4fc0e1..e024954 100644 --- a/package/boot/uboot-

[OpenWrt-Devel] [PATCH 8/8] sunxi: workaround switch being uninitialized on netifd startup

2015-01-18 Thread Daniel Golle
The BCM53125 switch on Lamobo R1 is powered down and counters are not zero'ed when netifd comes up and tries to initialize the switch. Take interface up and reset counters in preinit for that board. Signed-off-by: Daniel Golle --- .../linux/sunxi/base-files/lib/preinit/02_b53_hack.sh | 17

[OpenWrt-Devel] [PATCH 7/8] sunxi: add support for Lamobo R1

2015-01-18 Thread Daniel Golle
Partially based on patchset form Wang Yi published on https://github.com/Lamobo/Lamobo-R1-OpenWrt as well as on Bananapi DTS. Signed-off-by: Daniel Golle --- .../sunxi/base-files/etc/uci-defaults/02_network | 6 + target/linux/sunxi/base-files/lib/sunxi.sh | 4 + target/linux/sunx

[OpenWrt-Devel] [PATCH 6/8] sunxi: use sunxi_board_name when generating default network settings

2015-01-18 Thread Daniel Golle
Signed-off-by: Daniel Golle --- .../sunxi/base-files/etc/uci-defaults/02_network| 21 ++--- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/target/linux/sunxi/base-files/etc/uci-defaults/02_network b/target/linux/sunxi/base-files/etc/uci-defaults/02_network ind

[OpenWrt-Devel] [PATCH 5/8] sunxi: introduce sunxi_board_name() in /lib/sunxi.sh

2015-01-18 Thread Daniel Golle
Similar to other hardware targets, this can then be used for board-specific stuff in preinit and uci-default scripts. Signed-off-by: Daniel Golle --- target/linux/sunxi/base-files/lib/sunxi.sh | 9 + 1 file changed, 9 insertions(+) diff --git a/target/linux/sunxi/base-files/lib/sunxi.sh

[OpenWrt-Devel] [PATCH 4/8] sunxi: implement board_detect for device-tree kernels

2015-01-18 Thread Daniel Golle
board_detect previously relied on parsing the kernel cmdline out of the U-Boot environment stored on the the MMC card in order to get the board= parameter. Use /proc/device-tree/model instead. Signed-off-by: Daniel Golle --- target/linux/sunxi/base-files/lib/sunxi.sh | 168 ++

[OpenWrt-Devel] [PATCH 3/8] packages: uboot-sunxi: add support for Lamobo R1

2015-01-18 Thread Daniel Golle
Seems to be identical with bananapi, however, sdcard image generation scripts currently depend on having u-boot named the same as the profile. Signed-off-by: Daniel Golle --- package/boot/uboot-sunxi/Makefile | 5 + .../uboot-sunxi/patches/006-add-lamobo-r1.patch| 24 ++

[OpenWrt-Devel] [PATCH 2/8] packages: uboot-sunxi: uEnv is used as a script rather than default env

2015-01-18 Thread Daniel Golle
--- package/boot/uboot-sunxi/uEnv.txt | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/package/boot/uboot-sunxi/uEnv.txt b/package/boot/uboot-sunxi/uEnv.txt index e4fc0e1..e024954 100644 --- a/package/boot/uboot-sunxi/uEnv.txt +++ b/package/boot/uboot-sunxi/uEnv.txt

[OpenWrt-Devel] [PATCH 1/8] packages: uboot-sunxi: fix GMAC TX delay for Bananapi

2015-01-18 Thread Daniel Golle
CONFIG_TARGET_* is no longer defined when using generic board. Define a new configuration variable and set in for Bananapi to revive GMAC. Signed-off-by: Daniel Golle --- .../patches/005-add-gmac-tx-delay-variant.patch| 24 ++ 1 file changed, 24 insertions(+) create mode

Re: [OpenWrt-Devel] [PATCH] kernel: bridge: multicast: backport a few more fixes for 3.10

2015-01-18 Thread Linus Lüssing
On Wed, Jan 14, 2015 at 12:12:33AM +0100, Linus Lüssing wrote: > On Tue, Dec 30, 2014 at 04:10:56AM +0100, Linus Lüssing wrote: > > The following patches unfortunately didn't hit the kernel stable > > branches yet, therefore cherrypicking them for OpenWRT here: > > > > * bridge: fix netfilter/NF_B

[OpenWrt-Devel] setting up ocserv VPN interactions with lan

2015-01-18 Thread Nikos Mavrogiannopoulos
Hello, After some of experimentation, I've put up some instructions on how to setup ocserv clients to interact easily with lan. I've abolished the approach of adding each client into a vpn zone, and I now suggest adding an interface for "vpns+" devices, which will simplify both setup and number of

Re: [OpenWrt-Devel] [PATCH] uboot-sunxi: bump to 2015.01 release

2015-01-18 Thread Zoltan HERPAI
Daniel Golle wrote: Signed-off-by: Daniel Golle --- package/boot/uboot-sunxi/Makefile | 6 +- ...-3e1ded1fff32d8af8cc5eec22c56797621ea6649.patch | 25006 --- 2 files changed, 4 insertions(+), 25008 deletions(-) delete mode 100644 package/boot/uboot-sunxi/p

Re: [OpenWrt-Devel] [PATCH 2/2] kirkwood: enable switch on Linksys EA3500

2015-01-18 Thread Luka Perkov
On Sun, Jan 18, 2015 at 10:33:51AM -0500, Claudio Leite wrote: > Signed-off-by: Claudio Leite > --- > .../linux/kirkwood/base-files/etc/uci-defaults/02_network |3 +++ > target/linux/kirkwood/patches-3.14/170-ea3500.patch | 13 > - > target/linux/kirkwood/patches-3.18/170

Re: [OpenWrt-Devel] [PATCH 1/2] uboot-envtools: fix Linksys EA3500 env size

2015-01-18 Thread Luka Perkov
On Sun, Jan 18, 2015 at 10:33:50AM -0500, Claudio Leite wrote: > Signed-off-by: Claudio Leite > --- > package/boot/uboot-envtools/files/kirkwood |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) Applied in r44037. Thank you. Luka ___ openw

[OpenWrt-Devel] [PATCH 2/2] kirkwood: enable switch on Linksys EA3500

2015-01-18 Thread Claudio Leite
Signed-off-by: Claudio Leite --- .../linux/kirkwood/base-files/etc/uci-defaults/02_network |3 +++ target/linux/kirkwood/patches-3.14/170-ea3500.patch | 13 - target/linux/kirkwood/patches-3.18/170-ea3500.patch | 13 - 3 files changed, 27 insertions(+),

[OpenWrt-Devel] [PATCH 1/2] uboot-envtools: fix Linksys EA3500 env size

2015-01-18 Thread Claudio Leite
Signed-off-by: Claudio Leite --- package/boot/uboot-envtools/files/kirkwood |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/boot/uboot-envtools/files/kirkwood b/package/boot/uboot-envtools/files/kirkwood index c868d07..98f85da 100644 --- a/package/boot/uboot-env

Re: [OpenWrt-Devel] [Patch] [packages] new package dansguardian

2015-01-18 Thread Paul Fertser
Hello, Jiri Slachta writes: > See the statement about the transition to github: > https://forum.openwrt.org/viewtopic.php?id=51078 What this doesn't explain is that it seems to me that every contributor to the packages feed now needs to have an account on Github, needs to use their proprie

Re: [OpenWrt-Devel] [Patch] [packages] new package dansguardian

2015-01-18 Thread Jiri Slachta
Hello Hanno, openwrt-devel mailing list is intended to be used for patches against the base OpenWrt repository. The packages repository has been moved to github where all changes are merged as pull requests. See the statement about the transition to github: https://forum.openwrt.org/view

[OpenWrt-Devel] [Patch] [packages] new package dansguardian

2015-01-18 Thread hanno
Moved new version 2.12.03 from oldpackages to packages as request by Felix Fietkau Signed-off-by: Hanno Schupp --- diff -uprN ../trunk/feeds/packages/net/dansguardian/Makefile ./feeds/packages/net/dansguardian/Makefile --- ../trunk/feeds/packages/net/dansguardian/Makefile 1970-01-01 12:00:00.

Re: [OpenWrt-Devel] Hardlock in ath9k

2015-01-18 Thread Sergey Ryazanov
2015-01-15 14:55 GMT+03:00 Felix Fietkau : > On 2015-01-15 12:48, Gianluca Anzolin wrote: >> Il 15/01/2015 04:25, Felix Fietkau ha scritto: >>> On 2015-01-14 20:19, Gianluca Anzolin wrote: Hi, I was just testing this evening, just for fun, a new build with the just released musl

[OpenWrt-Devel] [Patch] [x86_64] Enable multi-processor support and hyperthreading by default

2015-01-18 Thread hanno
There are very few (if any?) x86 64bit processors with a single core. This patch enables multiple processor support and hyperthreading for x86_64 target by default. Signed-off-by: Hanno Schupp --- --- ../trunk/target/linux/x86_64/config-default 2015-01-18 23:59:55.665702005 +1300 +++ ./target/li

Re: [OpenWrt-Devel] [PATCH] [packages] new package squid3

2015-01-18 Thread Felix Fietkau
On 2015-01-18 11:57, hanno wrote: > This patch provides support for squid 3.4.10. Rather than replacing > squid2 a new package squid3 has been created to avoid any > compatibility issues. > The squid.conf file has a number of options included that allow squid3 > to run on OpenWrt directory structu

Re: [OpenWrt-Devel] [PATCH] [packages] dansguardian: Bump to 2.12.0.3

2015-01-18 Thread Felix Fietkau
On 2015-01-18 11:49, hanno wrote: > --- > diff -uprN ../trunk/feeds/oldpackages/net/dansguardian/Makefile > ./feeds/oldpackages/net/dansguardian/Makefile > --- ../trunk/feeds/oldpackages/net/dansguardian/Makefile 2015-01-18 > 10:49:03.101489863 +1300 > +++ ./feeds/oldpackages/net/dansguardia

[OpenWrt-Devel] [PATCH] [packages] new package squid3

2015-01-18 Thread hanno
This patch provides support for squid 3.4.10. Rather than replacing squid2 a new package squid3 has been created to avoid any compatibility issues. The squid.conf file has a number of options included that allow squid3 to run on OpenWrt directory structure. In addition a squid3 init programme is p

[OpenWrt-Devel] [PATCH] [packages] dansguardian: Bump to 2.12.0.3

2015-01-18 Thread hanno
--- diff -uprN ../trunk/feeds/oldpackages/net/dansguardian/Makefile ./feeds/oldpackages/net/dansguardian/Makefile --- ../trunk/feeds/oldpackages/net/dansguardian/Makefile2015-01-18 10:49:03.101489863 +1300 +++ ./feeds/oldpackages/net/dansguardian/Makefile 2015-01-06 15:56:14.017306