Re: [OpenWrt-Devel] [PATCH 1/1] build: fix select uClibc

2019-10-19 Thread Hauke Mehrtens
On 10/15/19 12:52 PM, daxiong wrote: > Signed-off-by: daxiong > --- > toolchain/Config.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/toolchain/Config.in b/toolchain/Config.in > index 95087b7..0d288aa 100644 > --- a/toolchain/Config.in > +++ b/toolchain/Config.in > @

Re: [OpenWrt-Devel] [PATCH] kmodloader: added -v and -a args to modeprobe

2019-10-19 Thread Hauke Mehrtens
On 10/13/19 6:03 AM, Gerard Ryan wrote: > This is primarily to satiate the usage by docker/libnetwork. > Behaviour mirrors /tools/modprobe.c from https://git.kernel.org > > Signed-off-by: Gerard Ryan > --- > Compile tested: x86_x64, Hyper-V, OpenWrt Master > Run tested: x86_x64, Hyper-V, OpenWrt

[OpenWrt-Devel] ath10k QCA9880 firmware TX hang

2019-10-19 Thread David Bauer
Hello, while preparing the switch to 19.07 for the mesh-framework Gluon, we found an issue with ath10k, which results in an overflowing TX queue in the kernel. The QCA9880 does not send TX_DONE or TX_FAILED messages back to the driver, which results in the SKBs never being freed. Both HTT_COOKI

Re: [OpenWrt-Devel] [Battlemesh] ImageBuilder frontend projects, or how to generate custom OpenWrt images

2019-10-19 Thread Baptiste Jonglez
Hi, On 30-09-19, Philipp Borgers wrote: > you should take look at the Freifunk Berlin firmware and the Gluon project: > > https://github.com/freifunk-berlin/firmware > > https://gluon.readthedocs.io/en/v2019.1.x/ > > The Freifunk Berlin firmware uses uci-defaults scripts quite a lot for setting

[OpenWrt-Devel] [PATCH] strace: update to version 5.3

2019-10-19 Thread Josef Schlehofer
Makefile changes: - moves PKG_MAINTAINER above PKG_LICENSE - Change PKG_LICENSE to LGPL-2.1-or-later and correct PKG_LICENSE_FILES - changes URL to a more appropriate one, which uses HTTPS - adds 2 spaces as an indentation in description Compile and run tested on Turris Omnia, mvebu Signed-off-by

Re: [OpenWrt-Devel] [Battlemesh] ImageBuilder frontend projects, or how to generate custom OpenWrt images

2019-10-19 Thread Sven Roederer
Am Samstag, 19. Oktober 2019, 16:45:40 CEST schrieb Baptiste Jonglez: > Thanks Philipp, I didn't know Freifunk Berlin had its own firmware > generation utility! Looking at it, it seems a bit heavyweight (it builds > OpenWrt from scratch instead of using the ImageBuilder) but it's probably > necess

[OpenWrt-Devel] [PATCH] kernel: Fix arm64 include files

2019-10-19 Thread Hauke Mehrtens
This patch fixes the build of gdb and strace on arm64 targets with kernel 4.19. Signed-off-by: Hauke Mehrtens --- ...angle-uapi-asm-ptrace.h-from-uapi-as.patch | 280 ++ 1 file changed, 280 insertions(+) create mode 100644 target/linux/generic/backport-4.19/210-arm64-sve-Disent

[OpenWrt-Devel] [OpenWrt-Devel V2 1/2] kmodloader: added -v arg to modeprobe

2019-10-19 Thread Gerard Ryan
This is primarily to satiate the usage by docker/libnetwork. Signed-off-by: Gerard Ryan --- Compile tested: x86_x64, Hyper-V, OpenWrt Master Run tested: x86_x64, Hyper-V, OpenWrt Master You can also find this patch on GitHub if you prefer. https://github.com/G-M0N3Y-2503/openwrt-ubox-mirror/tree

[OpenWrt-Devel] [OpenWrt-Devel V2 2/2] kmodloader: added -a arg to modeprobe

2019-10-19 Thread Gerard Ryan
This is primarily to satiate the usage by docker/libnetwork. Behaviour mirrors /tools/modprobe.c from https://git.kernel.org Signed-off-by: Gerard Ryan --- Compile tested: x86_x64, Hyper-V, OpenWrt Master Run tested: x86_x64, Hyper-V, OpenWrt Master You can also find this patch on GitHub if you