Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Steven Barth
Since you are replying to the Chaos Calmer announcement, have you actually tried it with the CC RC2 or only BB as you mentioned? If not, then please try if CC makes a difference to you. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Sedat Dilek
On Sat, Jun 13, 2015 at 4:21 PM, Steven Barth wrote: > The OpenWrt developers are proud to announce the first release candidate > of OpenWrt Chaos Calmer. > >___ __ > | |.-.-.-.| | | |..| |_ > | - || _ | -__| || |

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Daniel Golle
On Sat, Jun 13, 2015 at 04:21:55PM +0200, Steven Barth wrote: > ** Highlights since Barrier Breaker ** > ... > * Platform and Driver Support > ... > - New sunxi target for AllWinner A10/A13/A20 family and various boards Please also mention: - New oxnas target for Oxford/PLXTECH NAS782x family

[OpenWrt-Devel] [PATCH] oxnas: change file extension of u-boot+initramfs image

2015-06-14 Thread Daniel Golle
The *u-boot-initramfs* images are not ITB/FIT images but are rather supposed to be loaded to RAM and jumped-into. To avoid confusion, change the file extension from itb to bin. Signed-off-by: Daniel Golle --- target/linux/oxnas/image/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [OpenWrt-Devel] [PATCH] Combine CA-certificates in one file

2015-06-14 Thread edgar . soldin
On 12.06.2015 21:20, micke.p...@telldus.se wrote:> 2015-06-12 09:39 skrev Cristian Morales Vega: > >> On 12 June 2015 at 08:30, wrote: >> >>> Some packages or libraries cannot use split ca cetificates in a folder. >>> This adds a config to combine all certificates into one file. >> >> I have not

[OpenWrt-Devel] Method to load firmware blob for a particular router model

2015-06-14 Thread Alpha Sparc
Hi all, Do you know how to copy a binary blob into /etc/firmware for a particular router integrate in the build process? The target arch is lantiq. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/l

Re: [OpenWrt-Devel] Method to load firmware blob for a particular router model

2015-06-14 Thread Marc Nicholas
Create a directory called “files” in the root of your OpenWRT build environment. Then within that files directory create /etc/firmware/ and copy the firmware binary to this location. That will integrate the file into the build process and subsequent image. -m --  Marc Nicholas CTO, Wimoto Tech

Re: [OpenWrt-Devel] Method to load firmware blob for a particular router model

2015-06-14 Thread Alpha Sparc
I am currently working on fixing the wireless function of half supported router lantiq/GR7000. I have the binary blob for the ralink wireless and confirm that it is not individual calibrated. There is no MTD partition for that blob, it is just a file. I was thinking of integrated the blob and EEPR

[OpenWrt-Devel] fsf compliant kernel in OpenWrt trunk?

2015-06-14 Thread Daniel Petre
Apologies to hijack this thread but is there any way the OpenWrt kernel can be made "fsf" compliant? without any binary blobs, like librewrt? Thanks! On 06/14/2015 02:04 PM, Marc Nicholas wrote: > Create a directory called “files” in the root of your OpenWRT build > environment. Then within that

Re: [OpenWrt-Devel] [PATCH 1/3] openvpn: fix handling comp_lzo and auth_retry as the wrong type.

2015-06-14 Thread Felix Fietkau
On 2015-06-14 06:04, Yousong Zhou wrote: > As reported in #19104. > > Signed-off-by: Yousong Zhou comp-lzo does not seem to fit well in the "bool" category, it takes "yes", "no", or "adaptive". Also, please include the details of the changes that you make in the patch description instead of just

Re: [OpenWrt-Devel] Method to load firmware blob for a particular router model

2015-06-14 Thread Alpha Sparc
So how do I write a firmware blob into /lib/firmware into the build process without the hassle of creating a metapackage? ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] Method to load firmware blob for a particular router model

2015-06-14 Thread Jo-Philipp Wich
Hi, > So how do I write a firmware blob into /lib/firmware into the build > process without the hassle of creating a metapackage? $ mkdir -p files/lib/firmware $ wget -O files/lib/firmware/blah.bin http://example.org/blah.bin $ make Or do you mean how to integrate it into the repository? In that

Re: [OpenWrt-Devel] [PATCH 1/3] openvpn: fix handling comp_lzo and auth_retry as the wrong type.

2015-06-14 Thread Yousong Zhou
On 14 June 2015 at 21:35, Felix Fietkau wrote: > On 2015-06-14 06:04, Yousong Zhou wrote: >> As reported in #19104. >> >> Signed-off-by: Yousong Zhou > comp-lzo does not seem to fit well in the "bool" category, it takes > "yes", "no", or "adaptive". Indeed, looks like the option changed between

[OpenWrt-Devel] [PATCH v2 1/3] openvpn: fix handling option auth_retry.

2015-06-14 Thread Yousong Zhou
As reported in ticket #19104, auth_retry takes a argument with 3 choices: none, nointeract, interact. Signed-off-by: Yousong Zhou --- v2 <- v1drop the move of comp_lzo from params to bools package/network/services/openvpn/files/openvpn.init |4 ++-- 1 file changed, 2 insertions(+),

[OpenWrt-Devel] [PATCH v2 2/3] openvpn: let instances drop to nobody in default config.

2015-06-14 Thread Yousong Zhou
This is for security precautions. As persist_tun and persist_key are already there, this should not cause compatibility issue. Signed-off-by: Yousong Zhou --- package/network/services/openvpn/files/openvpn.config |2 ++ 1 file changed, 2 insertions(+) diff --git a/package/network/services/

[OpenWrt-Devel] [PATCH v2 3/3] openvpn: bump PKG_RELEASE.

2015-06-14 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- package/network/services/openvpn/Makefile |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/openvpn/Makefile b/package/network/services/openvpn/Makefile index 3e9be0d..81d8007 100644 --- a/package/network/services/ope

Re: [OpenWrt-Devel] Ralink MT76228 port to Linux 4.0, set new IP address fail

2015-06-14 Thread Roman Yeryomin
On 12 June 2015 at 19:45, Baptiste Clenet wrote: > Watchdog problem solved thanks to Mingyu Li. > Patch the file ralink_soc_eth.c > > @@ -983,8 +983,11 @@ static int fe_poll(struct napi_struct *napi, int budget) > > if (!tx_again && (rx_done < budget)) { > status = fe_reg_r

[OpenWrt-Devel] [PATCH 1/2] ar71xx: fix ethernet for 4.0

2015-06-14 Thread Roman Yeryomin
Tested on UAP-PRO. Doesn't break 3.18 Signed-off-by: Roman Yeryomin --- .../files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c b/ta

Re: [OpenWrt-Devel] Device tree issues with TL-WDR4900 (mpc85xx) and kernel 4.0.1

2015-06-14 Thread Roman Yeryomin
On 11 June 2015 at 13:25, Roman Yeryomin wrote: > On 7 May 2015 at 15:49, Felix Fietkau wrote: >> On 2015-05-07 08:01, Wojciech Dubowik wrote: >>> Try to boot with kernel locking enabled. I have seen jffs2 deadlocks on >>> readdir. As far as I remember >>> with this patch it went through but I do

Re: [OpenWrt-Devel] [PATCH 3/5] elfutils: import package from packages.git

2015-06-14 Thread Felix Fietkau
On 2015-05-19 03:43, Luiz Angelo Daros de Luca wrote: > I'm curious, as current elfutils packager, how I should play in this import? > > Should this package be removed from package.git (but there is no PR for it)? > > Or will it be periodically synchronized with packages.git? > > Also, as I'm no

Re: [OpenWrt-Devel] [PATCH 2/5] argp-standalone: import package from packages.git

2015-06-14 Thread Felix Fietkau
On 2015-05-19 01:40, Mathieu Olivari wrote: > argp-standalone is required by elfutils, itself required by perf. So > we'll move this package from packages.git and make it part of the core > distribution. > > Signed-off-by: Mathieu Olivari I will apply this package. Please make sure it gets remove

Re: [OpenWrt-Devel] [PATCH 5/5] perf: remove EGLIBC dependency

2015-06-14 Thread Felix Fietkau
On 2015-05-19 01:40, Mathieu Olivari wrote: > EGLIBC dependency was required as libelf was not found. But we now fixed > the root cause, so we can remove it. perf works with uClibc again. > > Signed-off-by: Mathieu Olivari Does not build with musl, please fix. - Felix ___

Re: [OpenWrt-Devel] [PATCH 3/3] openvpn: bump PKG_RELEASE.

2015-06-14 Thread Gert Doering
Hi, On Sun, Jun 14, 2015 at 12:04:48PM +0800, Yousong Zhou wrote: > --- a/package/network/services/openvpn/Makefile > +++ b/package/network/services/openvpn/Makefile > @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk > PKG_NAME:=openvpn > > PKG_VERSION:=2.3.6 > -PKG_RELEASE:=4 > +PKG_RELEASE:=5 W

[OpenWrt-Devel] procd/libubox mangles command-line arguments

2015-06-14 Thread Ted Hess
Somewhere in the processing of "procd_set_param command ..." certain command-line parameters which have colons (":") get treated as argument delimiters. Example: procd_set_param command "foo -a 200:4:16:0 -o hw:0,0" gets the command-line string "-a 200 4 16 0 -o hw:0,0" actually passed to the

[OpenWrt-Devel] Lantiq xrx200 - switch rtl8367rb controlled via builtin mdio (not gpio sck/sda!) in EasyBox 904xDSL

2015-06-14 Thread Arnold Schulz
Hi everyone, for fun I have put efforts to solve some mysteries of the EasyBox 904xDSL. (here thank you Sylwester and Martin B. for feedback). Currently code in driver/net/phy/rtl8366_smi.c is used to control rtl836x chips via bitbanging two gpio lines. This does not work for the 904 xDSL. Disa

[OpenWrt-Devel] reproducible OpenWrt?

2015-06-14 Thread Holger Levsen
Dear OpenWrt developers, to quote https://reproducible.debian.net/openwrt/ ;-) Reproducible builds enable anyone to reproduce bit by bit identical binary packages from a given source, so that anyone can verify that a given binary derived from the source it was said to be derived. There is a lot

[OpenWrt-Devel] [PATCH] Add Support for WeIO Board (Chaos Calmer)

2015-06-14 Thread Drasko DRASKOVIC
Hello, please find below patch that adds support for WeIO board (http://we-io.net) to Chaos Calmer master branch. The board is based on Carambola2 module from 8Devices, and this patch adds a separate profile for WeIO. Best regards, Drasko >From c68e410601b1fe656dad7b08ed41de470d0550c6 Mon Sep

[OpenWrt-Devel] [PATCH] Update dnsmasq to v2.73.

2015-06-14 Thread Toke Høiland-Jørgensen
Signed-off-by: Toke Høiland-Jørgensen --- package/network/services/dnsmasq/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index 7b56a06..19a8df9 100644 --- a/package/network/

[OpenWrt-Devel] [PATCH] Update dnsmasq to v2.73.

2015-06-14 Thread Toke Høiland-Jørgensen
Signed-off-by: Toke Høiland-Jørgensen --- package/network/services/dnsmasq/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index 7b56a06..19a8df9 100644 --- a/package/network/

Re: [OpenWrt-Devel] [PATCH 2/5] argp-standalone: import

2015-06-14 Thread Ted Hess
OK, I will remove it from Github /ted -Original Message- Date: Sun, 14 Jun 2015 19:23:32 +0200 From: Felix Fietkau To: Mathieu Olivari , blo...@openwrt.org On 2015-05-19 01:40, Mathieu Olivari wrote: argp-standalone is required by elfutils, itself required by perf. So we'll move thi

Re: [OpenWrt-Devel] [PATCH] Add Support for WeIO Board (Chaos Calmer)

2015-06-14 Thread Florian Fainelli
On Jun 14, 2015 2:56 PM, "Drasko DRASKOVIC" wrote: > > Hello, > please find below patch that adds support for WeIO board > (http://we-io.net) to Chaos Calmer master branch. > > The board is based on Carambola2 module from 8Devices, and this patch > adds a separate profile for WeIO. Your patch has

Re: [OpenWrt-Devel] procd/libubox mangles command-line arguments

2015-06-14 Thread Yousong Zhou
Hi, Ted, On 15 June 2015 at 04:57, Ted Hess wrote: > Somewhere in the processing of "procd_set_param command ..." certain > command-line parameters which have colons (":") get treated as argument > delimiters. Example: > > procd_set_param command "foo -a 200:4:16:0 -o hw:0,0" > The correct usage

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Luiz Angelo Daros de Luca
Guys, I'm no svn-git mirror expert but is there any chance of having 15.05/openwrt.git branch with full history? Is there a technical limitation/reason for it? The git mirror of svn is a dead-end. I get history only until the branch commit. For example, the first commit in 14.07/openwrt.git is "c

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Gui Iribarren
On 15/06/15 00:15, Luiz Angelo Daros de Luca wrote: > Guys, > > I'm no svn-git mirror expert but is there any chance of having > 15.05/openwrt.git branch with full history? > Is there a technical limitation/reason for it? > > The git mirror of svn is a dead-end. I get history only until the branc

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Luiz Angelo Daros de Luca
Still not pretty, but it works much better. Thanks, --- Luiz Angelo Daros de Luca, Me. luizl...@gmail.com 2015-06-15 0:21 GMT-03:00 Gui Iribarren : > On 15/06/15 00:15, Luiz Angelo Daros de Luca wrote: > > Guys, > > > > I'm no svn-git mirror expert but is there any chance of ha

Re: [OpenWrt-Devel] [PATCH v2] base-files: add /etc/profile.d support

2015-06-14 Thread Hendrik
Am 2015-06-12 07:54, schrieb Hendrik Lüth: OpenWrt should support an optinal /etc/profile.d directory like most other Linux distributions. This allows packages to install their own scripts into /etc/profile.d/. This is the second version, which includes suggestions from the mailing-list. ---

[OpenWrt-Devel] [PATCH] openvpn: bump to 2.3.7.

2015-06-14 Thread Yousong Zhou
Two patches are dropped as they were already applied upstream. Signed-off-by: Yousong Zhou --- package/network/services/openvpn/Makefile |4 +- .../patches/001-backport_cipher_none_fix.patch | 57 .../services/openvpn/patches/110-musl_compat.patch | 13 -

Re: [OpenWrt-Devel] [PATCH] Add Support for WeIO Board (Chaos Calmer)

2015-06-14 Thread John Crispin
On 14/06/2015 23:56, Drasko DRASKOVIC wrote: > +/** > + * WEIO Web Of Things Platform > + * > + * Copyright (C) 2013 Drasko DRASKOVIC and Uros PETREVSKI > + * > + * ## ## ### > + * ## ## ## #### ## ## > + * ## ## ## #