[OpenWrt-Devel] [PATCH] uClibc++: Fix two bugs

2019-10-03 Thread Rosen Penev
The first allows usage of several functions in the std namespace, which broke compilation of gddrescue specifically with uClibc-ng and uClibc++. The second allows usage of long long with normal C++11, which is part of the standard. Before, std=gnu++11 needed to be passsed to work around it. As a

Re: [OpenWrt-Devel] [PATCH 19.07] ar71xx: fix sysupgrade to ath79 for wndr3700v2 and wndr3800

2019-10-03 Thread Vincent Wiemann
Hi, On 01.10.19 12:07, Adrian Schmutzler wrote: > Hi, > >> -Original Message- >> From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] On >> Behalf Of Petr Štetiar >> Sent: Dienstag, 1. Oktober 2019 06:50 >> To: m...@adrianschmutzler.de >> Cc:

[OpenWrt-Devel] [PATCH] tools/e2fsprogs: Update to version 1.45.4

2019-10-03 Thread Josef Schlehofer
Fixes CVE-2019-5094 Signed-off-by: Josef Schlehofer --- tools/e2fsprogs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/e2fsprogs/Makefile b/tools/e2fsprogs/Makefile index a4523137ac..c7ccd4478f 100644 --- a/tools/e2fsprogs/Makefile +++

[OpenWrt-Devel] [PATCH] procd sysupgrade: close input side of pipe before reading

2019-10-03 Thread Dustin Lundquist
When /usr/libexec/validate_firmware_image is not present on the system procd will hang indefinitely on the read() since the input side of the pipe is still open. Signed-off-by: Dustin Lundquist --- system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.c b/system.c