RE: netifd Call Flow - WiFi

2023-03-15 Thread Ravi Paluri (QUIC)
I think wifi interface going up and coming down is expected. Can anyone help with flow how does netifd know that wifi interface is up and where it adds this IP to the interface? Thanks, Ravi -Original Message- From: openwrt-devel On Behalf Of Ravi Paluri (QUIC) Sent: Thursday, March 16,

netifd Call Flow - WiFi

2023-03-15 Thread Ravi Paluri (QUIC)
Hi All, We are trying netifd to enable wlan. We have configured uci to set wlan interface IP statically. We are seeing when we do network reload, wifi interface is going down and coming up. Can we get flow how does netifd know that wifi interface is up and where it adds this IP to the inte

[PATCH] ath79: Add support for Ubiquiti NanoBeam AC Gen2 XC

2023-03-15 Thread Daniel González Cabanelas
The Ubiquiti NanoBeam AC Gen2 XC (NBE-5AC-Gen2) is an outdoor 802.11ac CPE with a waterproof casing (ultrasonically welded) and bulb shaped. It's the same board as Gen1 but with a small antenna routed out of the SoC and calibration data for this management radio in the "art" partition. Hardware:

[PATCH] ipq40xx: add support for Wallystech DR40x9

2023-03-15 Thread Koen Vandeputte
From: Robert Marko Adds support for the Wallys DR40x9 series boards. They come in IPQ4019 and IPQ4029 versions. IPQ4019/4029 only differ in that that IPQ4029 is the industrial version that is rated to higher temperatures. Specifications are: * CPU: Qualcomm IPQ40x9 (4x ARMv7A Cortex A7) at 716

Re: [PATCH uci 1/2] fuzz: Compile using libstd++

2023-03-15 Thread Petr Štetiar
Hauke Mehrtens [2023-03-12 22:52:50]: Hi, > What libfuzzer did you use in your container in gitlab? I was using clang builds from apt.llvm.org[1]. > An automatic detection would be nice, but I have no idea how to do it. I found only https://gitlab.kitware.com/cmake/cmake/-/issues/18275 which

Re: [PATCH] attr: add NLA_S8

2023-03-15 Thread Nick
On 3/15/23 07:30, Christian Marangi wrote: On Wed, Mar 15, 2023 at 02:37:43PM +0100, Nick Hainke wrote: NLA_S8 is used by newer hostapd versions. Signed-off-by: Nick Hainke What is the target project of this patch? libnl-tiny ___ openwrt-devel

Re: [PATCH] attr: add NLA_S8

2023-03-15 Thread Christian Marangi
On Wed, Mar 15, 2023 at 02:37:43PM +0100, Nick Hainke wrote: > NLA_S8 is used by newer hostapd versions. > > Signed-off-by: Nick Hainke What is the target project of this patch? > --- > attr.c | 1 + > include/netlink/attr.h | 35 +++ > 2 files

[PATCH] attr: add NLA_S8

2023-03-15 Thread Nick Hainke
NLA_S8 is used by newer hostapd versions. Signed-off-by: Nick Hainke --- attr.c | 1 + include/netlink/attr.h | 35 +++ 2 files changed, 36 insertions(+) diff --git a/attr.c b/attr.c index eae91e5..abde67f 100644 --- a/attr.c +++ b/attr.c @@ -437

toolchain/gcc: Always build gccgo?

2023-03-15 Thread Jeffery To
Hello, I'm considering looking into using gccgo to bootstrap the Go compiler in the packages feed. Currently, Go 1.4 (the last version written in C) is first built for host, then it is used to build the newest Go for host. This host Go compiler is then used to build the target Go package and othe