Re: [LEDE-DEV] [RFC] ADSL Modem Allnet All0333CJ Rev.C / Amazon-SE SoC

2016-11-04 Thread Tino Reichardt
* Mathias Kresin wrote: > 2016-11-04 9:46 GMT+01:00 Tino Reichardt : > > * Alberto Bursi wrote: > >> On 11/03/2016 10:13 AM, Tino Reichardt wrote: > >> > Most of these Modems have only a very small flash of 2MB or 4MB .. so > >> > there is no need for lot of stuff. My aim is to have nice DSL mode

Re: [LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread Jo-Philipp Wich
Hi, thanks Ufo - this was helpful. The problem is exactly in the file you linked: https://github.com/openwrt/luci/blob/master/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh#L49 You need to change that "if" statement to something like: if [ -z "${1/cfg[0-9a-fA-F]*/}" ]

Re: [LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread ufo
as i know, meshkit (as an webinterface for using the imagebuilder) only "ask" for the settings and generate the firmware-image with desired packages. the generation of settings on the device should be in meshwizard, so f.i. https://github.com/openwrt/luci/blob/master/contrib/package/meshwiza

Re: [LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread Jo-Philipp Wich
Hi, I don't think it is related to that commit since it does not change the detection logic, I rather guess the problem is due to some race condition somewhere. I took a quick look at the meshkit repo but wasn't able to figure out the exact place where the wifi config is generated. ~ Jo signa

Re: [LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread Ufo
a sample config can be found at https://plan.leipzig.freifunk.net/issues/360 p.s. if you want to reproduce that with a physical device, please be careful with luci/meshwizard. there were some changes on busybox and the required pull-request isnt accepted yet on openwrt https://github.com/openw

Re: [LEDE-DEV] [RFC] ADSL Modem Allnet All0333CJ Rev.C / Amazon-SE SoC

2016-11-04 Thread Tino Reichardt
* Mathias Kresin wrote: > 2016-11-04 9:46 GMT+01:00 Tino Reichardt : > > * Alberto Bursi wrote: > >> On 11/03/2016 10:13 AM, Tino Reichardt wrote: > >> > Most of these Modems have only a very small flash of 2MB or 4MB .. so > >> > there is no need for lot of stuff. My aim is to have nice DSL mode

Re: [LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread Jo-Philipp Wich
Hi Ufo, can you please provide such a broken wireless configuration here? Usually those extra wifi sections are added if no previous config for the phy is found in the config, so it seems something in the Freifunk specific settings is odd. ~ Jo ___ Le

[LEDE-DEV] new wifi detecting makes more wifi (IB/meshwizard)

2016-11-04 Thread Ufo
im using imagebuilder via meshkit (and luci/meshwizard) to configure LEDE-devices. with newest lede-trunk the behaviour changed, now there is one more wifi-ap on each device. its called "LEDE" and doesnt make to much sense for me: *in config its called "default_radio0", while our other wifis a

[LEDE-DEV] [PATCH] cns3xxx: fix UART resource overlap

2016-11-04 Thread Koen Vandeputte
Port 1 registers the same IO resources as port 2 in the kernel resource tree, which is wrong. Fix this by using it's own resources as indicated in the overview (cns3xxx.h). Compiled & Tested on several GW2388-4 laguna boards which utilizes all 3 ports. Signed-off-by: Koen Vandeputte --- target/

Re: [LEDE-DEV] [RFC] ADSL Modem Allnet All0333CJ Rev.C / Amazon-SE SoC

2016-11-04 Thread Mathias Kresin
2016-11-04 9:46 GMT+01:00 Tino Reichardt : > * Alberto Bursi wrote: >> On 11/03/2016 10:13 AM, Tino Reichardt wrote: >> > Most of these Modems have only a very small flash of 2MB or 4MB .. so >> > there is no need for lot of stuff. My aim is to have nice DSL modems >> > with recent kernel and dsl

Re: [LEDE-DEV] [PATCH netifd] device: extend interface.macaddr option to refer to another interface

2016-11-04 Thread Felix Fietkau
On 2016-11-03 13:49, Günther Kelleter wrote: > e.g. option macaddr "@eth0" tells netifd to use the MAC of interface eth0. > Use case: set MAC address of a bridge interface to a specific interface's > MAC regardless of bridge/interface initialization order. > > Signed-off-by: Günther Kelleter > --

Re: [LEDE-DEV] [PATCH] netifd: Set source address for static address routes

2016-11-04 Thread Felix Fietkau
On 2016-10-06 10:52, Kristian Evensen wrote: > When using UCI to configure static addresses, netifd does not set the source > address of the gateway route. In order to be consistent, also set the source > address for subnet routes (this applies to all protocols). > > Signed-off-by: Kristian Evense

Re: [LEDE-DEV] [PATCH firewall3] iptables: add support for version 1.6.0

2016-11-04 Thread Jo-Philipp Wich
Hi Ralph, pushed to http://git.lede-project.org/dd01372 - thank you! ~ Jo signature.asc Description: OpenPGP digital signature ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] [PATCH firewall3] iptables: add support for version 1.6.0

2016-11-04 Thread Ralph Sennhauser
Account for the struct xtables_globals change and add API version 11 to the supported APIs. Signed-off-by: Ralph Sennhauser --- iptables.c | 6 ++ iptables.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/iptables.c b/iptables.c index 2a0d0ee..95fc0d4 100644 --- a/ipta

Re: [LEDE-DEV] [PATCH 1/2] libubox: Add pure attribute to several functions.

2016-11-04 Thread Felix Fietkau
On 2016-11-02 04:03, Rosen Penev wrote: > Manually adding pure allows the compiler to optimize several > functions for better performance. All were found with gcc's > -Wsuggest-attribute=pure. The switch is conservative meaning there are > more such functions. > > Signed-off by: Rosen Penev Pleas

Re: [LEDE-DEV] New CT ath10k firmware is available

2016-11-04 Thread Rafał Miłecki
On 4 November 2016 at 10:14, liudengf...@kunteng.org wrote: > Hi, Rafal > I am confused by "please don't drop mailing list when replying", which > means I should cc LEDE Development List or > not? 1) Yes, you should Cc mailing list 2) You *shouldn't* send HTML e-mails, we don't like that __

Re: [LEDE-DEV] [RFC] ADSL Modem Allnet All0333CJ Rev.C / Amazon-SE SoC

2016-11-04 Thread Tino Reichardt
* Alberto Bursi wrote: > > > On 11/03/2016 10:13 AM, Tino Reichardt wrote: > > Most of these Modems have only a very small flash of 2MB or 4MB .. so > > there is no need for lot of stuff. My aim is to have nice DSL modems > > with recent kernel and dsl firmware. pppoe is not really needed, but >

Re: [LEDE-DEV] New CT ath10k firmware is available

2016-11-04 Thread Rafał Miłecki
On 4 November 2016 at 03:51, Ben Greear wrote: > I don't really have time to work specifically on LEDE much. > > But, if someone else takes care of the rest, then my firmware > can hopefully work well on its radio. liudengfeng please don't drop mailing list when replying -- Rafał _