Re: [OpenWrt-Devel] [PATCH] wireguard: bump to 0.0.20180802

2018-08-03 Thread Yousong Zhou
On Sat, 4 Aug 2018 at 04:13, Jason A. Donenfeld wrote: > > Signed-off-by: Jason A. Donenfeld > --- > package/network/services/wireguard/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/package/network/services/wireguard/Makefile > b/package/network/services/

[OpenWrt-Devel] [PATCH 1/1] uclient: update to latest git HEAD

2018-08-03 Thread Tobias Schramm
f2573da uclient-fetch: use package name pattern in message for missing SSL library 9fd8070 uclient-fetch: Check for nullpointer returned by uclient_get_url_filename f41ff60 uclient-http: basic auth: Handle memory allocation failure a73b23b uclient-http: auth digest: Handle multiple possible memor

[OpenWrt-Devel] [PATCH 0/1] uclient: update uclient to latest git HEAD

2018-08-03 Thread Tobias Schramm
Hey, I'd like to update uclient in LEDE 17.01 to the latest git HEAD (ae1c656ff041c6f1ccb37b070fa261e0d71f2b12) since there have been quite a few bugfixes regarding error handling and memory management and most importantly a bugfix that prevents libuclient from erroneously closing STDIN. I've tak

[OpenWrt-Devel] [PATCH] kernel: modules: fix kmod-regmap redux

2018-08-03 Thread Christian Lamparter
Jonas Gorski commented on the previous patch: |This is actually the wrong fix and papers over an issue in one of our |local patches. | |We intentionally allow regmap to be built as a module, see | |/target/linux/generic/hack-4.14/259-regmap_dynamic.patch |[...] |[The regulator code] optionally supp

[OpenWrt-Devel] Merged: uclient-http: Close ustream file handle only if allocated

2018-08-03 Thread Jo-Philipp Wich
Merged into project/uclient.git, branch master at http://git.openwrt.org/?p=project/uclient.git. Thank you! ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH 1/1] uclient-http: Close ustream file handle only if allocated

2018-08-03 Thread Tobias Schramm
Since the connection setup in uclient_do_connect can fail before ustream_init_fd is called we must check the fd was actually allocated before closing it, else we would close STDIN. Signed-off-by: Tobias Schramm --- uclient-http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --gi

[OpenWrt-Devel] [PATCH 0/1] uclient-http: Close ustream file handle only if allocated

2018-08-03 Thread Tobias Schramm
Hi, this patch fixes a bug in uclient that caused it to close STDIN if the connection setup failed very early on. Together with a small oversight in busybox this lead to quite an interesting bug in Freifunk Gluon: https://github.com/freifunk-gluon/gluon/issues/1496 Cheers, Tobias Tobias Schr

[OpenWrt-Devel] [PATCH] wireguard: bump to 0.0.20180802

2018-08-03 Thread Jason A. Donenfeld
Signed-off-by: Jason A. Donenfeld --- package/network/services/wireguard/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/network/services/wireguard/Makefile b/package/network/services/wireguard/Makefile index a88dca1..d314cd5 100644 --- a/package/network/

Re: [OpenWrt-Devel] [PATCH] kernel: modules: fix kmod-regmap

2018-08-03 Thread Jonas Gorski
On 3 August 2018 at 18:00, Christian Lamparter wrote: > diff --git a/package/kernel/linux/modules/other.mk > b/package/kernel/linux/modules/other.mk > index dd037cf86c..7e18a21db3 100644 > --- a/package/kernel/linux/modules/other.mk > +++ b/package/kernel/linux/modules/other.mk > @@ -718,7 +718,7

[OpenWrt-Devel] [PATCH] base-files: make wifi report unknown command

2018-08-03 Thread Thibaut VARÈNE
Avoid having /sbin/wifi silently ignore unknown keywords and execute "enable"; instead display the help message and exit with an error. Signed-off-by: Thibaut VARÈNE --- package/base-files/files/sbin/wifi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/base-files/file

Re: [OpenWrt-Devel] [PATCH] kernel: modules: fix kmod-regmap

2018-08-03 Thread Christian Lamparter
On Thursday, August 2, 2018 11:43:50 AM CEST Jonas Gorski wrote: > On 1 August 2018 at 22:44, Christian Lamparter wrote: >> On Wednesday, August 1, 2018 3:21:00 PM CEST Jonas Gorski wrote: >>> On 30/07/18 22:33, Christian Lamparter wrote: This patch fixes the a compile issue that was tri