Re: [LEDE-DEV] [PATCH] busybox: prevent globbing, splitting

2016-10-14 Thread Oswald Buddenhagen
On Fri, Oct 14, 2016 at 07:54:53PM +0200, Jan-Tarek Butt wrote: > - ntpservers=$(ubus call network.interface dump | jsonfilter -e > "@.interface[$filter]['data']['ntpserver']") > + ntpservers="$(ubus call network.interface dump | jsonfilter -e > "@.interface[$filter]['data']['ntpserver']"

[LEDE-DEV] Out of tree builds

2016-10-14 Thread David Woodhouse
Is there a simple trick I'm missing, to build for multiple targets from the same build tree?  I'm mostly just manually copying my .config file out of the way and swapping it for a different one each time — but there's got to be a better way, surely? mv .config .config.wndr3800 mv .config.tdw8970

[LEDE-DEV] Added wiki links to the LEDE site, can someone merge the PR?

2016-10-14 Thread Alberto Bursi
https://github.com/lede-project/web/pull/42 It's about adding wiki links on the main site, to let people know that there is also a wiki. I'm sending a mail here because my last commit to the site was merged like a few month later, I'd rather get this PR merged sooner than that. -Alberto __

Re: [LEDE-DEV] [RFC 0/1] x86: Add support for the PC Engines APU2 Board

2016-10-14 Thread Ben Greear
On 10/14/2016 10:19 AM, Chris Blake wrote: This is an RFC to port the PC Engines APU2 board to LEDE. Currently this is based on my unofficial repo at https://github.com/riptidewave93/LEDE-APU2 and after a discussion on the lede-dev IRC on the best plan of action, which was to move this device

Re: [LEDE-DEV] [RFC 0/1] x86: Add support for the PC Engines APU2 Board

2016-10-14 Thread Luiz Angelo Daros de Luca
Chris, You might be interested in https://lists.openwrt.org/pipermail/openwrt-devel/2015-February/031200.html, which was never commited. Regards, --- Luiz Angelo Daros de Luca, Me. luizl...@gmail.com ___ Lede-dev mailing list Lede-dev

[LEDE-DEV] [PATCH] busybox: prevent globbing, word splitting

2016-10-14 Thread Jan-Tarek Butt
Double quote to prevent globbing and word splitting. Signed-off-by: Jan-Tarek Butt --- package/utils/busybox/files/cron | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/utils/busybox/files/cron b/package/utils/busybox/files/cron index 19ecc43..a201374 100755 --- a/

Re: [LEDE-DEV] Vagrant file for Lede development

2016-10-14 Thread Alberto Bursi
On 10/09/2016 07:05 PM, Simon H wrote: > I'm looking to contribute in some small way once again. > Not being a regular linux user, creating a build environment for > Lede/OpenWRT has always been a time-consuming process for me. > > However, on other projects, I've begun to use Vagrant (specifical

[LEDE-DEV] [PATCH] busybox: prevent globbing, splitting

2016-10-14 Thread Jan-Tarek Butt
Double quote to prevent globbing and word splitting. Signed-off-by: Jan-Tarek Butt --- package/utils/busybox/files/sysntpd | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package/utils/busybox/files/sysntpd b/package/utils/busybox/files/sysntpd ind

[LEDE-DEV] [RFC 1/1] x86: Add support for the PC Engines APU2 Board

2016-10-14 Thread Chris Blake
The following patch adds support for the PC Engines APU2 Embedded Board as a profile under the X86_64 target. More information on this board can be found at www.pcengines.ch/apu2c4.htm Note that this patch is a part of an RFC, and should not be merged yet. Signed-off-by: Chris Blake --- target/

[LEDE-DEV] [RFC 0/1] x86: Add support for the PC Engines APU2 Board

2016-10-14 Thread Chris Blake
This is an RFC to port the PC Engines APU2 board to LEDE. Currently this is based on my unofficial repo at https://github.com/riptidewave93/LEDE-APU2 and after a discussion on the lede-dev IRC on the best plan of action, which was to move this device to a profile under x86_64. Things Working:

Re: [LEDE-DEV] [PATCH] ct-bugcheck: fix globbing, word splitting and change formatting

2016-10-14 Thread Ben Greear
On 10/14/2016 08:58 AM, Jan-Tarek Butt wrote: Double quote to prevent globbing and word splitting. Use short syntax to enhance reading quallity. I disagree that the short syntax helps reading quality, but if others like it then I guess that change is fine with me. Thanks, Ben Signed-off-by:

[LEDE-DEV] [PATCH] ct-bugcheck: fix globbing, word splitting and change formatting

2016-10-14 Thread Jan-Tarek Butt
Double quote to prevent globbing and word splitting. Use short syntax to enhance reading quallity. Signed-off-by: Jan-Tarek Butt --- package/utils/ct-bugcheck/src/bugchecker.sh | 14 +++--- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/package/utils/ct-bugcheck/src/bugch

[LEDE-DEV] [PATCH] imx6: inittab: Use login.sh wrapper so we can configure console password

2016-10-14 Thread Petr Štetiar
In dc92917 there was introduced login.sh wrapper which allows configuration of console passwords via UCI system ttylogin config option. Signed-off-by: Petr Štetiar --- target/linux/imx6/base-files/etc/inittab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/im