[LEDE-DEV] ubiquiti erx-sfp in stable?

2017-07-17 Thread Torbjorn Jansson
Hello a question, any idea when the updates that was made to erx-sfp will make it into a stable release? the reason is that i have had enough of the old packages in the default firmware and i'd like to reflash my erx-sfp to lede. last time i used the snapshot release i had lots of problems

Re: [LEDE-DEV] bug / brcm47xx / mips74l / Netgear WNDR3400 V1

2017-07-17 Thread Rafał Miłecki
On 15 July 2017 at 21:21, Ondřej Pumr wrote: > So I have installed LEDE 17.01.2 > (lede-17.01.2-brcm47xx-mips74k-standard-squashfs.trx) today and I found out, > that this version has the same problem. You installed generic minimal image. It doesn't contain additional packages. There are too man o

Re: [LEDE-DEV] CONFIG_BRIDGE_VLAN_FILTERING

2017-07-17 Thread Gio
On Wednesday, 14 June 2017 20:41:12 CEST Daniel Golle wrote: > I noticed that the Linux built-in bridge now supports filtering by VLAN > tags. This can be much more efficient than using ebtables for the same > task, hence I wonder if there is any reason to keep this disabled or > if there is intere

[LEDE-DEV] [PATCH] kernel: update kernel 4.9 to 4.9.38

2017-07-17 Thread Koen Vandeputte
- Refreshed all patches Compile tested on: cns3xxx, imx6 Run tested on: cns3xxx, imx6 Signed-off-by: Koen Vandeputte --- It seems to be a very light update. No patches were refreshed during the script execution include/kernel-version.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(

[LEDE-DEV] [PATCH] ramips: add support for Loewe WMDR-143N

2017-07-17 Thread Oliver Fleischmann
The WMDR-143N is a small module originally used as a Wifi client in some Loewe smart TV sets. It is sold cheaply at german surplus shops. The module contains a RT3662 SOC. Specifications: - 500 MHz CPU Clock - 1x 10/100Mbps Ethernet (pin header) - 32 MB of RAM - 8 MB of FLASH - 2T3R 2.4/5 GHz (SO

Re: [LEDE-DEV] [PATCH procd 1/2] init: Propagate sysupgrade_exec_upgraded() return value

2017-07-17 Thread Florian Fainelli
On 07/16/2017 10:39 AM, Matthias Schiffer wrote: > On 07/15/2017 09:44 PM, Florian Fainelli wrote: >> chroot() can fail and its return value should be checked against so propagate >> sysupgrade_exec_upgraded() return value to its caller. >> >> Fixes: 63789e51ed91 ("init: add support for sysupgrades

Re: [LEDE-DEV] [PATCH 3/4] x86: Move USB support from subtargets to target config

2017-07-17 Thread Philip Prindeville
Am I the only one who would prefer all of the virtualization support to be selected and default to off? All the fuss we have about not burdening images with unnecessary functionality, yet no one blinks at this... > On Jul 15, 2017, at 10:48 AM, Baptiste Jonglez > wrote: > > From: Baptiste Jo

[LEDE-DEV] brcm2708: bcm2710: do not activate neon-vfpv4 manually

2017-07-17 Thread Hauke Mehrtens
Neon and vfpv4 support are activated by GCC on all ARMv8 CPUs because this is not a mandatory part of the architecture. There is not need to activate is manually. Signed-off-by: Hauke Mehrtens --- target/linux/brcm2708/bcm2710/target.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/target/l

[LEDE-DEV] layerscape: do not add custom CFLAGS.

2017-07-17 Thread Hauke Mehrtens
The selected CFLAGS are already set by default. Signed-off-by: Hauke Mehrtens --- target/linux/layerscape/64b/target.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/layerscape/64b/target.mk b/target/linux/layerscape/64b/target.mk index 22efa66278..98aa8be9c4 100644 --- a/targ

Re: [LEDE-DEV] brcm2708: bcm2710: do not activate neon-vfpv4 manually

2017-07-17 Thread Florian Fainelli
On 07/17/2017 03:01 PM, Hauke Mehrtens wrote: > Neon and vfpv4 support are activated by GCC on all ARMv8 CPUs because > this is not a mandatory part of the architecture. There is not need to > activate is manually. You mean this is "now a mandatory part of the architecture", right? LGTM > > Sig

[LEDE-DEV] [RFC 00/11] sunxi: upgrade to kernel 4.9 and add A64 support

2017-07-17 Thread Hauke Mehrtens
This upgrades the target to kernel 4.9 and also adds support for the Allwinner A64 SoC. This was only tested on the pine64+ and I do not own any older Allwinner SoC. The U-Boot currently depends on dtc and swig being install on the host, I will try to fix this later, but I think we need swig no

[LEDE-DEV] [RFC 01/11] kernel: add some config options

2017-07-17 Thread Hauke Mehrtens
These are needed for the sunxi target. Signed-off-by: Hauke Mehrtens --- target/linux/generic/config-4.9 | 10 ++ 1 file changed, 10 insertions(+) diff --git a/target/linux/generic/config-4.9 b/target/linux/generic/config-4.9 index 24bbbc0587..79d7dcb883 100644 --- a/target/linux/generi

[LEDE-DEV] [RFC 03/11] include: u-boot.mk: use one less reference in HOSTCPPFLAGS

2017-07-17 Thread Hauke Mehrtens
U-Boot 2017.07 complains if HOSTCPPFLAGS is referenced once too often. Signed-off-by: Hauke Mehrtens --- include/u-boot.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/u-boot.mk b/include/u-boot.mk index 4b3ff69d6b..5fe3b42ba9 100644 --- a/include/u-boot.mk +++ b/i

[LEDE-DEV] [RFC 02/11] sunix: add support for kernel 4.9

2017-07-17 Thread Hauke Mehrtens
Most of the patches were backpoprts from the mainline kernel and are integrated upstream now. Signed-off-by: Hauke Mehrtens --- target/linux/sunxi/Makefile| 2 +- target/linux/sunxi/config-4.9 | 570 + .../patches-4.9/115-musb-ig

[LEDE-DEV] [RFC 05/11] sunxi: fix build of rtc package when module not available

2017-07-17 Thread Hauke Mehrtens
If the Kconfig option CONFIG_RTC_DRV_SUNXI is not selected this package should be be build. Signed-off-by: Hauke Mehrtens --- target/linux/sunxi/modules.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/sunxi/modules.mk b/target/linux/sunxi/modules.mk index

[LEDE-DEV] [RFC 06/11] sunxi: split into cortex A8 and A7 subtarget

2017-07-17 Thread Hauke Mehrtens
Now we can activate some compiler optimizations for the cortex A7. Signed-off-by: Hauke Mehrtens --- package/boot/uboot-sunxi/Makefile | 17 + target/linux/sunxi/Makefile | 3 +-- target/linux/sunxi/cortexa7/target.mk | 12 ++ target/linux/sunxi/cortexa8/target

[LEDE-DEV] [RFC 07/11] arm-trusted-firmware-sunxi: add new package

2017-07-17 Thread Hauke Mehrtens
This is needed for the Boot loader of the A64 SoC. Signed-off-by: Hauke Mehrtens --- package/boot/arm-trusted-firmware-sunxi/Makefile | 51 1 file changed, 51 insertions(+) create mode 100644 package/boot/arm-trusted-firmware-sunxi/Makefile diff --git a/package/boot/ar

[LEDE-DEV] [RFC 11/11] sunxi: Add A64 support with cortex53 subtarget

2017-07-17 Thread Hauke Mehrtens
This adds initial support for the A64 Allwinner SoC to LEDE. It will be build in the new cortexa53 subtarget. Currently it only supports the pine64 and the image is able to boot on this SoC. Signed-off-by: Hauke Mehrtens --- target/linux/sunxi/Makefile | 2 +- target/linux/sun

[LEDE-DEV] [RFC 08/11] uboot-sunxi: build A64 SoC and pine64 U-Boot

2017-07-17 Thread Hauke Mehrtens
This creates a U-Boot for the aarch64 SoC A64 on the pine64 board. Signed-off-by: Hauke Mehrtens --- package/boot/uboot-sunxi/Makefile | 18 +- package/boot/uboot-sunxi/uEnv-a64.txt | 5 + 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 package/boot/

Re: [LEDE-DEV] [PATCH 3/4] x86: Move USB support from subtargets to target config

2017-07-17 Thread Baptiste Jonglez
On Mon, Jul 17, 2017 at 03:56:20PM -0600, Philip Prindeville wrote: > Am I the only one who would prefer all of the virtualization support to be > selected and default to off? > > All the fuss we have about not burdening images with unnecessary > functionality, yet no one blinks at this... This

[LEDE-DEV] [RFC 10/11] sunxi: Backport patches from kernel 4.11 for A64

2017-07-17 Thread Hauke Mehrtens
This backports some more patches from kernel 4.11 adding more devices to the device tree of the A64 SoC. Signed-off-by: Hauke Mehrtens --- ...llwinner-add-USB1-related-nodes-of-Allwin.patch | 84 ++ ...llwinner-sort-the-nodes-in-sun50i-a64-pin.patch | 40 +++ ...llwin

Re: [LEDE-DEV] brcm2708: bcm2710: do not activate neon-vfpv4 manually

2017-07-17 Thread Hauke Mehrtens
On 07/18/2017 12:03 AM, Florian Fainelli wrote: > On 07/17/2017 03:01 PM, Hauke Mehrtens wrote: >> Neon and vfpv4 support are activated by GCC on all ARMv8 CPUs because >> this is not a mandatory part of the architecture. There is not need to >> activate is manually. > > You mean this is "now a ma

Re: [LEDE-DEV] [RFC 00/11] sunxi: upgrade to kernel 4.9 and add A64 support

2017-07-17 Thread Zoltan HERPAI
On Tue, 18 Jul 2017, Hauke Mehrtens wrote: This upgrades the target to kernel 4.9 and also adds support for the Allwinner A64 SoC. This was only tested on the pine64+ and I do not own any older Allwinner SoC. The U-Boot currently depends on dtc and swig being install on the host, I will try to

[LEDE-DEV] [PATCH procd v2 2/2] upgraded: Check chroot() return value

2017-07-17 Thread Florian Fainelli
Check the chroot() return value, fixes unused return value warnings/errors: procd-2017-06-22-e5e99c46/upgraded/upgraded.c:78:8: error: ignoring return value of 'chroot', declared with attribute warn_unused_result [-Werror=unused-result] chroot("."); Fixes: 056d8ddda8d5 ("upgraded: link dynamicall

[LEDE-DEV] [PATCH procd v2 1/2] init: Check chroot return value in sysupgrade_exec_upgraded()

2017-07-17 Thread Florian Fainelli
chroot() can fail and its return value should be checked against, in that case do an exit() since this is a fatal condition that we cannot recover from. Fixes: 63789e51ed91 ("init: add support for sysupgrades triggered from preinit") Signed-off-by: Florian Fainelli --- sysupgrade.c | 10

Re: [LEDE-DEV] [RFC 04/11] uboot-sunxi: update to version 2017.07

2017-07-17 Thread Yousong Zhou
On 18 July 2017 at 06:10, Hauke Mehrtens wrote: > This needs swig and a host dtc install on the host now. > Currently we use dtc built from the kernel tree. Can we also make use of the fdtget there as a fallback of swig? Regards, yousong _

Re: [LEDE-DEV] [RFC 06/11] sunxi: split into cortex A8 and A7 subtarget

2017-07-17 Thread Yousong Zhou
On 18 July 2017 at 06:10, Hauke Mehrtens wrote: > Now we can activate some compiler optimizations for the cortex A7. > > Signed-off-by: Hauke Mehrtens > --- > package/boot/uboot-sunxi/Makefile | 17 + > target/linux/sunxi/Makefile | 3 +-- > target/linux/sunxi/cortexa7

Re: [LEDE-DEV] [RFC 03/11] include: u-boot.mk: use one less reference in HOSTCPPFLAGS

2017-07-17 Thread Yousong Zhou
On 18 July 2017 at 06:10, Hauke Mehrtens wrote: > U-Boot 2017.07 complains if HOSTCPPFLAGS is referenced once too often. > > Signed-off-by: Hauke Mehrtens > --- > include/u-boot.mk | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/u-boot.mk b/include/u-boot.mk > in