Re: [LEDE-DEV] [RFC] brcm47xx: bump kernel to 4.4

2016-11-23 Thread Rafał Miłecki
On 22 November 2016 at 18:36, wrote: >> On 25 October 2016 at 9:41, Rafał Miłecki wrote: >> Anyway I finally debugged this local vs. buildbot difference to the >> CONFIG_KERNEL_KALLSYMS. Images from buildbot have this symbol enabled >> which slightly increases

Re: [LEDE-DEV] replacing files in base system from a package?

2016-11-23 Thread J Mo
Please revert this patch. This obvious breaks legitimate use cases. On 10/04/2016 12:59 AM, Russell Senior wrote: Fwiw, I ran into trouble with things busybox provides by default, but where I've add packages with fuller versions. In my case it is procps-ng from the packages feed. In order

Re: [LEDE-DEV] QCA Dakota support

2016-11-23 Thread Christian Lamparter
Hi Christian, On Wednesday, November 23, 2016 10:13:45 PM CET Christian Mehlis wrote: > your current staging tree works for me, it generates an itb and a trx > file! > I added some files to support the Compex board I own: > https://github.com/mehlis/source/commits/compex-wpj428 > > Feel free to

[LEDE-DEV] [PATCH] libnl-tiny: Remove GENL_ID_GENERATE

2016-11-23 Thread Florian Fainelli
This constant was always defined to 0, and recently got removed in upstream commit a07ea4d9941af5a0c6f0be2a71b51ac9c083c5e5 ("genetlink: no longer support using static family IDs") Fixes libnl-tiny builds with latest upstream kernels. Fixes: d723f2573af3 ("libnl-tiny: remove include/linux

[LEDE-DEV] [PATCH 1/2] build: find_md5: ignore non-existent files or directories

2016-11-23 Thread Yousong Zhou
Targets like malta can have no patches/ directory available and this commit tries quash "no such file or directory" messages from `find` Signed-off-by: Yousong Zhou --- include/depends.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[LEDE-DEV] [PATCH 2/2] target: sunxi: enable builtin crypto-hw module sun4i-ss

2016-11-23 Thread Yousong Zhou
CONFIG_CRYPTO_DEV_SUN4I_SS was previously set to y but did not take effect because of the absence of CONFIG_CRYPTO_HW=y Signed-off-by: Yousong Zhou --- target/linux/sunxi/config-4.4 | 5 + 1 file changed, 5 insertions(+) diff --git a/target/linux/sunxi/config-4.4

Re: [LEDE-DEV] Project proposal: The GNUnet of autonomous Things

2016-11-23 Thread carlo von lynX
On Fri, Nov 18, 2016 at 01:30:37PM +0100, Hauke Mehrtens wrote: > This sounds interesting. Yes, Daniel.. keep up that good work you are doing! > 3. What would be the difference to for example IoTvity, openHAB and > other existing solutions? Haven't seen an answer from Daniel and maybe you find

Re: [LEDE-DEV] Project proposal: The GNUnet of autonomous Things

2016-11-23 Thread Daniel Golle
Hi Hauke, On Fri, Nov 18, 2016 at 01:30:37PM +0100, Hauke Mehrtens wrote: > Hi Daniel, > > This sounds interesting. > > I have some questions regarding phase 1. > > 1. Do you want to have an API to switch for example a smart plug on and > off and an other call to get the temperature from a

[LEDE-DEV] [PATCH 0/6] LEDE as KVM host

2016-11-23 Thread Yousong Zhou
This series tries to make KVM support available for x86 and sunxi target. Together with qemu softmmu emulators provided by pr at [1], now it's possible to run KVM virtual machines on LEDE. This series has been runtested on a x86_64 server machine and cubieboard2 single board pc. Interesting that

[LEDE-DEV] [PATCH 4/6] target: sunxi: enable kvm support

2016-11-23 Thread Yousong Zhou
Unlike x86, kvm for arm has to be built into the kernel. The kernel config was prepared with the following command make kernel_menuconfig CONFIG_TARGET=platform Then enable ARM_LPAE, VIRTUALIZATION, KVM in that order Other config changes are done by the build system. The following text

[LEDE-DEV] [PATCH 2/6] toolchain: gcc: disable ifunc on *-musl by default

2016-11-23 Thread Yousong Zhou
Otherwise the built binaries may fail with Error relocating /usr/bin/qemu-system-x86_64: unsupported relocation type 37 Signed-off-by: Yousong Zhou --- .../5.4.0/280-musl-disable-ifunc-by-default.patch | 38 ++

[LEDE-DEV] [PATCH 6/6] target: sunxi: add kmod-crypto-hw-sunxi as a default pacakge

2016-11-23 Thread Yousong Zhou
It was previously selected as builtin module in kernel config. Signed-off-by: Yousong Zhou --- target/linux/sunxi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/sunxi/Makefile b/target/linux/sunxi/Makefile index cca3a14..b2ffcd8

[LEDE-DEV] [PATCH 3/6] package: add kernel packages for kvm virtualization

2016-11-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- package/kernel/linux/modules/virt.mk | 105 +++ 1 file changed, 105 insertions(+) create mode 100644 package/kernel/linux/modules/virt.mk diff --git a/package/kernel/linux/modules/virt.mk

[LEDE-DEV] [PATCH 1/6] build: scan.mk: remove not used variable SCAN_STAMP

2016-11-23 Thread Yousong Zhou
It was left behind since rewrite of metadata scanning done with commit bdc9419 in July 2007 Signed-off-by: Yousong Zhou --- include/scan.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/scan.mk b/include/scan.mk index 5bb263d..e6bc068

[LEDE-DEV] [PATCH] apm821xx: make it possible to update the dtb partition on the WNDR4700

2016-11-23 Thread Christian Lamparter
Currently, the device-tree partition is marked as read-only. Hence, userspace tools like mtd can't write into the partition. This however will be necessary in case the DTB needs to be updated. This patch also adds the kernel.dtb image, so the compiled DTB is exported as a file and available in

[LEDE-DEV] [PATCH 5/6] package: kernel: add module crypto-hw-sunxi

2016-11-23 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- package/kernel/linux/modules/crypto.mk | 17 + 1 file changed, 17 insertions(+) diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 0a88c3b..a351609 100644 ---

[LEDE-DEV] enabling 3G interface in DLink DWR-512

2016-11-23 Thread Giuseppe Lippolis
Dear All, my preliminary board porting for the dwr-512 has been accepted in the mainstream. The dwr-512 have an embedded pcie 3G modem (see https://wiki.openwrt.org/inbox/d-link/d-link_dwr-512_b ) Currently all the kernel module and package needed to enable the connection are embedded in the

[LEDE-DEV] [PATCH] firmware-utils: Fix build failure in mkmerakifw.c FS#298

2016-11-23 Thread Florian Fainelli
Earlier compilers such as GCC 4 do not like anynomous unions, make it a named union "u", and update the code where relevant. Fixes FS#298 Fixes: a72e1692b8b3 ("firmware-utils: Add support for the Cisco Meraki MX60/MX60W") Signed-off-by: Florian Fainelli ---

[LEDE-DEV] [PATCH] tools: upslug2: Utilize existing bz2 archive

2016-11-23 Thread Florian Fainelli
http://downloads.openwrt.org/sources has a copy of the sources, but under tar.bz2 file format, so utilize this one since the SVN server is down. This showed up with attempting an orion target build. Signed-off-by: Florian Fainelli --- tools/upslug2/Makefile | 2 +- 1 file

Re: [LEDE-DEV] QCA Dakota support

2016-11-23 Thread Christian Mehlis
Hi Christian, your current staging tree works for me, it generates an itb and a trx file! I added some files to support the Compex board I own: https://github.com/mehlis/source/commits/compex-wpj428 Feel free to include some bits in your tree. I had to add dk04-c5 support, perhaps you know

Re: [LEDE-DEV] [PATCH 5/6] package: kernel: add module crypto-hw-sunxi

2016-11-23 Thread Felix Fietkau
On 2016-11-23 17:03, Yousong Zhou wrote: > Signed-off-by: Yousong Zhou > --- > package/kernel/linux/modules/crypto.mk | 17 + > 1 file changed, 17 insertions(+) > > diff --git a/package/kernel/linux/modules/crypto.mk >