Re: [OpenWrt-Devel] openwrt/packages: [RFC] Proposed flattening of menuconfig menus

2018-08-12 Thread Eric Luehrsen
On 08/13/2018 01:29 AM, Daniel F. Dickinson wrote: Posting on list as I think the discussion should include as folks as possible in the discussion. https://github.com/openwrt/packages/issues/6745 Especially when getting started with OpenWrt finding things in menuconfig is complicated by the

[OpenWrt-Devel] openwrt/packages: [RFC] Proposed flattening of menuconfig menus

2018-08-12 Thread Daniel F. Dickinson
Posting on list as I think the discussion should include as folks as possible in the discussion. https://github.com/openwrt/packages/issues/6745 > Especially when getting started with OpenWrt finding things in menuconfig is > complicated by the second level menus that are sometimes used and

[OpenWrt-Devel] [PATCH 2/2] ath79: add support for Fritz!Box 4020

2018-08-12 Thread David Bauer
This commit adds support for the AVM Fritz!Box 4020 WiFi-router. SoC: Qualcomm Atheros QCA9561 (Dragonfly) 750MHz RAM: Winbond W971GG6KB-25 FLASH: Macronix MX25L12835F WiFi: QCA9561 b/g/n 3x3 450Mbit/s USB: 1x USB 2.0 IN:WPS button, WiFi button OUT: Power LED green, Internet LED

[OpenWrt-Devel] [PATCH 1/2] ath79: add QCA956x GMAC config

2018-08-12 Thread David Bauer
This commit adds the ability to configure the GMAC of the QCA956x. Signed-off-by: David Bauer --- target/linux/ath79/dts/qca956x.dtsi | 5 + .../net/ethernet/atheros/ag71xx/ag71xx_gmac.c | 13 + 2 files changed, 18 insertions(+) diff --git

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

2018-08-12 Thread Hans Dedecker
On Sun, Aug 12, 2018 at 10:32 AM Jason A. Donenfeld wrote: > > * send: switch handshake stamp to an atomic > > Rather than abusing the handshake lock, we're much better off just using > a boring atomic64 for this. It's simpler and performs better. Also, while > we're at it, we set the handshake

Re: [OpenWrt-Devel] [PATCH 4/5] ath79: add ath9k calibration data MAC addresses patching

2018-08-12 Thread Christian Lamparter
On Saturday, August 11, 2018 10:23:16 PM CEST Mathias Kresin wrote: > 10.08.2018 23:24, Christian Lamparter: > > This patch copies over the MAC patching helper functions from lantiq's > > target/linux/lantiq/base-files/etc/hotplug.d/firmware/12-ath9k-eeprom > > file. > > > > Not all vendors

Re: [OpenWrt-Devel] [PATCH 2/5] ath79: port cybertan_part from ar71xx

2018-08-12 Thread Christian Lamparter
On Saturday, August 11, 2018 10:16:06 PM CEST Jonas Gorski wrote: > On 10 August 2018 at 23:24, Christian Lamparter wrote: > > The cybertan_part mtd parser is ported over from ar71xx and converted > > to integrate into the "firmware" mtd splitter. It will no longer add > > the u-boot, nvram and

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

2018-08-12 Thread Jason A. Donenfeld
* send: switch handshake stamp to an atomic Rather than abusing the handshake lock, we're much better off just using a boring atomic64 for this. It's simpler and performs better. Also, while we're at it, we set the handshake stamp both before and after the calculations, in case the calculations

[OpenWrt-Devel] [PATCH] uci: do not access invalid memory when updating an existing section

2018-08-12 Thread Enrico Mioso
If a new section with the same name and type of an old one is found, a memory reallocation happens. Still, the options list for the section is not reinitialized, hence a stale pointer is being used. Signed-off-by: Enrico Mioso --- list.c | 1 + 1 file changed, 1 insertion(+) diff --git