[OpenWrt-Devel] [PATCH] kernel: 3.18: Fix patch 644 dependency chain

2014-11-07 Thread Maxime Ripard
This patch introduces some code that is compiled in whenever CONFIG_BRIDGE_NETFILTER is built, with the code called from code compiled under CONFIG_BRIDGE, CONFIG_BRIDGE_IGMP_SNOOPING or CONFIG_BRIDGE_NF_EBTABLES. Unfortunately, these options aren't setting explicitly the dependency they now have

[OpenWrt-Devel] [PATCH 1/2] kernel: Use defconfig instead of full fledged kernel configuration

2014-11-07 Thread Maxime Ripard
Rely on the Kconfig defconfig mechanism to fill all the missing options, instead of needing to set them all in the kernel configurations like what was previously done. This will allow to trim down a lot the configuration files, avoid carrying unused configuration options and preserve the developpe

[OpenWrt-Devel] [PATCH] BB: lantiq: Concatenate multiple flash chips for lantiq-flash

2014-11-07 Thread Eddi De Pieri
From: Maikel Bloemendal Signed-off-by: Maikel Bloemendal Acked-by: Eddi De Pieri --- .../0202-owrt-lantiq-multiple-flash.patch | 218 1 file changed, 218 insertions(+) create mode 100644 target/linux/lantiq/patches-3.10/0202-owrt-lantiq-multiple-flash.patch di

Re: [OpenWrt-Devel] q: lantiq nor and two chip

2014-11-07 Thread Eddi De Pieri
Solved.. it was missing a patch by The_Lizard... he sent it to me and I've rebased it for BB.. On Thu, Nov 6, 2014 at 6:37 PM, Eddi De Pieri wrote: > VGV7519 board have two chip at 0xb000 and 0xb4000 > > Which is the correct syntax? > > compatible = "lantiq,nor"; > bank-width = <2>; > re

Re: [OpenWrt-Devel] [PATCH] BB: lantiq: Concatenate multiple flash chips for lantiq-flash

2014-11-07 Thread Eddi De Pieri
please wait to aplpy this patch... I've found two potential regression in: - for (type = rom_probe_types; !ltq_mtd->mtd && *type; type++) { - ltq_mtd->mtd = do_map_probe(*type, ltq_mtd->map); - } and + if (!ltq_mtd->mtd) { Regards On Fri, Nov 7, 2014 at 1:

Re: [OpenWrt-Devel] [PATCH] BB: lantiq: Concatenate multiple flash chips for lantiq-flash

2014-11-07 Thread Sedat Dilek
On Fri, Nov 7, 2014 at 2:00 PM, Eddi De Pieri wrote: > please wait to aplpy this patch... > > I've found two potential regression in: > > - for (type = rom_probe_types; !ltq_mtd->mtd && *type; type++) { > - ltq_mtd->mtd = do_map_probe(*type, ltq_mtd->map); > - } > > and > >

[OpenWrt-Devel] [PATCH] BB: lantiq: Concatenate multiple flash chips for lantiq-flash (fixed regression)

2014-11-07 Thread Eddi De Pieri
From: Maikel Bloemendal Signed-off-by: Maikel Bloemendal Tested-by: Eddi De Pieri --- .../0202-owrt-lantiq-multiple-flash.patch | 219 1 file changed, 219 insertions(+) create mode 100644 target/linux/lantiq/patches-3.10/0202-owrt-lantiq-multiple-flash.patch d

[OpenWrt-Devel] [PATCH] kernel: 3.18: Fix kmod-ipt-nat

2014-11-07 Thread Maxime Ripard
The 3.18 kernel introduced new Kconfig options for the xt_nat and iptable_nat kernel modules, that both belong to the ipt_nat kernel package. Enable this new options. Signed-off-by: Maxime Ripard --- include/netfilter.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/netfilter.mk

[OpenWrt-Devel] SPDX usage

2014-11-07 Thread Eric Schultz
(Cross-posted with the prplwrt list) All, I've spent the last few days looking at how folks could use the new SPDX license information we've added to packages. I was hoping I could share this and get some feedback on it. There are three places where I can see a developer or user making a decisio

[OpenWrt-Devel] [PATCH] lantiq: Concatenate multiple flash chips for lantiq-flash

2014-11-07 Thread Eddi De Pieri
From: Maikel Bloemendal Signed-off-by: Maikel Bloemendal Tested-by: Eddi De Pieri --- .../0160-owrt-lantiq-multiple-flash.patch | 215 1 file changed, 215 insertions(+) create mode 100644 target/linux/lantiq/patches-3.14/0160-owrt-lantiq-multiple-flash.patch d

[OpenWrt-Devel] [PATCH 0/2] lantiq - vgv7519 - set minimal system default for led configuration

2014-11-07 Thread Eddi De Pieri
Eddi De Pieri (2): lantiq, set default led configuration from /sys entry later, after per board settings lantiq - vgv7519 - set some defaults for leds .../linux/lantiq/base-files/etc/uci-defaults/01_leds | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) -- 1.7

[OpenWrt-Devel] [PATCH 1/2] lantiq, set default led configuration from /sys entry later, after per board settings

2014-11-07 Thread Eddi De Pieri
Signed-off-by: Eddi De Pieri --- target/linux/lantiq/base-files/etc/uci-defaults/01_leds | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds b/target/linux/lantiq/base-files/etc/uci-defaults/01_leds index 2b329

[OpenWrt-Devel] [PATCH 2/2] lantiq - vgv7519 - set some defaults for leds

2014-11-07 Thread Eddi De Pieri
Signed-off-by: Eddi De Pieri --- target/linux/lantiq/base-files/etc/uci-defaults/01_leds |7 +++ 1 file changed, 7 insertions(+) diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds b/target/linux/lantiq/base-files/etc/uci-defaults/01_leds index c558543..b0e0b2a 100644

[OpenWrt-Devel] [PATCH 0/2] BB: lantiq - vgv7519 - set minimal system default for led configuration

2014-11-07 Thread Eddi De Pieri
Eddi De Pieri (2): BB: lantiq, set default led configuration from /sys entry later, after per board settings BB: lantiq - vgv7519 - set some defaults for leds .../linux/lantiq/base-files/etc/uci-defaults/01_leds | 17 - 1 file changed, 12 insertions(+), 5 deletions(-)

[OpenWrt-Devel] [PATCH 2/2] BB: lantiq - vgv7519 - set some defaults for leds

2014-11-07 Thread Eddi De Pieri
Signed-off-by: Eddi De Pieri --- target/linux/lantiq/base-files/etc/uci-defaults/01_leds |7 +++ 1 file changed, 7 insertions(+) diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds b/target/linux/lantiq/base-files/etc/uci-defaults/01_leds index c558543..b0e0b2a 100644 -

[OpenWrt-Devel] [PATCH 1/2] BB: lantiq, set default led configuration from /sys entry later, after per board settings

2014-11-07 Thread Eddi De Pieri
Signed-off-by: Eddi De Pieri --- target/linux/lantiq/base-files/etc/uci-defaults/01_leds | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds b/target/linux/lantiq/base-files/etc/uci-defaults/01_leds index 2b3293