[PATCH] wireguard: bump to 1.0.20200623

2020-06-23 Thread Jason A. Donenfeld
* compat: drop centos 8.1 support as 8.2 is now out Of note, as well, is that we now have both RHEL7 and RHEL8 in our CI at . * Kbuild: remove -fvisibility=hidden from cflags This fixes an issue when compiling wireguard as a module for ARM kernels in THUM

[no subject]

2020-06-23 Thread Sander Vanheule via openwrt-devel
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- To enable dynamic kernel/rootfs sp

[no subject]

2020-06-23 Thread Sander Vanheule via openwrt-devel
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- okli images always have the follow

Re: [PATCH V1] netifd: fix wdev->data lifetime

2020-06-23 Thread John Crispin
On 23.06.20 11:40, John Crispin wrote: The reconf patch breaks wifi down under certain conditions. The root cause is that during reload the wdev state gets flushed. This has the effect, that the phy is lost from the state resulting in teardown breaking. Fix this by changing the lifetime of wdev

[no subject]

2020-06-23 Thread Martin Blumenstingl via openwrt-devel
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Hi John, On Tue, Jun 23, 2020 at

[PATCH rpcd] rc: new ubus object for handling /etc/init.d/ scripts

2020-06-23 Thread Rafał Miłecki
From: Rafał Miłecki This commit adds "rc" ubus object with methods "list" and "exec" for listing and calling init.d script appropriately. It's useful for all kind of UIs (e.g. LuCI) and custom apps. Example: root@OpenWrt:~# ubus call rc list { "blockd": { "enabled": true,

[PATCH] kernel: netfilter: move NAT targets to kmod-ebtables

2020-06-23 Thread Adrian Schmutzler
From: Ali MJ Al-Nasrawy Move SNAT and DNAT support from kmod-ebtables-ip4 to kmod-ebtables because these targets operate on MAC addresses not IPv4 and kmod-ebtables already supports NAT table and the related REDIRECT target. Signed-off-by: Ali MJ Al-Nasrawy [change commit title prefix] Signed-o

[PATCH] zram-swap: enable swap discard

2020-06-23 Thread Rui Salvaterra
Zram block devices have supported trim/discard for over six years, let's enable it. This allows the zram device to actually free up allocated memory when it's marked as unused in the filesystem metadata, as explained in more detail in the original commit message [1]. [1] https://git.kernel.org/pu

[PATCH V1] netifd: fix wdev->data lifetime

2020-06-23 Thread John Crispin
The reconf patch breaks wifi down under certain conditions. The root cause is that during reload the wdev state gets flushed. This has the effect, that the phy is lost from the state resulting in teardown breaking. Fix this by changing the lifetime of wdev->data. Signed-off-by: John Crispin --- C

[PATCH] netifd: fix wdev->data lifetime

2020-06-23 Thread John Crispin
The reconf patch breaks wifi down under certain conditions. The root cause is that during reload the wdev state gets flushed. This has the effect, that the phy is lost from the state resulting in teardown breaking. Fix this by changing the lifetime of wdev->data. Signed-off-by: John Crispin ---