Re: [LEDE-DEV] [PATCH v2] ct-bugcheck: Add tools to poll for and report certain bugs.

2016-08-12 Thread Stijn Tintel
Hi Ben, On 12-08-16 16:19, Ben Greear wrote: > > > On 08/11/2016 11:36 PM, John Crispin wrote: >> Hi, >> >> the V2 does not address the changes i request in V1. these were >> >> * explain why we need this and what it does. right now we only know it >> "reports certain bugs" which is really very va

Re: [LEDE-DEV] restore or compile config backup from openwrt

2016-08-12 Thread Jochen Demmer
There that script in ./scripts/env that let you handle more than one environment and that's why files actually reside in ./env/files rather than in ./files. ./files is only a symlink to ./env/files. Might this not be supported any more? Jochen Am 08.08.16 um 03:32 schrieb Yousong Zhou: On 7

[LEDE-DEV] (short) file length

2016-08-12 Thread Stephan Hennig
Hi, in sector oriented file systems, files slightly larger than sector size (or some other base unit) usually cause unused (waste) space in a file system. LEDE uses compressed file systems. Is there any such thing as a "sector size" in LEDE one may take into account i) when creating files whi

Re: [LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-12 Thread Сергеев Сергей
Hello. I made a new version of the patch according to your notes: http://patchwork.ozlabs.org/patch/658677/ I remove the shell redirection to stderr because we need to show a diagnostic messages (for wget) as well as the certificate accept request and enter the password messages (for ssh) Bot

[LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-12 Thread adron
From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files/files/lib/upgrade/common

Re: [LEDE-DEV] [PATCH 1/2] lantiq/xrx200-net: fix "tx ring full" error by introducing second DMA TX channel

2016-08-12 Thread Mathias Kresin
2016-08-12 10:39 GMT+02:00 Martin Schiller : > With an own DMA TX channel for each network device (eth0 + eth1) there > won't be any "tx ring full" errors any more. > > This patch also move the spinlocks to the channel level instead of locking > the whole xrx200_hw structure. I've send a SMP enabl

Re: [LEDE-DEV] [PATCH] procd: uClibc O_PATH backwards compatibility fixes

2016-08-12 Thread Hans Dedecker
On my target running kernel version 3.4 it preserves what O_PATH implies Hans On Fri, Aug 12, 2016 at 1:49 PM, Karl Palsson wrote: > > Does this actually preserve what O_PATH implies or does it just > make it compile properly when people use the O_PATH attribute? > > Cheers, > Karl P > > > Hans

Re: [LEDE-DEV] [PATCH v2] ct-bugcheck: Add tools to poll for and report certain bugs.

2016-08-12 Thread Ben Greear
On 08/11/2016 11:36 PM, John Crispin wrote: Hi, the V2 does not address the changes i request in V1. these were * explain why we need this and what it does. right now we only know it "reports certain bugs" which is really very vague We need this because ath10k firmware will sometimes crash,

Re: [LEDE-DEV] [PATCH] base-files: sysupgrade. Added the ability to use URL as source

2016-08-12 Thread Сергеев Сергей
Hi. Ansvers inline: From: Sergey Sergeev scp uls(like this scp://adron@192.168.88.6:lede/lede-ar71xx-mikrotik-NAND-512b-squashfs-sysupgrade.bin) is supported too. And you also can specify custom ssh port(...8.88.6:22110:lede...) Signed-off-by: Sergey Sergeev --- package/base-files

Re: [LEDE-DEV] [PATCH] procd: uClibc O_PATH backwards compatibility fixes

2016-08-12 Thread Karl Palsson
Does this actually preserve what O_PATH implies or does it just make it compile properly when people use the O_PATH attribute? Cheers, Karl P Hans Dedecker wrote: > Signed-off-by: Hans Dedecker > --- > inittab.c | 4 > utils/utils.c | 4 > 2 files changed, 8 insertions(+) > >

[LEDE-DEV] [PATCH 2/2] lantiq/xrx200-net: add interrupt for second DMA TX channel to vr9.dtsi

2016-08-12 Thread Martin Schiller
Signed-off-by: Martin Schiller --- target/linux/lantiq/dts/vr9.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/dts/vr9.dtsi b/target/linux/lantiq/dts/vr9.dtsi index 15d73a5..a1c05d0 100644 --- a/target/linux/lantiq/dts/vr9.dtsi +++ b/target/linux/lant

[LEDE-DEV] [PATCH 1/2] lantiq/xrx200-net: fix "tx ring full" error by introducing second DMA TX channel

2016-08-12 Thread Martin Schiller
With an own DMA TX channel for each network device (eth0 + eth1) there won't be any "tx ring full" errors any more. This patch also move the spinlocks to the channel level instead of locking the whole xrx200_hw structure. Signed-off-by: Martin Schiller --- .../0025-NET-MIPS-lantiq-adds-xrx200-n

[LEDE-DEV] [PATCH] procd: uClibc O_PATH backwards compatibility fixes

2016-08-12 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- inittab.c | 4 utils/utils.c | 4 2 files changed, 8 insertions(+) diff --git a/inittab.c b/inittab.c index 6dde11a..ae2c431 100644 --- a/inittab.c +++ b/inittab.c @@ -31,6 +31,10 @@ #include "procd.h" #include "rcS.h" +#ifndef O_PATH +#define O