Re: [OpenWrt-Devel] Howto force mips64

2014-06-17 Thread Martin Fäcknitz
force mips64 support is quite simple: set CPU_CFLAGS_octeon=-march=octeon -mabi=64 inside target/linux/octeon/Makefile and replace the same line in include/target.mk. Finally you have to add the following patch: diff --git a/target/linux/octeon/patches-3.10/-cn61xx_support.patch

Re: [OpenWrt-Devel] Howto force mips64

2014-06-17 Thread John Crispin
On 17/06/2014 11:24, Martin Fäcknitz wrote: uclibc's mips64 support is broken, so you have to use glibc. gcc-4.8 doesn't work for me (invalid TLS related code), therefore use gcc-4.6. Hi, yes, utterly broken :) i have been talking to the guys at imgtec about this and there are people

Re: [OpenWrt-Devel] Howto force mips64

2014-06-17 Thread Martin Fäcknitz
Hi, here are the patches which will fix the uclibc-mips64-tls problem: --- a/toolchain/uClibc/patches-0.9.33.2/999-mips64-tprel.patch +++ b/toolchain/uClibc/patches-0.9.33.2/999-mips64-tprel.patch @@ -1,8 +1,19 @@ Index: b/ldso/ldso/mips/elfinterp.c

[OpenWrt-Devel] [PATCH] iproute2: update version to 3.15.0, refresh patches, add maintainer

2014-06-17 Thread Russell Senior
Signed-off-by: Russell Senior russ...@personaltelco.net --- package/network/utils/iproute2/Makefile | 9 + package/network/utils/iproute2/patches/006-no_sctp.patch | 4 ++-- package/network/utils/iproute2/patches/110-extra-ccopts.patch| 2 +-

[OpenWrt-Devel] CONFIG_DEBUG and CONFIG_USE_SSTRIP

2014-06-17 Thread Karl Vogel
Currently when CONFIG_DEBUG is enabled, stripping is disabled and the sstrip option becomes unavailable. Looking at the commit history I noticed ticket #6373 which introduced some of these changes. Reading the ticket it seems the intend was to disable stripping when a user selected CONFIG_DEBUG.

Re: [OpenWrt-Devel] Problem compiling kernel 3.3.8 in AA

2014-06-17 Thread Francisco Cuesta
2014-06-11 17:17 GMT+02:00 Tijs Van Buggenhout t...@able.be: It seems that the kernel config being generated by openwrt is incomplete for some reason. Are you using an old openwrt config to build for a new AA revision, without going through the openwrt configuration stage ? Yes I am doing

[OpenWrt-Devel] [PATCH] lantiq: make loading pci fixup data from cal_data work again

2014-06-17 Thread Ben Mulvihill
Changeset 40948 restored an older (and uglier!) version of the code for reading the athxk calibration partition on lantiq xway boards. As a result pci fixups stored in this partition are no longer applied, breaking wireless on the BTHOMEHUBV2B and (I imagine) on the DGN3500. This is a minimal

[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

[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

[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 ---

[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