Re: [OpenWrt-Devel] [PATCH] comgt: Allow using non-TTY devices

2015-01-16 Thread John Crispin
On 13/01/2015 18:00, Matti Laakso wrote: > Some Huawei mobile broadband sticks utilizing the NCM protocol expose > the control channel as a cdc-wdm device node instead of a virtual TTY. > This device node does not support the terminal ioctls. This patch > adds a check whether the provided device

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for MERCURY MAC1200R

2015-01-16 Thread John Crispin
On 11/01/2015 12:48, open...@rogerpueyo.com wrote: > From: Roger Pueyo Centelles > description and SoB are missing > --- > target/linux/ar71xx/base-files/etc/diag.sh | 3 + > .../ar71xx/base-files/etc/uci-defaults/01_leds | 5 + > .../ar71xx/base-files/etc/uci-defaults/02_

Re: [OpenWrt-Devel] [PATCH] ramips: add support for Intenso Memory 2 Move USB 3.0

2015-01-16 Thread John Crispin
On 15/01/2015 22:47, Christian Lamparter wrote: > This adds support for a rt5350-based "portable nas" solution > from Intenso. The board comes with 32M RAM and 8M Flash, the > built-in HDD is connected/accessible via a usb3.0<->sata > bridge VLI VL701. > [] > diff --git a/target/linux/rami

Re: [OpenWrt-Devel] [PATCH] ar71xx: add support for TP-LINK TL-WA701ND v2

2015-01-16 Thread John Crispin
On 16/01/2015 13:04, Luigi Tarenga wrote: > Signed-off-by: Luigi Tarenga > --- > I send the patch again, maybe it was not formatted correctly. > please let me know if there is any problem in how i send it. > > regards > Luigi > --- > package/libs/openssl/Makefile | 6 +

Re: [OpenWrt-Devel] Archer C7, leds and led trigger for ath10k

2015-01-16 Thread John Crispin
On 16/01/2015 19:57, Gianluca Anzolin wrote: > Hi, > > I noticed that on Archer C7 the 2.4Ghz and 5Ghz leds are swapped: > this is the relevant section of /etc/config/system > > config led 'led_wlan2g' option name 'WLAN2G' option sysfs > 'tp-link:blue:wlan2g' option trigger 'phy0tpt' > > confi

Re: [OpenWrt-Devel] [PATCH] build: allow openwrt.git packages to be replaced by feeds

2015-01-16 Thread John Crispin
On 16/01/2015 22:45, Mathieu Olivari wrote: > Currently, replacing a package available in openwrt.git requires > modifications in openwrt.git, or requires duplicating the package > in a feed but with a different name, which causes all kind of > problems related to dependencies (all packages sele

Re: [OpenWrt-Devel] [PATCH] procd: delay inittab workers until the tty exists.

2015-01-16 Thread John Crispin
On 16/01/2015 21:19, Owen Kirby wrote: > Okay, I'll rewrite it. > > However: Is it polling for the existence of the tty device that is > unacceptable (would a solution using uloop_timeout_set() be okay?), > or would I need to process hotplug events from the kernel? > use hotplug events please

Re: [OpenWrt-Devel] ddns-scripts 2.0.1-1 breaks freedns.afraid.org?

2015-01-16 Thread Christian Schoenebeck
Implemented in 2.1.0-5 including your other suggested changes. Christian Am 15.01.2015 um 06:07 schrieb Catalin Patulea: > I've opened a pull request for this (and other misc fixes): > https://github.com/openwrt/packages/pull/779 > > On Tue, Jan 13, 2015 at 9:14 AM, Christian Schoenebeck > wrote

Re: [OpenWrt-Devel] ddns-scripts "sleep 10" before updating?

2015-01-16 Thread Christian Schoenebeck
Am 16.01.2015 um 17:50 schrieb Catalin Patulea: > On Fri, Jan 16, 2015 at 4:36 AM, Christian Schoenebeck > wrote: >> Did you really ever run into problems because of 10 seconds delay after an >> outage of thousands of seconds ? > No, but I don't want to wait until I have a problem. ddns-scripts >

[OpenWrt-Devel] [PATCH] build: allow openwrt.git packages to be replaced by feeds

2015-01-16 Thread Mathieu Olivari
Currently, replacing a package available in openwrt.git requires modifications in openwrt.git, or requires duplicating the package in a feed but with a different name, which causes all kind of problems related to dependencies (all packages selecting it would have to be modified accordingly to selec

Re: [OpenWrt-Devel] [PATCH] procd: delay inittab workers until the tty exists.

2015-01-16 Thread Owen Kirby
Okay, I'll rewrite it. However: Is it polling for the existence of the tty device that is unacceptable (would a solution using uloop_timeout_set() be okay?), or would I need to process hotplug events from the kernel? Thanks, Owen On 15-01-15 10:31 PM, John Crispin wrote: nack, using magic d

[OpenWrt-Devel] [PATCH uqmi] Add command to specify preferred PLMN

2015-01-16 Thread Sławomir Demeszko
Signed-off-by: Sławomir Demeszko --- commands-nas.c | 60 ++ commands-nas.h | 6 ++ 2 files changed, 66 insertions(+) diff --git a/commands-nas.c b/commands-nas.c index 831e3f4..33477dd 100644 --- a/commands-nas.c +++ b/commands-nas.c

[OpenWrt-Devel] [PATCH] ar71xx: fix board detection for TP-LINK TL-WA860RE

2015-01-16 Thread Matthias Schiffer
Signed-off-by: Matthias Schiffer --- target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index a12101a..78a0cef 100755 --- a/target/linux/ar71xx/base-files/

Re: [OpenWrt-Devel] [PATCH] add pkgconfig information for popt library

2015-01-16 Thread Mike Brady
I meant to mention that, as well as being A Good Thing in general, this would make is possible for me to bring shairport-sync (https://github.com/mikebrady/shairport-sync) over to OpenWrt without having to patch its configuration file. > Modify makefile to record pkgconfig information for the p

Re: [OpenWrt-Devel] ddns-scripts "sleep 10" before updating?

2015-01-16 Thread Catalin Patulea
On Fri, Jan 16, 2015 at 4:36 AM, Christian Schoenebeck wrote: > Did you really ever run into problems because of 10 seconds delay after an > outage of thousands of seconds ? No, but I don't want to wait until I have a problem. ddns-scripts should do the best it can to update the record quickly.

Re: [OpenWrt-Devel] [PATCH 8/9] mvebu: Add the Armada 385 Reference Design support

2015-01-16 Thread Imre Kaloz
On Fri, 16 Jan 2015 16:52:05 +0100, Thomas Petazzoni wrote: Dear Imre Kaloz, On Fri, 16 Jan 2015 16:38:47 +0100, Imre Kaloz wrote: > Separated from what? The rest of the serie? This patch is pretty > standalone by itself. Sorry, I wanted to say that one patch should add the partitions and

Re: [OpenWrt-Devel] [PATCH 8/9] mvebu: Add the Armada 385 Reference Design support

2015-01-16 Thread Maxime Ripard
On Fri, Jan 16, 2015 at 04:38:47PM +0100, Imre Kaloz wrote: > On Fri, 16 Jan 2015 16:23:43 +0100, Maxime Ripard > wrote: > > >Hi Imre, > > > >On Wed, Jan 14, 2015 at 12:50:55PM +0100, Imre Kaloz wrote: > >>On Tue, 13 Jan 2015 16:56:45 +0100, Maxime Ripard > >> wrote: > >> > >>>++

Re: [OpenWrt-Devel] [PATCH 8/9] mvebu: Add the Armada 385 Reference Design support

2015-01-16 Thread Imre Kaloz
On Fri, 16 Jan 2015 16:23:43 +0100, Maxime Ripard wrote: Hi Imre, On Wed, Jan 14, 2015 at 12:50:55PM +0100, Imre Kaloz wrote: On Tue, 13 Jan 2015 16:56:45 +0100, Maxime Ripard wrote: >++ partition@2 { >++ label = "d

Re: [OpenWrt-Devel] [PATCH 9/9] mvebu: Add Armada 385 DB AP support

2015-01-16 Thread Maxime Ripard
On Wed, Jan 14, 2015 at 12:52:56PM +0100, Imre Kaloz wrote: > On Tue, 13 Jan 2015 16:56:46 +0100, Maxime Ripard > wrote: > > >+diff --git a/arch/arm/boot/dts/armada-385-db-ap.dts > >b/arch/arm/boot/dts/armada-385-db-ap.dts > >+index 02db04867d8f..2a58443e2504 100644 > >+--- a/arch/arm/boot/dts/ar

Re: [OpenWrt-Devel] [PATCH 4/9] mvebu: Add sub-profiles

2015-01-16 Thread Maxime Ripard
Hi, On Wed, Jan 14, 2015 at 01:03:49PM +0100, Imre Kaloz wrote: > Hi Maxime, > > On Tue, 13 Jan 2015 16:56:41 +0100, Maxime Ripard > wrote: > > >+$(eval $(call MultiProfile,Generic,$(PROFILES_LIST))) > >+$(eval $(call MultiProfile,Evalboards,$(PROFILES_LIST))) > > Profile names should be sourc

Re: [OpenWrt-Devel] [PATCH 8/9] mvebu: Add the Armada 385 Reference Design support

2015-01-16 Thread Maxime Ripard
Hi Imre, On Wed, Jan 14, 2015 at 12:50:55PM +0100, Imre Kaloz wrote: > On Tue, 13 Jan 2015 16:56:45 +0100, Maxime Ripard > wrote: > > >++ partition@2 { > >++ label = "data"; > >++

[OpenWrt-Devel] [PATCH] ar71xx: add support for TP-LINK TL-WA701ND v2

2015-01-16 Thread Luigi Tarenga
Signed-off-by: Luigi Tarenga --- I send the patch again, maybe it was not formatted correctly. please let me know if there is any problem in how i send it. regards Luigi --- package/libs/openssl/Makefile | 6 +++--- package/libs/openssl/patches/150-no_engines.patch |

Re: [OpenWrt-Devel] Is Linksys/Belkin lying (again) about being open source (WRT1200AC router) ?

2015-01-16 Thread Bjørn Mork
Jacek Kikiewicz writes: > I don't get this discussion, few days Imre Kaloz admitted he will work > on WRT1200AC so this means that Belkin reached out to him... Yes, that's what I subtly tried to point out with the list archive references :-) Bjørn __

Re: [OpenWrt-Devel] Is Linksys/Belkin lying (again) about being open source (WRT1200AC router) ?

2015-01-16 Thread Jacek Kikiewicz
Hi, I don't get this discussion, few days Imre Kaloz admitted he will work on WRT1200AC so this means that Belkin reached out to him... Regards, Jacek On 16.01.2015 12:45, Bjørn Mork wrote: > Fernando Frediani writes: > >> I'm not entirely sure of the status of WRT1200AC, but if there is >> n

Re: [OpenWrt-Devel] Is Linksys/Belkin lying (again) about being open source (WRT1200AC router) ?

2015-01-16 Thread Bjørn Mork
Fernando Frediani writes: > I'm not entirely sure of the status of WRT1200AC, but if there is > nothing here in OpenWRT and nothing else much can be found on the web > they are once again lying. They are publishing intentions as if it was > something that was already done and consolidated, ready

Re: [OpenWrt-Devel] question about ath9k endianness check in eeprom_9287.c

2015-01-16 Thread Felix Fietkau
On 2015-01-16 10:12, Ben Mulvihill wrote: > Any thoughts about this? Actually I think there are three options: Hey Ben, sorry for not getting back to you earlier, I was busy with a lot of stuff. > - a new patch in package/kernel/mac80211/patches reinstating >a couple of lines from the old 5

[OpenWrt-Devel] [PATCH V3 uclient] support for connection timeout

2015-01-16 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki --- V2: Add uclient_set_timeout Stop timer after receiving data Start timer after fetching data by uclient user V3: Fix missing braces in __uclient_notify_read, thanks John! --- uclient-fetch.c | 4 uclient-http.c | 13 +++-- uclient.c | 3

Re: [OpenWrt-Devel] [PATCH V2 uclient] support for connection timeout

2015-01-16 Thread John Szakmeister
On Fri, Jan 16, 2015 at 4:42 AM, Rafał Miłecki wrote: [snip] > - if (uh->state == HTTP_STATE_RECV_DATA && uc->cb->data_read) > - uc->cb->data_read(uc); > + if (uh->state == HTTP_STATE_RECV_DATA) > + /* Now it's uclient user turn to read some data */ > +

[OpenWrt-Devel] [PATCH V2 uclient] support for connection timeout

2015-01-16 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki --- V2: Add uclient_set_timeout Stop timer after receiving data Start timer after fetching data by uclient user --- uclient-fetch.c | 4 uclient-http.c | 12 ++-- uclient.c | 36 +++- uclient.h | 20 ++

Re: [OpenWrt-Devel] ddns-scripts "sleep 10" before updating?

2015-01-16 Thread Christian Schoenebeck
Am 16.01.2015 um 03:07 schrieb Catalin Patulea: > On Thu, Jan 15, 2015 at 3:28 PM, Christian Schoenebeck > wrote: >> I did a lot of testing with a user using satellite Internet connection. >> He quickly gets his IP from the modem but he needs to use a global dns >> server to verify his registered

Re: [OpenWrt-Devel] question about ath9k endianness check in eeprom_9287.c

2015-01-16 Thread Ben Mulvihill
On Sun, 2014-12-28 at 01:02 +0100, Ben Mulvihill wrote: > Hello Felix, > > I am working on the BT Home Hub 3A, which has ath9k wireless. > More or less everything is working now, apart from > reading the calibration data. To get that working too, > endianness checking must be enabled. That requir