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 martin.blumensti...@googlemail.com 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

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 lyn...@fe80.eu 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

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 martin.blumensti...@googlemail.com 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

[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 for compile time

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/Makefile | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/Makefile | 26 ++ 1 file changed, 26 insertions(+) diff --git a/package/network/services

[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 a.hei...@gmail.com --- 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

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/files

[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 a.hei...@gmail.com --- ...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

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 yszhou4t...@gmail.com 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

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 cy...@openwrt.org 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.

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 n.mavrogiannopou...@gmail.com wrote: On Mon, Jun 16, 2014 at 10:12 AM, Andre Heider a.hei...@gmail.com wrote: could you please add nettle-mini support and make this a build variant instead of a config option, please? Build variant has

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 cy...@openwrt.org 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

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 cy...@openwrt.org 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

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

2014-06-14 Thread Andre Heider
' 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): dnsmasq: use COPTS for compile time options dnsmasq

[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 a.hei...@gmail.com --- 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

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/Makefile | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/Config.in | 25 + package/network/services/dnsmasq/Makefile | 10 +- 2 files changed, 34 insertions(+), 1

[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 a.hei...@gmail.com --- package/network/services/dnsmasq/Makefile

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 n...@gnutls.org 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. There's room for improvement

<    1   2   3