Re: [OpenWrt-Devel] [PATCH v2 05/11] ltq-vdsl-app: make the dsl_control application stop cleanly

2016-02-28 Thread Alexander Couzens
On Sun, 28 Feb 2016 19:44:28 +0100 Hauke Mehrtens wrote: > I am not calling dsl_cmd because I want to ignore the lock, quit > should also be send when someone else is accessing it. I saw that some > other call was stuck here and all following calls were stuck in the > dsl_cmd lock. > > Signed-of

[OpenWrt-Devel] [PATCH] [RFC] ar71xx: migrate cpe510 to new build steps

2016-02-28 Thread Alexander Couzens
Signed-off-by: Alexander Couzens --- target/linux/ar71xx/image/Makefile | 92 ++ 1 file changed, 44 insertions(+), 48 deletions(-) diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index cb11104..b7b24df 100644 --- a/target/

[OpenWrt-Devel] Weird ethernet setup on DIR-505

2016-02-28 Thread Matthias Schiffer
Hi, I've noticed that the DIR-505 has a very weird network setup: (1) The kernel sets up eth0 and eth1; the DIR-505 has only one ethernet port though, so eth0 is always dead. /etc/config/network is setup to only use eth1. (2) The single status LED is currently abused as ethernet traffic indicator.

Re: [OpenWrt-Devel] Any fix ETA or other info on the server hardware problems?

2016-02-28 Thread Hannu Nyman
On 28.2.2016 19:10, Imre Kaloz wrote: On Sun, 28 Feb 2016 11:35:42 +0100, Hannu Nyman wrote: Ps. the updated downloads.openwrt.org works only half of the time. Roughly every second time the page load fails (until yesterday with 503 error from nginx, today silently with empty page) It works

[OpenWrt-Devel] [PATCH v2 08/11] ltq-vdsl-app: sync annex option between from ADSL package

2016-02-28 Thread Hauke Mehrtens
The detailed annex option were only available in the danube DSL app including the activation of G.992.2 Annex A (ADSL Lite). This is now also added to the vdsl app for the vrx200. Signed-off-by: Hauke Mehrtens --- .../network/config/ltq-vdsl-app/files/dsl_control | 44 -- 1

[OpenWrt-Devel] [PATCH v2 06/11] base-files: change type of adsl and vdsl to dsl only

2016-02-28 Thread Hauke Mehrtens
Instead of having two different types adsl and vdsl just create one dsl type. This way we can use the same luci code for adsl and vdsl and the config parameters are not so different. Signed-off-by: Hauke Mehrtens --- package/base-files/files/bin/config_generate | 2 +- 1 file changed, 1 insertio

[OpenWrt-Devel] [PATCH v2 11/11] base-files: print profile name in dsl lucistat

2016-02-28 Thread Hauke Mehrtens
Signed-off-by: Hauke Mehrtens --- target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh index ece614b..aefefcd 100755 -

[OpenWrt-Devel] [PATCH v2 10/11] ltq-vdsl-app: do not set the reserved bit 4 in the xTSE 8

2016-02-28 Thread Hauke Mehrtens
I do not know if this causes any problems now, but we should not set it, because it is reserved. Some more recent versions of the Lantiq DSL API driver and Control is checking if only valid bits are set. Signed-off-by: Hauke Mehrtens --- package/network/config/ltq-vdsl-app/files/dsl_control | 6

[OpenWrt-Devel] [PATCH v2 09/11] ltq-vdsl-app: make it possible to configure ADSL/VDSL independently

2016-02-28 Thread Hauke Mehrtens
There are some cases where ISPs are running ATM over VDSL or PTM over ADSL, this is not the common case, but these cases exist. Make it possible to configure OpenWrt for such cases by adding a new config option line_mode. Signed-off-by: Hauke Mehrtens --- .../network/config/ltq-vdsl-app/files/ds

[OpenWrt-Devel] [PATCH v2 07/11] ltq-adsl-app: sync annex option between from VDSL package

2016-02-28 Thread Hauke Mehrtens
The adsl control app missed the activation of annex M and annex L in the Annex A part, this now activates everything the firmware supports. In Annex L type only the wide US (Mask1) was activated, now also the narrow US (Mask2) version gets activated. In addition annex J was also added. Signed-off-

[OpenWrt-Devel] [PATCH v2 05/11] ltq-vdsl-app: make the dsl_control application stop cleanly

2016-02-28 Thread Hauke Mehrtens
I am not calling dsl_cmd because I want to ignore the lock, quit should also be send when someone else is accessing it. I saw that some other call was stuck here and all following calls were stuck in the dsl_cmd lock. Signed-off-by: Hauke Mehrtens --- package/network/config/ltq-vdsl-app/files/ds

[OpenWrt-Devel] [PATCH v2 04/11] lantiq: add dsl firmware to default packages

2016-02-28 Thread Hauke Mehrtens
Signed-off-by: Hauke Mehrtens --- target/linux/lantiq/xrx200/profiles/lantiq.mk | 4 ++-- target/linux/lantiq/xrx200/profiles/tplink.mk | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/target/linux/lantiq/xrx200/profiles/lantiq.mk b/target/linux/lantiq/xrx200/profiles/l

[OpenWrt-Devel] [PATCH v2 03/11] lantiq: do not set default firmware file

2016-02-28 Thread Hauke Mehrtens
We are now shipping a DSL firmware, do not set it by default to some file name. Signed-off-by: Hauke Mehrtens --- package/base-files/files/lib/functions/uci-defaults.sh | 6 ++ target/linux/lantiq/base-files/etc/board.d/02_network | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) di

[OpenWrt-Devel] [PATCH v2 02/11] ltq-vdsl-app: load the vrx200 firmware or patch it

2016-02-28 Thread Hauke Mehrtens
This checks for the VRX firmware provided in the OpenWrt package. Signed-off-by: Hauke Mehrtens --- .../network/config/ltq-vdsl-app/files/dsl_control | 41 ++ 1 file changed, 41 insertions(+) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/package/netw

[OpenWrt-Devel] [PATCH v2 01/11] dsl-vrx200-firmware-xdsl: create Lantiq vrx200 firmware patches

2016-02-28 Thread Hauke Mehrtens
Instead of having two big binaries only add one binary and then a patch to create the other one when needed at runtime. This is easier to handle in one Makeifle for both firmware files. Signed-off-by: Hauke Mehrtens --- .../lantiq/dsl-vrx200-firmware-xdsl-a/Makefile | 47 .../lanti

[OpenWrt-Devel] [PATCH v2 00/11] Lantiq dsl improvements

2016-02-28 Thread Hauke Mehrtens
This is the v2 of the lantiq patches I send yesterday and today base on trunk. This was tested on a TP-Link vr200v connected to a Deutsche Telekom line. Some testes with a Danube based device would be nice. Hauke Mehrtens (11): dsl-vrx200-firmware-xdsl: create Lantiq vrx200 firmware patches lt

Re: [OpenWrt-Devel] Any fix ETA or other info on the server hardware problems?

2016-02-28 Thread Imre Kaloz
On Sun, 28 Feb 2016 11:35:42 +0100, Hannu Nyman wrote: Ps. the updated downloads.openwrt.org works only half of the time. Roughly every second time the page load fails (until yesterday with 503 error from nginx, today silently with empty page) It works 100% of the time. You do 15+ concurre

[OpenWrt-Devel] [PATCH 2/5] ltq-adsl-app: sync annex option between from VDSL package

2016-02-28 Thread Hauke Mehrtens
The adsl control app missed the activation of annex M and annex L in the Annex A part, this now activates everything the firmware supports. In Annex L type only the wide US (Mask1) was activated, now also the narrow US (Mask2) version gets activated. In addition annex J was also added. Signed-off-

[OpenWrt-Devel] [PATCH 3/5] ltq-vdsl-app: sync annex option between from ADSL package

2016-02-28 Thread Hauke Mehrtens
The detailed annex option were only available in the danube DSL app including the activation of G.992.2 Annex A (ADSL Lite). This is now also added to the vdsl app for the vrx200. Signed-off-by: Hauke Mehrtens --- .../network/config/ltq-vdsl-app/files/dsl_control | 44 -- 1

[OpenWrt-Devel] [PATCH 5/5] ltq-vdsl-app: do not set the reserved bit 4 in the xTSE 8

2016-02-28 Thread Hauke Mehrtens
I do not know if this causes any problems now, but we should not set it, because it is reserved. Some more recent versions of the Lantiq DSL API driver and Control is checking if only valid bits are set. Signed-off-by: Hauke Mehrtens --- package/network/config/ltq-vdsl-app/files/dsl_control | 6

[OpenWrt-Devel] [PATCH 4/5] ltq-vdsl-app: make it possible to configure ADSL/VDSL independently

2016-02-28 Thread Hauke Mehrtens
There are some cases where ISPs are running ATM over VDSL or PTM over ADSL, this is not the common case, but these cases exist. Make it possible to configure OpenWrt for such cases by adding a new config option line_mode. Signed-off-by: Hauke Mehrtens --- .../network/config/ltq-vdsl-app/files/ds

[OpenWrt-Devel] [PATCH 1/5] base-files: change type of adsl and vdsl to dsl only

2016-02-28 Thread Hauke Mehrtens
Instead of having two different types adsl and vdsl just create one dsl type. This way we can use the same luci code for adsl and vdsl and the config parameters are not so different. Signed-off-by: Hauke Mehrtens --- package/base-files/files/lib/functions/uci-defaults.sh | 4 ++-- 1 file changed

Re: [OpenWrt-Devel] [PATCH 2/5] ltq-vdsl-app: load the vrx200 firmware or patch it

2016-02-28 Thread Hauke Mehrtens
On 02/28/2016 08:53 AM, John Crispin wrote: > > > On 28/02/2016 08:44, Felix Fietkau wrote: >> On 2016-02-28 08:42, Felix Fietkau wrote: >>> On 2016-02-28 08:40, Felix Fietkau wrote: On 2016-02-27 23:59, Hauke Mehrtens wrote: > This checks for the VRX firmware provided in the OpenWrt pac

[OpenWrt-Devel] Any fix ETA or other info on the server hardware problems?

2016-02-28 Thread Hannu Nyman
The current server troubles have now continued for several weeks. Last buildbot run was three weeks ago. Mailing list archive server is also down. Is there any news or information about the status of the server hardware upgrade project? Any guess when the buildbot will be running again? Ther

Re: [OpenWrt-Devel] [PATCH v2] ubus: use network order in ubus message header fields

2016-02-28 Thread Felix Fietkau
On 2016-02-28 09:34, Eyal Birger wrote: > Hi, > > On Tue, Feb 16, 2016 at 12:21 PM Felix Fietkau > wrote: > > On 2016-02-16 11:13, Eyal Birger wrote: > > Hi Felix, thanks for your patience. > > > > On Tue, Feb 16, 2016 at 12:00 PM Felix Fietkau

Re: [OpenWrt-Devel] [PATCH v2] ubus: use network order in ubus message header fields

2016-02-28 Thread Eyal Birger
Hi, On Tue, Feb 16, 2016 at 12:21 PM Felix Fietkau wrote: > On 2016-02-16 11:13, Eyal Birger wrote: > > Hi Felix, thanks for your patience. > > > > On Tue, Feb 16, 2016 at 12:00 PM Felix Fietkau > > wrote: > > > > On 2016-02-16 10:06, Eyal Birger wrote: > > > Hi