Re: [OpenWrt-Devel] [PATCH v2] lantiq: get more status information from xDSL

2015-08-03 Thread Andre Heider
Hi, On Fri, Jul 31, 2015 at 11:01 AM, feckert wrote: > + echo "dsl.latency_num_down=$sidu" > + echo "dsl.latency_num_up=$sidd" this hunk breaks the luci status/overview page, see `logread` for a syntax error message. Both values need to be "-quoted, they're whitespace

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

2015-07-23 Thread Andre Heider
Hi Alexander, On Fri, Jul 24, 2015 at 12:03 AM, Alexander Couzens wrote: > If someone would like to search for differences on the pcb, I can make photos > of both pcbs. soldering rx, tx and gnd on a pcb for a serial connection is as far as my hardware skills go, but maybe we can figure out the

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

2015-07-23 Thread Andre Heider
Hi Martin, On Thu, Jul 23, 2015 at 11:51 PM, Martin Blumenstingl wrote: >> This sounds like an annex incompability? Was I wrong and there is a >> hardware difference and I cannot use the non B model with annex b? > Indeed, I have read multiple times that the DSL modem should support > all annexes

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

2015-07-23 Thread Andre Heider
Hi Martin, On Sun, Jul 12, 2015 at 3:44 PM, Martin Blumenstingl wrote: > Since my latest patches were merged into the OpenWrt repository the > patch which updates the lantiq DSL drivers/application did not apply > anymore. > Here is the updated patch which applies against today's trunk: [0] > > R

[OpenWrt-Devel] [PATCH v2 3/5] dnsmasq: add upstream patch to build against libnettle-mini

2014-06-17 Thread Andre Heider
Signed-off-by: Andre Heider --- ...g-add-DNO_GMP-for-use-with-nettle-mini-gm.patch | 88 ++ 1 file changed, 88 insertions(+) create mode 100644 package/network/services/dnsmasq/patches/0001-Build-config-add-DNO_GMP-for-use-with-nettle-mini-gm.patch diff --git a/package

[OpenWrt-Devel] [PATCH v2 2/5] dnsmasq: respect target's LDFLAGS

2014-06-17 Thread Andre Heider
Append local flags, don't overwrite. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index c0d3dc4..84

[OpenWrt-Devel] [PATCH v2 5/5] dnsmasq: add UCI DNSSEC runtime support

2014-06-17 Thread Andre Heider
Ship keys for the root zone and add two uci options to enable DNSSEC checks: Option 'dnssec': Activate DNSSEC validation Option 'dnsseccheckunsigned': Ensure answers without DNSSEC are in unsigned zones. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/fi

[OpenWrt-Devel] [PATCH v2 4/5] dnsmasq: Add a full variant

2014-06-17 Thread Andre Heider
This variant includes support for DHCPv6 and DNSSEC. DNSSEC adds a dependency on libnettle. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Makefile | 26 ++ 1 file changed, 26 insertions(+) diff --git a/package/network/services/dnsmasq/Makefile b

[OpenWrt-Devel] [PATCH v2 1/5] dnsmasq: use COPTS for compile time options

2014-06-17 Thread Andre Heider
As documented in config.h. Doing otherwise will break dnsmasq's pkg-wrapper script to find its libs to link to. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Makefile | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package/network/services/dn

[OpenWrt-Devel] [PATCH v2 0/5] DNSSEC support

2014-06-17 Thread Andre Heider
Hi, fresh set of patches. Changes against v1: - building against libnettle-mini is supported now, patch 3 adds an upstream fix for this combination. - switched from a compile time configuration menu to a 3rd variant "full". Thanks, Andre Andre Heider (5): dnsmasq: use COPTS f

Re: [OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-16 Thread Andre Heider
On Mon, Jun 16, 2014 at 10:52 AM, Steven Barth wrote: > >> That sounds better, but on the other side users wanting only dhcpv6 >> then get quite a lot of DNSSEC bloat. >> I don't have numbers at hand, but we could explore static >> libnettle-mini linking? > > No, I wasn't thinking about dropping t

Re: [OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-16 Thread Andre Heider
On Mon, Jun 16, 2014 at 10:16 AM, Steven Barth wrote: > my intention was more to add one build-variant dnsmasq-full with standard + > dhcpv6 + authoritative + dnssec. As dnssec adds hundreds of KB of > dependencies anyway I don't think the 10 or 20 KB of the other features make > it particularly w

Re: [OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-16 Thread Andre Heider
On Mon, Jun 16, 2014 at 10:15 AM, Nikos Mavrogiannopoulos wrote: > On Mon, Jun 16, 2014 at 10:12 AM, Andre Heider wrote: >>> could you please add nettle-mini support and make this a build variant >>> instead of a config option, please? >>> Build variant has the ad

Re: [OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-16 Thread Andre Heider
Hi, On Sun, Jun 15, 2014 at 11:13 AM, Steven Barth wrote: > could you please add nettle-mini support and make this a build variant > instead of a config option, please? > Build variant has the advantage that we can precompile it as ipks because we > cannot enable dnssec by default. I posted a pa

Re: [OpenWrt-Devel] [PATCH 3/4] dnsmasq: Add config option to enable DNSSEC validation

2014-06-16 Thread Andre Heider
Hi, On Sun, Jun 15, 2014 at 12:26 AM, Yousong Zhou wrote: > It will be more complete if dnsmasq-dhcpv6 is also covered by this > config option. Even better is letting this option depend on the > actual dnsmasq build variant selected. As mentioned in the cover letter: while the config option sho

Re: [OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-14 Thread Andre Heider
On Sat, Jun 14, 2014 at 6:56 PM, Nikos Mavrogiannopoulos wrote: > On Sat, 2014-06-14 at 17:34 +0200, Andre Heider wrote: >> Hi, >> >> this set adds DNSSEC validation to dnsmasq, tested on ar71xx. >> >> The set is pretty small and should be self explanatory. &

[OpenWrt-Devel] [PATCH 4/4] dnsmasq: add UCI DNSSEC runtime support

2014-06-14 Thread Andre Heider
Ship keys for the root zone and add two uci options to enable DNSSEC checks: Option 'dnssec': Activate DNSSEC validation Option 'dnsseccheckunsigned': Ensure answers without DNSSEC are in unsigned zones Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Ma

[OpenWrt-Devel] [PATCH 3/4] dnsmasq: Add config option to enable DNSSEC validation

2014-06-14 Thread Andre Heider
Enabling this compile time option adds a dependency on libnettle. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Config.in | 25 + package/network/services/dnsmasq/Makefile | 10 +- 2 files changed, 34 insertions(+), 1 deletion(-) create mode

[OpenWrt-Devel] [PATCH 1/4] dnsmasq: use COPTS for compile time options

2014-06-14 Thread Andre Heider
As documented in config.h. Doing otherwise will break dnsmasq's pkg-wrapper script to find its libs to link to. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Makefile | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package/network/services/dn

[OpenWrt-Devel] [PATCH 2/4] dnsmasq: respect target's LDFLAGS

2014-06-14 Thread Andre Heider
Append local flags, don't overwrite. Signed-off-by: Andre Heider --- package/network/services/dnsmasq/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index c0d3dc4..84

[OpenWrt-Devel] [PATCH 0/4] dnsmasq: DNSSEC support

2014-06-14 Thread Andre Heider
setting the latter option to '1' without fullfilling 1) will break all queries! - `dig +dnssec +multi +tcp posteo.de` should resolve with 'ad' in flags - `dig +dnssec +multi +tcp dnssec-failed.org` should not resolve Thanks, Andre Andre Heider (4):

<    1   2   3