Re: [OpenWrt-Devel] trac/rss-feed has changed?

2014-07-17 Thread Mathias Kresin
2014-07-16 20:51 GMT+02:00 Bastian Bittorf bitt...@bluebottle.com: my feedreader was used to fetch https://dev.openwrt.org/log/trunk?limit=100mode=stop_on_copyformat=rss but this stopped working around 13. july 13:00 why? what should i use now? bastian Hi Bastian, i'm using the rss feed

[OpenWrt-Devel] [PATCH 1/2] base-files: add network_get_ipaddrs_all()

2014-10-06 Thread Mathias Kresin
Return all IPv4 and IPv6 addresses. Signed-off-by: Mathias Kresin open...@kresin.me --- package/base-files/files/lib/functions/network.sh | 23 +++ 1 file changed, 23 insertions(+) diff --git a/package/base-files/files/lib/functions/network.sh b/package/base-files/files/lib

[OpenWrt-Devel] [PATCH 2/2] dropbear: ensure the interface has an ip-address

2014-10-06 Thread Mathias Kresin
Use network_get_ipaddrs_all to get all ip-addresses of an interface. If the function fails, the interface does not exists or has not any suiteable ip addresses assigned. Use the returned ip-address(es) to construct the dropbear listen address. Signed-off-by: Mathias Kresin open...@kresin.me

[OpenWrt-Devel] [PATCH 0/2] dropbear: ensure the specified interface exists and has an ip-address

2014-10-06 Thread Mathias Kresin
If dropbear is configured to listen on a logic interface which does not (yet) results in a physical interface when dropbear is (re)started, the init script bind the particular instance to 0.0.0.0. The same happens if the physical interface exists but does not have an ip-address assigned. All

Re: [OpenWrt-Devel] [PATCH 1/2] base-files: add network_get_ipaddrs_all()

2014-10-06 Thread Mathias Kresin
Hi Bastian, the short answer for all your questions is: Because all the existing functions in network.sh are written this way. The function I would like to introduce is a dupe of network_get_ipaddrs6() which is a dupe of network_get_ipaddr6(). All three functions only differ by the value which is

[OpenWrt-Devel] [PATCH] cmus: fix configure checks against host files

2014-01-23 Thread Mathias Kresin
-by: Mathias Kresin open...@kresin.me --- diff --git a/sound/cmus/patches/020-check_header_sys_soundcard.patch b/sound/cmus/patches/020-check_header_sys_soundcard.patch new file mode 100644 index 000..74f622e --- /dev/null +++ b/sound/cmus/patches/020-check_header_sys_soundcard.patch @@ -0,0

[OpenWrt-Devel] [PATCH] shadow: add missing build dependency

2014-01-23 Thread Mathias Kresin
As jow has stated in #12004 correctly, shadows needs a build dependency on libintl (gettext) to provide the missing m4 macros. The missing dependency was spotted while doing a parallel build. This patch closes #12004. Signed-off-by: Mathias Kresin open...@kresin.me --- diff --git a/utils

[OpenWrt-Devel] [PATCH] mxml: Update package source URL

2014-01-23 Thread Mathias Kresin
The ftp.easysw.com site has disappeared completely. So switch to the authors personal site. Signed-off-by: Mathias Kresin open...@kresin.me --- diff --git a/libs/mxml/Makefile b/libs/mxml/Makefile index fdaa504..d3ba357 100644 --- a/libs/mxml/Makefile +++ b/libs/mxml/Makefile @@ -13,7 +13,7

[OpenWrt-Devel] [PATCH] cups: Update package source URL

2014-01-23 Thread Mathias Kresin
The ftp.easysw.com site has disappeared completely. This patch adds the official cups site as package source and drops all easysw.com servers and not longer existent mirrors of easys.com. Signed-off-by: Mathias Kresin open...@kresin.me --- diff --git a/net/cups/Makefile b/net/cups/Makefile

[OpenWrt-Devel] [PATCH] telepathy-python: fix build error by updating to latest upstream version

2014-01-23 Thread Mathias Kresin
. [1] https://git.gnome.org/browse/libxslt/commit/xsltproc?id=e669a8c7cefec93ee1bfaf59721aadc42e226d6e The current Ubuntu version already ships xsltproc 1.1.28. Signed-off-by: Mathias Kresin open...@kresin.me --- diff --git a/lang/telepathy-python/Makefile b/lang/telepathy-python/Makefile index

Re: [OpenWrt-Devel] [PATCH] [packages] boost: fixed build failure with CONFIG_PKG_BUILD_USE_JOBSERVER=y

2014-01-23 Thread Mathias Kresin
-by: Szymon Acedański ac...@whiptronics.com Tested-by: Mathias Kresin open...@kresin.me --- diff --git a/libs/boost/Makefile b/libs/boost/Makefile index 832fc57..5804231 100644 --- a/libs/boost/Makefile +++ b/libs/boost/Makefile @@ -184,6 +184,13 @@ endef CONFIGURE_PREFIX:=$(PKG_INSTALL_DIR

[OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-28 Thread Mathias Kresin
With this patch, the --interface-name option of dnsmasq is used to add a DNS record for the openwrt box. Starting with dnsmasq 2.67test5 it does even work for ipv6 addresses. IPv6 addresses with an expired lifetime will be automatically replaced with a new valid one. Signed-off-by: Mathias Kresin

Re: [OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-28 Thread Mathias Kresin
will be automatically replaced with a new valid one. Signed-off-by: Mathias Kresin open...@kresin.me --- Index: package/network/services/dnsmasq/files/dnsmasq.init === --- package/network/services/dnsmasq/files/dnsmasq.init (revision 36743

Re: [OpenWrt-Devel] [PATCH] dnsmasq: use interface-name option to add own hostname

2013-05-31 Thread Mathias Kresin
2013/5/31 Jonas Gorski j...@openwrt.org On Tue, May 28, 2013 at 4:53 PM, Mathias Kresin open...@kresin.me wrote: Updated version of the patch without hardcoded interface. lanaddr isn't used anymore so drop it. Use the --interface-name option of dnsmasq to add a DNS record

[OpenWrt-Devel] [PATCH] tinyproxy: allow to use the bind option

2011-05-19 Thread Mathias Kresin
Attached patch allows to use the 'bind' option even if transparent proxy support is compiled into tinyproxy (which is in openwrt). There are several references related to the bug, but nobody seams to know why this - apparently not needed - check was build in. Regards Mathias

[OpenWrt-Devel] [PATCH] mark minidlna.conf as config file

2011-07-01 Thread Mathias Kresin
This is a copy of the apparently overlooked ticket 9439 opened by me. Attached patch for the Makefile of the minidlna package, marks /etc/minidlna.conf as config file. Regards Mathias Kresin Index: Makefile === --- Makefile

Re: [OpenWrt-Devel] [PATCH] mark minidlna.conf as config file

2011-07-04 Thread Mathias Kresin
/11 23:55, Mathias Kresin wrote: This is a copy of the apparently overlooked ticket 9439 opened by me. Attached patch for the Makefile of the minidlna package, marks /etc/minidlna.conf as config file. Regards Mathias Kresin

Re: [OpenWrt-Devel] lantiq DSL drivers / firmware info

2015-08-15 Thread Mathias Kresin
Am 24.07.2015 um 01:20 schrieb Martin Blumenstingl: On Fri, Jul 24, 2015 at 1:00 AM, Aleksander Wałęski olewa...@gmail.com wrote: Actually, it just dawned on me that they can be doing just that. In the bootloader. This is the only part of firmware we are not changing. If PCBs turn out to be

[OpenWrt-Devel] TP-Link v3 header format description

2015-08-13 Thread Mathias Kresin
Hey Weijie Gao, 2015-08-05 20:07 GMT+02:00 Weijie Gao hackpas...@gmail.com: This patch adds header version 2 option for mktplinkfw. As long as we talk about the same, the new header version is v3. The v2 header is already covered by mktplinkfw2.c. Currently, I'm working on the same topic.

[OpenWrt-Devel] [PATCH] lantiq: fix use of IRQF_DISABLED in lantiq kmods

2015-10-11 Thread Mathias Kresin
commit/?id=d8bf368d0631d4bc2612d8bf2e4e8e74e620d0cc Signed-off-by: Mathias Kresin <open...@kresin.me> --- The issue was reported in https://dev.openwrt.org/ticket/20679 and the patch was successfully test by an affected user. package/kernel/lantiq/ltq-hcd/src/ifxhcd.c | 2 + package/kerne

Re: [OpenWrt-Devel] [PATCH] lantiq: fix use of IRQF_DISABLED in lantiq kmods

2015-10-11 Thread Mathias Kresin
Am 11.10.2015 um 10:50 schrieb Arjen de Korte: Citeren Mathias Kresin <open...@kresin.me>: diff --git a/package/kernel/lantiq/ltq-hcd/src/ifxhcd.c b/package/kernel/lantiq/ltq-hcd/src/ifxhcd.c index be0a91d..14dc7a1 100644 --- a/package/kernel/lantiq/ltq-hcd/src/ifxhcd.c +++ b/package/

[OpenWrt-Devel] [PATCH v2] lantiq: fix use of IRQF_DISABLED in lantiq kmods

2015-10-11 Thread Mathias Kresin
commit/?id=d8bf368d0631d4bc2612d8bf2e4e8e74e620d0cc Signed-off-by: Mathias Kresin <open...@kresin.me> --- The issue was reported in https://dev.openwrt.org/ticket/20679 and the v1 patch was successfully test by an affected user. v2: Remove IRQF_DISABLED flags or replace them with 0x0 instead of u

[OpenWrt-Devel] [PATCH] kernel: update 4.1 to 4.1.9

2015-10-04 Thread Mathias Kresin
-in-continuation-handling-in-proc-net.patch was applied upstream and dropped. Signed-off-by: Mathias Kresin <open...@kresin.me> --- Runtime tested on lantiq. Compile tested on ar7, ar71xx, arm64, bcm53xx, brcm47xx, brcm63xx, brcm2708 (brcm2708 & brcm2709), gemini (raidsonic & wili

[OpenWrt-Devel] [PATCH 2/2] lantiq: Add target TP-Link TD-W8980

2015-10-02 Thread Mathias Kresin
The device is similar to the TD-W8970, beside a different Atheros 2.4 GHz wireless chip and the additional, PCI connected, WAVE300 5 GHz wireless. Signed-off-by: Mathias Kresin <open...@kresin.me> --- The DTS should work for a TD-W9980 as well. But due to lack of the appropriate hardware,

[OpenWrt-Devel] [PATCH 1/2] lantiq: fix ath_pci_fixup hang on bridged devices

2015-10-02 Thread Mathias Kresin
Port of r41856. In contrast to the brcm63xx target, it isn't sufficient to enable/disable the bridge. The device needs to be enabled/disabled to fix the hang. The bridge will be automatically enabled by the time the connected device is enabled. Fixes boot on TD-W8980. Signed-off-by: Mathias

[OpenWrt-Devel] [PATCH] uboot-lantiq: fix build with gcc5

2015-12-08 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- .../patches/0045-no_extern_inline.patch| 101 + .../uboot-lantiq/patches/0046-no_weak_alias.patch | 28 ++ .../patches/0047-add-gcc5-support.patch| 93 +++ 3 files change

[OpenWrt-Devel] [PATCH 2/2] lantiq: add VDSL2 vectoring status information

2015-12-04 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- Tested by my self with a "normal" VDSL2 line and by a user with a german 1&1 VDSL2 vectoring line: /etc/init.d/dsl_control status ATU-C Vendor ID: B5,00,42,44,43,4D,A4,61 AT

[OpenWrt-Devel] [PATCH 1/2] lantiq: ltq-vdsl-mei: enable vectoring support

2015-12-04 Thread Mathias Kresin
Dynamic Spectrum Management is a precondition for G.993.5 (VDSL2 vectoring). Signed-off-by: Mathias Kresin <open...@kresin.me> --- It has been sucessfully tested by a user with a german 1&1 VDSL2 vectoring line, who could only get the ADSL2+ fallback speed[1] without this patch (

[OpenWrt-Devel] [PATCH] lantiq: fix led setup after switch to uci-defaults-new.sh

2015-12-08 Thread Mathias Kresin
he initial state "switched off" With the final result of a switched off power led after boot. The only led that needs to be added is the BTHOMEHUBV5A specific dimmed led. Signed-off-by: Mathias Kresin <open...@kresin.me> --- The loop was introduced with r34698 to compact the le

[OpenWrt-Devel] [PATCH] lantiq: fix logic error in dsl board.d code

2015-12-04 Thread Mathias Kresin
Starting with r47755 the pppoe wan interface section isn't any longer added to the network config on firstboot, using the default configuration. Since the commit message does not mention such a change, I assume that this wasn't intentionally. Signed-off-by: Mathias Kresin <open...@kresin

[OpenWrt-Devel] [PATCH 1/2] lantiq: ltq-vdsl-app: re-add showtime counters support

2015-12-11 Thread Mathias Kresin
+4256 byte) uncompressed. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/network/config/ltq-vdsl-app/Makefile b/package/network/config/ltq-vdsl-app/Makefile index

Re: [OpenWrt-Devel] [PATCH 5/5] lantiq: Configure LED polarity for TDW8970.

2015-12-16 Thread Mathias Kresin
Am 16.12.2015 um 05:42 schrieb Vittorio G (VittGam): This patch configures the correct ath9k WLAN LED polarity for the TDW8970. Signed-off-by: Vittorio Gambaletta --- The TDW8970 LED is active high, but I'm not sure about the TDW8980 as I don't have one. If the TDW8980

[OpenWrt-Devel] [PATCH 3/3] lantiq: let dsl_notify.sh exclusive handle the dsl led

2015-12-16 Thread Mathias Kresin
to the ptm/atm device. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/target/linux/lantiq/base-files/etc/board.d/01_leds b/target/linux/lantiq/base-files/etc/b

Re: [OpenWrt-Devel] [PATCH] lantiq: Add default LED configuration for TDW89X0.

2015-12-16 Thread Mathias Kresin
Am 16.12.2015 um 05:42 schrieb Vittorio G (VittGam): Signed-off-by: Vittorio Gambaletta --- --- a/target/linux/lantiq/base-files/etc/board.d/01_leds +++ b/target/linux/lantiq/base-files/etc/board.d/01_leds @@ -38,6 +38,10 @@ BTHOMEHUBV5A) ucidef_set_led_netdev

[OpenWrt-Devel] [PATCH 2/3] lantiq: unify dsl led names

2015-12-16 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV4510PW.dts | 2 +- target/linux/lantiq/dts/ARV4520PW.dts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/lantiq/dts/ARV4510PW.dts b/target/linux/lantiq/dts/ARV4510PW.dts

[OpenWrt-Devel] [PATCH 1/3] lantiq: use the configured dsl led instead of a hardcoded one

2015-12-16 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 1 + target/linux/lantiq/base-files/sbin/dsl_notify.sh | 14 +++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/target/linux/lantiq/base-files/etc/b

[OpenWrt-Devel] [PATCH] lantiq: add the TDW8980 5GHz led

2015-12-16 Thread Mathias Kresin
Still unused, but u-boot doesn't take care of the led, which results in a permanent switched on 5GHz LED. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/TDW8980.dts | 7 +++ 1 file changed, 7 insertions(+) diff --git a/target/linux/lantiq/dts/TDW8980.

[OpenWrt-Devel] [PATCH 2/2] lantiq: ltq-vdsl-app: cleanup Makefile

2015-12-11 Thread Mathias Kresin
or disable features that are covered by the feature set The config.log contains the same values as before. The vdsl_cpe_control binary has the same checksum as before. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/Makefile | 22 ---

Re: [OpenWrt-Devel] [PATCH 2/3] lantiq: unify dsl led names

2015-12-17 Thread Mathias Kresin
2015-12-17 7:52 GMT+01:00 John Crispin : > Hi, > > we had a discussion yesterday with a few people and agreed to cleanup > the led names on for the lantiq target to match the format expected by > the kernel. i like this patch however we need to do the led renaming > first i

[OpenWrt-Devel] [PATCH] lantiq: ltq-atm: set carrier status

2015-12-15 Thread Mathias Kresin
g loglevel. But it reduces the amount of ppp related messages significant. Signed-off-by: Mathias Kresin <open...@kresin.me> --- Tested with an ADSL line. package/kernel/lantiq/ltq-atm/src/ltq_atm.c | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/package/k

Re: [OpenWrt-Devel] [PATCH 4/4] lantiq: lantiq-deu: Make the DEU driver compatible with 4.2 and newer

2015-12-31 Thread Mathias Kresin
Am 31.12.2015 um 08:12 schrieb John Crispin: Hi On 31/12/2015 01:10, Martin Blumenstingl wrote: + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0) +#include +#else #include +#endif please just drop the old code. there is no need to be compatible to old kernels. John I guess

Re: [OpenWrt-Devel] [PATCH v2 4/5] ltq-vdsl-app: enable G.993.5 XTSE bit by default

2015-12-31 Thread Mathias Kresin
Am 31.12.2015 um 10:01 schrieb John Crispin: On 30/12/2015 21:59, Mathias Kresin wrote: According to ITU-T G.997.1 Amendment 2 (04/2013) section 2.1, bit 3 of XTSE octet 8 either allow or denies the initialization of G.993.5. Even if the current redistributable xDSL firmware doesn't include

[OpenWrt-Devel] [PATCH 6/6] ltq-vdsl-app: re-add lowlevel settings

2015-12-29 Thread Mathias Kresin
to tone_adsl_av and tone_vdsl_av with the old lowlevel settings. Signed-off-by: Mathias Kresin <open...@kresin.me> --- I've done some tests to see in which situations the tone setting is required. In cases no tone is specified, the tone is used according to the loaded firmware or set by the

[OpenWrt-Devel] [PATCH 4/6] ltq-vdsl-app: let the driver/app probe the xtse on missing annex

2015-12-29 Thread Mathias Kresin
r47933 revealed that the driver/app in combination with the chosen firmware does a good job in selecting a working xtse. Use this probing mode if no annex is specified. Signed-off-by: Mathias Kresin <open...@kresin.me> --- Since a predefined annex isn't required, what about using 'auto

[OpenWrt-Devel] [PATCH 5/6] ltq-vdsl-app: enable G.993.5 XTSE bit by default

2015-12-29 Thread Mathias Kresin
line working using a custom xDSL firmware. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/dsl_control | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/p

[OpenWrt-Devel] [PATCH 1/2] lantiq: add the current profile to the stats output

2015-12-29 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- .../lantiq/base-files/lib/functions/lantiq_dsl.sh | 30 ++ 1 file changed, 30 insertions(+) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/fun

[OpenWrt-Devel] [PATCH 3/6] ltq-vdsl-app: add/enable missing G.993.2 XTSE bits

2015-12-29 Thread Mathias Kresin
, even experienced users are not aware that they have to remove the annex option to get their VDSL2 line working and as shown by this patch it doesn't need to be that "complicated". Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/

[OpenWrt-Devel] [PATCH 2/6] ltq-vdsl-app: disable Annex I

2015-12-29 Thread Mathias Kresin
Commit r47934 removed the comment about G.992.4 support, but enabled G.992.4 Annex I without mention it (bit 6 of XTSE octet 5 [ITU-T G.997.1 (06/2012) - section 7.3.1.1.1]. To my knowledge Annex I is not supported by the firmware. Signed-off-by: Mathias Kresin <open...@kresin.me> --- p

Re: [OpenWrt-Devel] [PATCH 2/6] ltq-vdsl-app: disable Annex I

2015-12-29 Thread Mathias Kresin
Am 29.12.2015 um 22:34 schrieb Hauke Mehrtens: Hi, On 12/29/2015 09:56 PM, Mathias Kresin wrote: Commit r47934 removed the comment about G.992.4 support, but enabled G.992.4 Annex I without mention it (bit 6 of XTSE octet 5 [ITU-T G.997.1 (06/2012) - section 7.3.1.1.1]. You are unsettling

[OpenWrt-Devel] [PATCH] lantiq: match default xdsl mode and default wan interface

2015-12-29 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/02_network | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/target/linux/lantiq/base-files/etc/board.d/02_network b/target/linux/lantiq/base-files/etc/board.d/02_network

[OpenWrt-Devel] [PATCH 2/2] lantiq: convert vendorid into human readable form

2015-12-29 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- .../lantiq/base-files/lib/functions/lantiq_dsl.sh | 67 ++ 1 file changed, 67 insertions(+) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh b/target/linux/lantiq/base-files/lib/fun

[OpenWrt-Devel] [PATCH 1/6] ltq-vdsl-app: use the final xtse format

2015-12-29 Thread Mathias Kresin
This way we can drop the call to sed. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/dsl_control | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/p

[OpenWrt-Devel] [PATCH v2 0/5] ltq-vdsl-app: set VDSL XTSE bits and re-add lowlevel config

2015-12-30 Thread Mathias Kresin
Changes in v2: - dropped "ltq-vdsl-app: disable Annex I" patch, this one was wrong Mathias Kresin (5): ltq-vdsl-app: use the final xtse format ltq-vdsl-app: add/enable missing G.993.2 XTSE bits ltq-vdsl-app: let the driver/app probe the xtse on missing annex ltq-vdsl-app: enab

[OpenWrt-Devel] [PATCH v2 3/5] ltq-vdsl-app: let the driver/app probe the xtse on missing annex

2015-12-30 Thread Mathias Kresin
r47933 revealed that the driver/app in combination with the chosen firmware does a good job in selecting a working xtse. Use this probing mode if no annex is specified. Signed-off-by: Mathias Kresin <open...@kresin.me> --- Since a predefined annex isn't required, what about using 'auto

[OpenWrt-Devel] [PATCH v2 4/5] ltq-vdsl-app: enable G.993.5 XTSE bit by default

2015-12-30 Thread Mathias Kresin
line working using a custom xDSL firmware. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/dsl_control | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/p

[OpenWrt-Devel] [PATCH v2 5/5] ltq-vdsl-app: re-add lowlevel settings

2015-12-30 Thread Mathias Kresin
to tone_adsl_av and tone_vdsl_av with the old lowlevel settings. Signed-off-by: Mathias Kresin <open...@kresin.me> --- I've done some tests to see in which situations the tone setting is required. In cases no tone is specified, the tone is used according to the loaded firmware or set by the

[OpenWrt-Devel] [PATCH v2 2/5] ltq-vdsl-app: add/enable missing G.993.2 XTSE bits

2015-12-30 Thread Mathias Kresin
, even experienced users are not aware that they have to remove the annex option to get their VDSL2 line working and as shown by this patch it doesn't need to be that "complicated". Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/

[OpenWrt-Devel] [PATCH v2 1/5] ltq-vdsl-app: use the final xtse format

2015-12-30 Thread Mathias Kresin
This way we can drop the call to sed. Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/network/config/ltq-vdsl-app/files/dsl_control | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/p

[OpenWrt-Devel] [PATCH] lantiq: P2812HNUFX - move usb leds to P2812HNU-F1

2015-12-25 Thread Mathias Kresin
The P2812HNU-F3 doesn't have usb leds. Only the P2812HNU-F1 has those leds. Reported-by: Sylwester Petela <ssc...@gmail.com> Signed-off-by: Mathias Kresin <open...@kresin.me> --- Hi John, I received the report yesterday and till now, I didn't had the time to send

[OpenWrt-Devel] [PATCH 07/12] lantiq: define default leds in dts files

2015-12-23 Thread Mathias Kresin
- ARV7525PW: use the power led as dsl led as done by the stock firmware - FRITZ3370: use the info led as internet led - FRITZ7320: use the power led as dsl led as done by the stock firmware Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV4510PW.dts

[OpenWrt-Devel] [PATCH 08/12] lantiq: use default leds defined in DTS

2015-12-23 Thread Mathias Kresin
Remove all now double defined leds from the led board file. Use pppoe as default for all broadband connections, since it's the default in OpenWrt now. Rename the the wifi leds to make sure, the not applicable default values get overwritten. Signed-off-by: Mathias Kresin <open...@kresin

[OpenWrt-Devel] [PATCH 11/12] lantiq: add support for indicating the boot state using three leds

2015-12-23 Thread Mathias Kresin
of the led after boot Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 18 target/linux/lantiq/base-files/etc/diag.sh | 52 +++--- target/linux/lantiq/dts/ARV4510PW.dts | 7 ++- target/linux/lant

[OpenWrt-Devel] [PATCH 01/12] lantiq: P2812HNUFX - move leds to dtsi

2015-12-23 Thread Mathias Kresin
Beside the used labels, they are the same on both boards. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/P2812HNUF1.dts | 61 - target/linux/lantiq/dts/P2812HNUF3.dts | 53 target/linux/lant

[OpenWrt-Devel] [PATCH 05/12] lantiq: ARV752DPW22 - fix dts file

2015-12-23 Thread Mathias Kresin
No need to switch (and keep) on all leds at boot. Use the same led logic and labels as the OEM firmware (red = okay, blue = failure). Add the red internet led. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV752DPW22.dts | 34 --

[OpenWrt-Devel] [PATCH 04/12] lantiq: DGN1000B - fix typo in dts file

2015-12-23 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/DGN1000B.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/dts/DGN1000B.dts b/target/linux/lantiq/dts/DGN1000B.dts index 4ccab93..199d3a9 100644 --- a/target/linux/lant

[OpenWrt-Devel] [PATCH] lantiq: fix Image Builder

2015-12-23 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/image/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 686cb6d..553bdc1 100644 --- a/target/linux/lantiq

[OpenWrt-Devel] [PATCH 00/12] lantiq: switch to devicename:colour:function naming scheme

2015-12-23 Thread Mathias Kresin
where the old mach file had This series has been runtime tested on BTHOMEHUBV5A, TDW8980, VGV7510KW22 and ARV752DPW22. All other boards are compile tested. Mathias Kresin (12): lantiq: P2812HNUFX - move leds to dtsi lantiq: BTHOMEHUBV2B - remove missing usb led workaround lantiq: ARV4518PWR0

[OpenWrt-Devel] [PATCH 12/12] lantiq: use soc:colour:function led naming scheme

2015-12-23 Thread Mathias Kresin
-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 6 +- target/linux/lantiq/dts/ARV4519PW.dts | 50 target/linux/lantiq/dts/ARV4520PW.dts | 40 +++-- target/linux/lantiq/dts/ARV4525PW.dts

[OpenWrt-Devel] [PATCH] lantiq: ltq-adsl-mei: fix typo

2015-12-23 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- package/kernel/lantiq/ltq-adsl-mei/patches/100_no-date-time.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/lantiq/ltq-adsl-mei/patches/100_no-date-time.patch b/package/kernel/lantiq/ltq-ad

[OpenWrt-Devel] [PATCH 09/12] lantiq: use power leds defined in DTS

2015-12-23 Thread Mathias Kresin
Use the power leds defined in the dts file instead of hardcoded led names. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/diag.sh | 34 +- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/target/linux/

[OpenWrt-Devel] [PATCH 06/12] lantiq: ARV752DPW - fix dts file

2015-12-23 Thread Mathias Kresin
Use the same led logic and labels as the OEM firmware (red = okay, blue = failure). Add the red internet led. Remove missing usb led workaround. The workaround shouldn't be in the default configuration. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV752D

[OpenWrt-Devel] [PATCH 10/12] lantiq: use dsl led defined in DTS

2015-12-23 Thread Mathias Kresin
the shared led according to the status of the ppp interface isn't suitable, since the led would be switched of if the ppp connection goes down, but the line is still in sync. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_led

[OpenWrt-Devel] [PATCH] lantiq: TDW89x0 - increase spi frequency

2015-12-23 Thread Mathias Kresin
ead as well. While touching the dts file, I fixed the dtc compiler warnings. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/TDW89X0.dtsi | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/target/linux/lantiq/dts/TDW89X0.dtsi b/target/lin

[OpenWrt-Devel] [PATCH 03/12] lantiq: ARV4518PWR01* move redundant parts to dtsi

2015-12-23 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV4518PWR01.dts | 179 + target/linux/lantiq/dts/ARV4518PWR01.dtsi | 184 ++ target/linux/lantiq/dts/ARV4518PWR01A.dts | 179 +-

[OpenWrt-Devel] [PATCH 02/12] lantiq: BTHOMEHUBV2B - remove missing usb led workaround

2015-12-23 Thread Mathias Kresin
The workaround shouldn't be in the default configuration. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/lantiq/base-files/etc/board.d/01_leds b/target/linux/lanti

[OpenWrt-Devel] [PATCH] lantiq: fix PCI_DEVICE_ID_LANTIQ_PCIE

2015-12-23 Thread Mathias Kresin
not present in the 3.18 patches. Signed-off-by: Mathias Kresin <open...@kresin.me> --- .../patches-4.1/0001-MIPS-lantiq-add-pcie-driver.patch | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/target/linux/lantiq/patches-4.1/0001-MIPS-lantiq-add-pcie-driver.pa

[OpenWrt-Devel] [PATCH v2] lantiq: P2812HNUFX - move usb leds to P2812HNU-F1

2015-12-28 Thread Mathias Kresin
The P2812HNU-F3 doesn't have usb leds. Only the P2812HNU-F1 has those leds. Reported-by: Sylwester Petela <ssc...@gmail.com> Signed-off-by: Mathias Kresin <open...@kresin.me> --- Changes in v2: - change the leds device prefix as well target/linux/lantiq/dts/P2812HNU

[OpenWrt-Devel] [PATCH] lantiq: TDW8980 - use devicename:colour:function led naming scheme

2015-12-28 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/TDW8980.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/dts/TDW8980.dts b/target/linux/lantiq/dts/TDW8980.dts index 0bcca6e..8a07a5c 100644 --- a/target/linux/lant

[OpenWrt-Devel] [PATCH v2 05/12] lantiq: ARV752DPW22 - fix dts file

2015-12-24 Thread Mathias Kresin
No need to switch (and keep) on all leds at boot. Use the same led logic and labels as the OEM firmware (red = okay, blue = failure). Add the red internet led. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV752DPW22.dts | 34 --

[OpenWrt-Devel] [PATCH v2 00/12] lantiq: switch to devicename:colour:function naming scheme

2015-12-24 Thread Mathias Kresin
pdated lan led name in the leds file (ARV7519RW22) - fix not renamed ISDN led (ARV4520PW) - fix spaces vs. tabs issue in diag.sh - use boardname instead of the generic soc Mathias Kresin (12): lantiq: P2812HNUFX - move leds to dtsi lantiq: BTHOMEHUBV2B - remove missing usb led

[OpenWrt-Devel] [PATCH v2 03/12] lantiq: ARV4518PWR01* move redundant parts to dtsi

2015-12-24 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV4518PWR01.dts | 179 + target/linux/lantiq/dts/ARV4518PWR01.dtsi | 184 ++ target/linux/lantiq/dts/ARV4518PWR01A.dts | 179 +-

[OpenWrt-Devel] [PATCH v2 02/12] lantiq: BTHOMEHUBV2B - remove missing usb led workaround

2015-12-24 Thread Mathias Kresin
The workaround shouldn't be in the default configuration. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/lantiq/base-files/etc/board.d/01_leds b/target/linux/lanti

[OpenWrt-Devel] [PATCH v2 04/12] lantiq: DGN1000B - fix typo in dts file

2015-12-24 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/DGN1000B.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/dts/DGN1000B.dts b/target/linux/lantiq/dts/DGN1000B.dts index 4ccab93..199d3a9 100644 --- a/target/linux/lant

[OpenWrt-Devel] [PATCH v2 01/12] lantiq: P2812HNUFX - move leds to dtsi

2015-12-24 Thread Mathias Kresin
Beside the used labels, they are the same on both boards. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/P2812HNUF1.dts | 61 - target/linux/lantiq/dts/P2812HNUF3.dts | 53 target/linux/lant

[OpenWrt-Devel] [PATCH v2 10/12] lantiq: use dsl led defined in DTS

2015-12-24 Thread Mathias Kresin
the shared led according to the status of the ppp interface isn't suitable, since the led would be switched of if the ppp connection goes down, but the line is still in sync. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_led

[OpenWrt-Devel] [PATCH v2 09/12] lantiq: use power leds defined in DTS

2015-12-24 Thread Mathias Kresin
Use the power leds defined in the dts file instead of hardcoded led names. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/diag.sh | 34 +- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/target/linux/

[OpenWrt-Devel] [PATCH v2 08/12] lantiq: use default leds defined in DTS

2015-12-24 Thread Mathias Kresin
Remove all now double defined leds from the led board file. Use pppoe as default for all broadband connections, since it's the default in OpenWrt now. Rename the the wifi leds to make sure, the not applicable default values get overwritten. Signed-off-by: Mathias Kresin <open...@kresin

[OpenWrt-Devel] [PATCH v2 06/12] lantiq: ARV752DPW - fix dts file

2015-12-24 Thread Mathias Kresin
Use the same led logic and labels as the OEM firmware (red = okay, blue = failure). Add the red internet led. Remove missing usb led workaround. The workaround shouldn't be in the default configuration. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV752D

[OpenWrt-Devel] [PATCH v2 12/12] lantiq: use devicename:colour:function led naming scheme

2015-12-24 Thread Mathias Kresin
-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 8 +-- target/linux/lantiq/dts/ARV4519PW.dts | 50 target/linux/lantiq/dts/ARV4520PW.dts | 42 +++-- target/linux/lantiq/dts/ARV4525PW.dts

[OpenWrt-Devel] [PATCH v2 11/12] lantiq: add support for indicating the boot state using three leds

2015-12-24 Thread Mathias Kresin
of the led after boot Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/base-files/etc/board.d/01_leds | 18 target/linux/lantiq/base-files/etc/diag.sh | 52 +++--- target/linux/lantiq/dts/ARV4510PW.dts | 7 ++- target/linux/lant

[OpenWrt-Devel] [PATCH v2 07/12] lantiq: define default leds in dts files

2015-12-24 Thread Mathias Kresin
- ARV7525PW: use the power led as dsl led as done by the stock firmware - FRITZ3370: use the info led as internet led - FRITZ7320: use the power led as dsl led as done by the stock firmware Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/ARV4510PW.dts

[OpenWrt-Devel] [PATCH] ledtrig-netdev: add support for renamed devices

2015-12-24 Thread Mathias Kresin
The ppp0 interface is renamed after the connection is established. Due to a missing NETDEV_REGISTER event, the ledtrig-netdev isn't aware of the renamed interface and literally ignores the device (no tx/rx indication, led isn't switched off with 'ifdown wan'). Signed-off-by: Mathias Kresin <o

Re: [OpenWrt-Devel] [PATCH package mountd] uci config for mountd fileystem options

2016-06-10 Thread Mathias Kresin
Hi Oliver, 2016-06-10 11:37 GMT+02:00 : > Signed-off-by: Olivier Hardouin > --- Your patch doesn't have a commit message, which explains why these options are required by default. I've used mountd recently with ext4 and was able to

[OpenWrt-Devel] imports from LEDE to OpenWrt github repo

2016-06-25 Thread Mathias Kresin
Hi Zoltan, I've noticed that you have imported a lot of patches from the LEDE repo into the OpenWrt github repo. I'm concerted about the fact that you have omitted at least a few of my Signed-off-bys[1][2], so that it isn't any longer noticeable that the changes are my work. Even though it

[OpenWrt-Devel] [PATCH] lantiq: fix wrong parameter order in xway_nand driver

2016-02-02 Thread Mathias Kresin
Signed-off-by: Mathias Kresin <open...@kresin.me> --- .../linux/lantiq/patches-4.4/0018-MTD-nand-lots-of-xrx200-fixes.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/patches-4.4/0018-MTD-nand-lots-of-xrx200-fixes.patch b/target/linux/

[OpenWrt-Devel] [PATCH] lantiq: VGV7510KW22/VGV7519 update spi pinmux group

2016-02-02 Thread Mathias Kresin
e files. This fixes the detection of the wireless chipset of the VGV7510KW22. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/dts/VGV7510KW22.dtsi | 2 +- target/linux/lantiq/dts/VGV7519.dtsi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tar

[OpenWrt-Devel] [PATCH] lantiq: BTHOMEHUBV5A - explicit select the flash device

2016-02-02 Thread Mathias Kresin
The stock u-boot doesn't disable unused flash banks. Therefore, the nand driver tries to initialize a not connected NOR flash and the device hangs on boot. Workaround the issue by selecting the second flash bank (NAND). Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/

[OpenWrt-Devel] [PATCH 2/5] lantiq: build sysupgrade images for lantiqImage

2016-04-24 Thread Mathias Kresin
Tested with VGV7510KW22NOR. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/image/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 4a358b5..d78c035 100644 --- a/target

[OpenWrt-Devel] [PATCH 4/5] add a no dict version of lzma to new image build code

2016-04-24 Thread Mathias Kresin
Required to compress kernels in a brnboot compatible way. Signed-off-by: Mathias Kresin <open...@kresin.me> --- include/image.mk | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/image.mk b/include/image.mk index 7c11aa1..bc383e6 100644 --- a/include/image.mk

[OpenWrt-Devel] [PATCH 5/5] lantiq: use new image build process for brnImages

2016-04-24 Thread Mathias Kresin
is required for some reason, the static keyword "squashfs" can be used. Signed-off-by: Mathias Kresin <open...@kresin.me> --- target/linux/lantiq/image/Makefile | 42 +- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/target/li

  1   2   3   >