[LEDE-DEV] [PATCH] brcm47xx: mips74k: specify DEVICE_PACKAGES for all devices

2016-12-29 Thread Rafał Miłecki
From: Rafał Miłecki Signed-off-by: Rafał Miłecki --- target/linux/brcm47xx/image/Makefile | 39 1 file changed, 39 insertions(+) diff --git a/target/linux/brcm47xx/image/Makefile b/target/linux/brcm47xx/image/Makefile index 597b031..5040818 100644 --- a/ta

Re: [LEDE-DEV] Concerning the switch to dwc2 on Danube

2016-12-29 Thread Mathias Kresin
28.12.2016 23:22, Hauke Mehrtens: Hi, I reverted the commit which changes the default USB2 driver in my staging tree, can you please try if the images build from my staging tree works: https://git.lede-project.org/?p=lede/hauke/staging.git;a=summary We want to do the release soon so it would be

Re: [LEDE-DEV] [PATCH 1/2] lantiq: specify console using stdout-path instead of cmdline argument

2016-12-29 Thread Hauke Mehrtens
Hi, It looks like the kernel prefers the console parameter given in the boot command line over the stdout-path parameter. On some boards the boot loader provides this parameter to the kernel and then the serial does not work. At least the VR200v, ARV4518pw and ARV7518pw are affected: https://bugs.

Re: [LEDE-DEV] Release planning

2016-12-29 Thread Yousong Zhou
On 24 December 2016 at 22:40, Daniel Golle wrote: > Hi! > > On Wed, Dec 21, 2016 at 08:13:00PM +0100, Jo-Philipp Wich wrote: >> ... >> # Open questions >> >> - Are there any outstanding changes? >> >> Is there important changes we should wait for before branching the >> release? Is there pendi

Re: [LEDE-DEV] [RFT 0/2] ar71xx: fix making firmwares for linksys WRT400N

2016-12-29 Thread Frank Horowitz
Hi Yousong (and list), Just confirming that the latest built V3 sysupgrade image on your Google Drive page installs and works well. I’ll update with any issues I find as I start to use this router again. Cheers, Frank > Hi, Frank, > > I just sent a v3 patch to the list and uploaded bu

Re: [LEDE-DEV] Release planning

2016-12-29 Thread Felix Fietkau
On 2016-12-29 15:21, Yousong Zhou wrote: > I am working on converting sunxi target to using new image generation > code. The initial goal is just that preserving what the current code > does, i.e. making fix-sized sdcard images. > > I'd like to add another type of image where we have read-only sq

Re: [LEDE-DEV] Adding new targets/subtargets

2016-12-29 Thread Philip Prindeville
On Dec 28, 2016, at 7:57 PM, Yousong Zhou wrote: > > On 29 December 2016 at 10:04, Philip Prindeville > wrote: >> I wanted to add a new target for x86, or possibly several. >> >> I have an immediate need for an optimized build to run on Xeon-based 1U >> servers for a project that I’m working o

[LEDE-DEV] Adding host Java support to the buildbots

2016-12-29 Thread Dana Myers
In reference to https://github.com/openwrt/packages/pull/3686 We've added OpenWRT support for: * JamVM 2.0: Java JVM * GNU Classpath 2.0: Java class library * RXTX Java serial communications library However, the build bots won't build these packages yet because a host Java compiler is required

Re: [LEDE-DEV] [PATCH 0/3] hostapd: support SHA256-based algorithms

2016-12-29 Thread Sebastian Kemper
On Wed, Dec 28, 2016 at 02:16:00PM +0100, Stijn Tintel wrote: > This series adds support for SHA256-based key management algorithms in > hostapd and wpa_supplicant. The algorithms are part of the 802.11w standard, > so they are only enabled when 802.11w is enabled. Due to this, they are > not avail

[LEDE-DEV] [PATCH 1/2] mbedtls: enable secp384r1 elliptic curve support

2016-12-29 Thread Magnus Kroken
Secp384r1 is the default curve for OpenVPN 2.4+. Enable this to make OpenVPN-mbedtls clients able to perform ECDHE key exchange with remote OpenVPN 2.4-openssl servers that use the default OpenVPN curve. Signed-off-by: Magnus Kroken --- package/libs/mbedtls/patches/200-config.patch | 3 +-- 1 fi

[LEDE-DEV] [PATCH 2/2] mbedtls: enable DHE-RSA key exchange

2016-12-29 Thread Magnus Kroken
Later OpenVPN 2.3-openssl versions only enable TLS cipher suites with perfect forward secrecy, i.e. DHE and ECDHE cipher suites. ECDHE key exchange is not supported by OpenVPN 2.3-openssl, enable DHE key exchange to allow LEDE OpenVPN 2.4-mbedtls clients to connect to such servers. Signed-off-by:

[LEDE-DEV] [PATCH] openvpn: update to 2.4.0

2016-12-29 Thread Magnus Kroken
Signed-off-by: Magnus Kroken --- Runtime tested on x86, rc2 and 2.4.0 are minimal. package/network/services/openvpn/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/network/services/openvpn/Makefile b/package/network/services/openvpn/Makefile index 182093

Re: [LEDE-DEV] [PATCH RFC 1/2] openvpn: update to 2.4_rc2

2016-12-29 Thread Magnus Kroken
Hi Lucian, Martin On 25.12.2016 14.23, Martin Blumenstingl wrote: I guess this worked on LEDE with PolarSSL with OpenVPN 2.3: #define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED while //#define MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED can you tell if I ran into some corner case (the affected server was

[LEDE-DEV] [PATCH procd] ujail: add basic /dev files

2016-12-29 Thread Etienne CHAMPETIER
This adds /dev/full /dev/null /dev/urandom /dev/zero in every jail (not having them only allow subtle bugs) Signed-off-by: Etienne CHAMPETIER --- jail/jail.c | 5 + 1 file changed, 5 insertions(+) diff --git a/jail/jail.c b/jail/jail.c index 834d677..8e7cddc 100644 --- a/jail/jail.c +++ b/j

Re: [LEDE-DEV] Adding new targets/subtargets

2016-12-29 Thread Yousong Zhou
On 30 December 2016 at 03:29, Philip Prindeville wrote: > On Dec 28, 2016, at 7:57 PM, Yousong Zhou wrote: >> >> On 29 December 2016 at 10:04, Philip Prindeville >> wrote: >>> I wanted to add a new target for x86, or possibly several. >>> >>> I have an immediate need for an optimized build to ru

Re: [LEDE-DEV] [OpenWrt-Devel] Adding host Java support to the buildbots

2016-12-29 Thread Ralph Sennhauser
Hi Dana On Thu, 29 Dec 2016 12:30:37 -0800 Dana Myers wrote: > In reference to https://github.com/openwrt/packages/pull/3686 > > We've added OpenWRT support for: > > * JamVM 2.0: Java JVM > * GNU Classpath 2.0: Java class library There is no classpath 2.0 > * RXTX Java serial communications