Re: Package with combined user-space and kmod components (subpackages)

2025-06-07 Thread Christian Marangi (Ansuel)
Il giorno sab 7 giu 2025 alle ore 21:15 Philip Prindeville via openwrt-devel ha scritto: > > 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

Re: [PR] Add new platform: EcoNet EN751221 (DSL / XPON modems)

2025-06-05 Thread Christian Marangi (Ansuel)
Il giorno gio 5 giu 2025 alle ore 09:58 Benjamin Larsson via openwrt-devel ha scritto: > > 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 >

Re: [RFC, RFT] imagebuilder: introduce Device Tree Blob rebuild option

2025-05-29 Thread Christian Marangi (Ansuel)
Il giorno gio 29 mag 2025 alle ore 17:35 Tomasz Maciej Nowak ha scritto: > > W dniu 29.05.2025 o 15:43, Szabolcs Hubai pisze: > > Hi Tomasz! > > Hi > > > Thanks for contributing to this topic! > > > > Something like this was brought up in 2021 by Joe (jwmullally) > > with subject "Custom DTS / DTB

Re: How is the mac80211 backport package generated?

2025-04-01 Thread Christian Marangi (Ansuel)
Il giorno mar 1 apr 2025 alle ore 16:09 Florian Eckert ha scritto: > > Hello Felix > Hello Community, > > I'm working on openwrt-23.05/openwrt-24.10 and want to add > a new Wifi7 module that doesn't work with the current stack > because some patches are missing. While I'm researching, I'm > wonder

Re: [VOTE] OpenWrt Two

2025-02-15 Thread Christian Marangi (Ansuel)
Il giorno mer 12 feb 2025 alle ore 19:46 John Crispin ha scritto: > > Hi, > > starting a [VOTE] to get approval allowing me to begin the development > of OpenWrt "Two". > > "Two" will have all of the features that "One" has with the following > upgrades. > > * MT7988 > * 10G SFP > * 5G copper > *

Re: out-of-tree mac80211 driver in a package feed; how to determine mac80211 version

2025-01-29 Thread Christian Marangi (Ansuel)
Il giorno mer 29 gen 2025 alle ore 01:39 Tim Harvey ha scritto: > > Greetings, > > I've got an out-of-tree mac80211 driver [1] that I built in a package > feed. The driver has a lot of kernel compatibility defines using > KERNEL_VERSION(x,y,z) and LINUX_VERSION_CODE to support various > kernels fr

Re: Porting the EN75xx platform - code style questions.

2025-01-20 Thread Christian Marangi (Ansuel)
Il giorno lun 20 gen 2025 alle ore 14:42 Caleb James DeLisle via openwrt-devel ha scritto: > > 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 wrappe

Attended Sysupgrade Server CVE-2024-54143

2024-12-06 Thread Christian Marangi (Ansuel)
Forwarding this also to devel list in case anyone might miss this. --- Hi, last Wednesday we got notified of a security issue of the sysupgrade server ASU[1]. It affected all ASU instances including the the official instance[2]. Official ASU instances runs on dedicated servers separate from OpenW

Re: [RFC PATCH 14/14] config: clamp dhcpv6_pd_min_len

2024-11-17 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:46AM +0200, Paul Donald wrote: > From: Paul Donald > > Attempt to be helpful. > > Signed-off-by: Paul Donald > --- > src/config.c | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/src/config.c b/src/config.c > index 4d35548..7484

Re: [RFC PATCH 00/14] odhcpd config value clamping

2024-11-16 Thread Christian Marangi
On Sun, Jun 30, 2024 at 10:32:42PM +0200, Paul D wrote: > On 2024-05-10 00:30, Paul Donald wrote: > > Clamp values read from config to RFC mandated sane values instead of just > > complaining. We also now implement valid_lifetime for ULA prefixes. > > This is useful if you need to sunset or remove

Re: [RFC PATCH 13/14] config: clamp dhcpv6_hostid_len

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:45AM +0200, Paul Donald wrote: > From: Paul Donald > > Attempt to be helpful. > > Signed-off-by: Paul Donald > --- > src/config.c | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git a/src/config.c b/src/config.c > index f4eaa3b..4d3

Re: [RFC PATCH 12/14] config: clamp ra_mtu into 1280-65535 range

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:44AM +0200, Paul Donald wrote: > From: Paul Donald > > (ipv6 packets can be up to 4GB in size...) > > The old logic had a logic error of || instead of && I would ask you to move the fix in a dedicated patch separate from this series (so I can merge it quicker) >

Re: [RFC PATCH 08/14] router: clamp prefix valid_lt to interface valid_lifetime

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:40AM +0200, Paul Donald wrote: > From: Paul Donald > > Before: > == > ICMPv6 Option (Prefix information : fd26:3c30:a222::/64) > Type: Prefix information (3) > Length: 4 (32 bytes) > Prefix Length: 64 > Flag: 0xc0, On-link flag(L), Autonomous address-

Re: [RFC PATCH 11/14] config: clamp ra_retranstime

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:43AM +0200, Paul Donald wrote: > From: Paul Donald > > Attempt to be helpful. > > Signed-off-by: Paul Donald > --- > src/config.c | 9 - > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/src/config.c b/src/config.c > index e0f2d80..160d7d

Re: [RFC PATCH 10/14] config: clamp ra_hoplimit to maximum (instead of complaining)

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:42AM +0200, Paul Donald wrote: > From: Paul Donald > > Attempt to be helpful. > > Signed-off-by: Paul Donald > --- > src/config.c | 11 ++- > 1 file changed, 6 insertions(+), 5 deletions(-) > > diff --git a/src/config.c b/src/config.c > index 54fb9b5..e0f

Re: [RFC PATCH 09/14] config: clamp ra_reachabletime to RFC maximum (instead of complaining)

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:41AM +0200, Paul Donald wrote: > From: Paul Donald > > Attempt to be helpful. Better commit description please. (also apply this to every other comment, declerative comments and NOT as continuation of title) > > Signed-off-by: Paul Donald > --- > src/config.c |

Re: [RFC PATCH 02/14] router: Apply updated values from RFC8319 (updates RFC4861) to RA/ND

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:34AM +0200, Paul Donald wrote: > From: Paul Donald > > https://www.rfc-editor.org/rfc/rfc8319#section-4 > > Signed-off-by: Paul Donald > --- > src/router.c | 6 -- > src/router.h | 23 ++- > 2 files changed, 26 insertions(+), 3 deletions(-

Re: [RFC PATCH 03/14] config: clamp ra_mininterval, ra_maxinterval, ra_lifetime at load time

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:35AM +0200, Paul Donald wrote: > From: Paul Donald > > Signed-off-by: Paul Donald > --- > src/config.c | 48 +--- > src/router.c | 10 -- > src/router.h | 2 +- > 3 files changed, 42 insertions(+), 18 deletions(-

Re: [RFC PATCH 06/14] config: implement RFC4861 AdvValidLifetime (make configurable)

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:38AM +0200, Paul Donald wrote: > From: Paul Donald > > In accordance with RFC4861. Enables control of ULA. > > The new config variable is valid_lifetime. e.g.: > > config dhcp 'lan' > ... > option valid_lifetime '6h' > Move this to separate series

Re: [RFC PATCH 01/14] config: refactor parse_leasetime() - branch amount remains same

2024-11-16 Thread Christian Marangi
On Fri, May 10, 2024 at 12:30:33AM +0200, Paul Donald wrote: > From: Paul Donald > > Also make 's' value a noop. > > Signed-off-by: Paul Donald > --- > src/config.c | 20 > 1 file changed, 8 insertions(+), 12 deletions(-) > > diff --git a/src/config.c b/src/config.c > ind

Re: OpenWrt 24.XX release plan

2024-10-23 Thread Christian Marangi (Ansuel)
Il giorno mer 23 ott 2024 alle ore 19:22 Daniel Golle ha scritto: > > On Wed, Oct 23, 2024 at 05:52:30PM +0200, Christian Marangi (Ansuel) wrote: > > Il giorno mer 23 ott 2024 alle ore 17:51 Petr Štetiar > > ha scritto: > > > > > > Hauke Mehrtens [

Re: OpenWrt 24.XX release plan

2024-10-23 Thread Christian Marangi (Ansuel)
Il giorno mer 23 ott 2024 alle ore 21:52 Eric ha scritto: > > On Wednesday, October 23rd, 2024 at 10:25, Christian Marangi (Ansuel) > wrote: > > > Well mainly it's the luci app and extensive testing. > > Is there a version of 'ubus call rpc-sys packagelist'

Re: OpenWrt 24.XX release plan

2024-10-23 Thread Christian Marangi (Ansuel)
Il giorno mer 23 ott 2024 alle ore 17:51 Petr Štetiar ha scritto: > > Hauke Mehrtens [2024-09-21 11:51:19]: > > Hi, > > > We should already start building up the build infrastructure for a 24.10 > > branch now. > > @ynezz: What is needed for that? > > tl;dr basically just the openwrt-24.10 branch

Re: OpenWrt 24.XX release plan

2024-09-21 Thread Christian Marangi
On Sat, Sep 21, 2024 at 11:51:19AM +0200, Hauke Mehrtens wrote: > Hi, > > We finally migrated all targets in OpenWrt main branch to kernel 6.6. The > biggest release blocker is done now. > > It will probably be 24.10. > > When we branch 24.10 we should be able to release a 24.10.0-rc1 release so

Re: Issues w/ kexec-tools when building images (redux)

2024-05-07 Thread Christian Marangi (Ansuel)
Il giorno mer 8 mag 2024 alle ore 00:03 Philip Prindeville via openwrt-devel ha scritto: > > 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

Re: Install LuCI for snapshots builds

2024-05-07 Thread Christian Marangi
On Tue, May 07, 2024 at 11:24:32PM +0200, Paul Spooren wrote: > Hi all, > > For some reason (resource usage?) our snapshot builds do not include the LuCI > web interface. I think it’s an advantage to have LuCI installed in snapshot > images since a) it installed for all releases anyway and b) of

Re: [PATCH] ipq40xx: add PCIe magic hack to improve VRX518 compatibility

2024-05-07 Thread Christian Marangi (Ansuel)
Il giorno mar 7 mag 2024 alle ore 18:53 Enrico Mioso ha scritto: > > Hello all!! > > is there any chance we can merge any form of this patch? > The device it is related seems pretty popular and one of the rare devices > supporting VDSL, 35B profile and with nice specs. > Even tough I can understa

Re: Question to recent Qualcomm CVEs

2024-04-30 Thread Christian Marangi (Ansuel)
Il giorno mar 30 apr 2024 alle ore 15:04 Kalle Valo ha scritto: > > Robert Marko writes: > > > On Tue, 30 Apr 2024 at 10:48, Kalle Valo wrote: > > > >> > >> Robert Marko writes: > >> > >> > On Mon, 29 Apr 2024 at 15:37, Sven Eckelmann wrote: > >> >> > >> >> On Monday, 29 April 2024 15:14:18 CE

Re: Issue after changing from xz to zstd

2024-04-06 Thread Christian Marangi (Ansuel)
Il giorno sab 6 apr 2024 alle ore 21:46 Hartmut Birr ha scritto: > > Hi, > > I did change the Makefile for dnsmasq in the way that I give: > > PKG_SOURCE_URL:=git://thekelleys.org.uk/dnsmasq.git > PKG_SOURCE_PROTO:=git > PKG_SOURCE_DATE:=2024-03-27 > PKG_SOURCE_VERSION:=550c368adea12b312f83686c61f

Re: here we are again: real name 'discussion'

2024-03-27 Thread Christian Marangi (Ansuel)
> On 27/03/2024 10:53, Paul D wrote: > >> lets make a vote > > > > > > So... what's necessary for a vote to start? > > > > Why this insistence on a vote while the discussion is still going on ? > Why this interest in cut other people's opinion while there is stuff to > be discussed and may change o

Re: here we are again: real name 'discussion'

2024-03-27 Thread Christian Marangi (Ansuel)
> > > My 2 cent on the problem of permitting nick is that if we accept that, > > some funny guy might use nickname like "ExtraHardCockSucker" > > and we wouldn't have anything to say about it and have to accept > > it if the contribution is correct. > > > > Using Real name prevents that (on 99% of

Re: here we are again: real name 'discussion'

2024-03-27 Thread Christian Marangi (Ansuel)
Il giorno mer 27 mar 2024 alle ore 13:33 Paul D ha scritto: > > > a) It's a policy change and not a code change. > > Policy changes require a vote > > Then take a(nother) vote. > Honestly due to the conflicts, lets just take a vote and be done with it. Members seem to participate more so it shoul

[PATCH 3/3] hostapd: restore /etc/hostapd directory on sysupgrade

2024-03-04 Thread Christian Marangi
Restore /etc/hostapd directory on sysupgrade since it does contain per-device PSK handled by hostapd for WPS usage. Signed-off-by: Christian Marangi --- package/network/services/hostapd/Makefile | 40 --- 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a

[PATCH 1/3] wifi-scripts: permit hostapd to access wpa_psk_file

2024-03-04 Thread Christian Marangi
ime because we create the wpa_psk_file as root and hostapd doesn't have access to it to write the per-device psk. Giving correct permission makes hostapd correctly write the entry and permits devices connected with WPS Push-Button to re-authenticate on next connection. Signed-off-by: Christian

[PATCH 2/3] wifi-scripts: save wpa_psk_file on permanent storage by default

2024-03-04 Thread Christian Marangi
r the wpa_psk_file option to point to this directory. Signed-off-by: Christian Marangi --- package/network/config/wifi-scripts/Makefile | 2 +- .../config/wifi-scripts/files/lib/netifd/hostapd.sh | 9 - 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pa

[PATCH 0/3] wifi-scripts: fix WPS usage

2024-03-04 Thread Christian Marangi
plicant we used to emit and event and react on it but I didn't find a good way to register persistent listner for it) tl;dr WPS is broken, permission problem and psk are dropped on restart. Christian Marangi (3): wifi-scripts: permit hostapd to access wpa_psk_file wifi-scripts: save

RE: Vote: New member proposal linusw (Linus Walleij)

2024-03-02 Thread Christian Marangi (Ansuel)
From: Petr Štetiar Hi, Linus is renowned in the FOSS community primarily for his exceptional contributions to the Linux kernel, where he maintains an impressive array of subsystems, drivers, and architectures. He has been contributing to OpenWrt for about six years already and given that we hav

Re: [VOTE] New member proposal: Robimarko (Robert Marko)

2024-02-14 Thread Christian Marangi (Ansuel)
> > Robert is active in OpenWrt since 2017 and with some recent stats, he > has more than 310 commits merged in OpenWrt. > He also have uncounted Reviewed-by tag on various PR and merged commits > and generally helps in everything related to IPQ (ipq806x, ipq40xx and > ipq807x) and some mvebu targe

Re: qca8327/qca8337 switch

2024-02-12 Thread Christian Marangi (Ansuel)
Il giorno lun 12 feb 2024 alle ore 17:58 e9hack ha scritto: > > Hi, > > it looks like that this commit > > 997acc7f86ca985cba52f7ea8b72f0661a1e3c52 > generic: 6.1: backport at803x split patches > > breaks devices which using a qca8327/qca8337 switch, because the switch > driver is not longer comp

Re: [PATCH RFC] aquantia-firmware: package MediaTek's Aquantia AQR113C firmware

2024-02-05 Thread Christian Marangi
On Mon, Feb 05, 2024 at 08:21:43PM +0100, Rafał Miłecki wrote: > On 5.02.2024 15:21, Daniel Golle wrote: > > On Mon, Feb 05, 2024 at 02:23:08PM +0100, Rafał Miłecki wrote: > > > From: Rafał Miłecki > > > > > > Aquantia AQR113C is PHY that needs loading a firmware. Some devices may > > > have it s

Re: Linux kernel 6.1 or 6.6 for OpenWrt 24.x release?

2024-02-03 Thread Christian Marangi (Ansuel)
Il giorno sab 3 feb 2024 alle ore 18:55 Janusz Dziedzic ha scritto: > > sob., 3 lut 2024 o 13:08 Hauke Mehrtens napisał(a): > > > > Hi, > > > > I track the status of the Linux kernel 6.1 migration in this github > > issue: https://github.com/openwrt/openwrt/issues/14546 > > > > There are still ma

Re: Linux kernel 6.1 or 6.6 for OpenWrt 24.x release?

2024-02-03 Thread Christian Marangi (Ansuel)
Il giorno sab 3 feb 2024 alle ore 16:58 Hauke Mehrtens ha scritto: > > On 2/3/24 15:31, Paul D wrote: > > On 2024-02-03 13:06, Hauke Mehrtens wrote: > >> Hi, > >> > >> I track the status of the Linux kernel 6.1 migration in this github > >> issue: https://github.com/openwrt/openwrt/issues/14546 >

[VOTE] New member proposal: Robimarko (Robert Marko)

2024-01-30 Thread Christian Marangi (Ansuel)
Robert is active in OpenWrt since 2017 and with some recent stats, he has more than 310 commits merged in OpenWrt. He also have uncounted Reviewed-by tag on various PR and merged commits and generally helps in everything related to IPQ (ipq806x, ipq40xx and ipq807x) and some mvebu targets. He did

Re: Future of the broadcom-wl package?

2024-01-26 Thread Christian Marangi
On Fri, Jan 26, 2024 at 06:45:58PM +0100, Felix Fietkau wrote: > Hi, > > does anybody still care about the broadcom-wl package in OpenWrt? > I think it would be nice if we could get rid of it, along with the code > support and abstraction for different wireless drivers. > It would also allow us to

Re: [PATCH v4 0/7] Resurrect OpenWrt IXP4xx support

2023-10-25 Thread Christian Marangi
rzysztof Halasa for all cheering > and reference designs :) > > Thanks to Howard Harte and Joseph for stepping in and helping > out with device support and debugging. > > Thanks for Hauke for the the in-depth review of the v1 > patch set. Thanks to Christian Marangi, Robert Marko

Re: A Method of Breaking Git

2023-10-24 Thread Christian Marangi
On Tue, Oct 24, 2023 at 02:21:35PM +0200, Bjørn Mork wrote: > Christian Marangi writes: > > > Anyway I have also found this [1]... if it does actually works, it might be > > THE solution to our specific problem. Wonder if someone can test it on a > > sample repos

Re: A Method of Breaking Git

2023-10-24 Thread Christian Marangi
On Tue, Oct 24, 2023 at 01:40:22PM +0200, Bjørn Mork wrote: > Ack on the broken history problem. > > I don't think it's necessary to keep two separate histories though. The > main issue is the periodical removal of files keeping parts of history, > resulting in an increasing number of file names

Re: [PATCH v3 00/10] Resurrect OpenWrt IXP4xx support

2023-10-20 Thread Christian Marangi
On Fri, Oct 20, 2023 at 02:48:33PM +0200, Linus Walleij wrote: > On Fri, Oct 20, 2023 at 2:32 PM Christian Marangi > wrote: > > > Yes! Would be ideal then we can just bump the linux-firmware package and > > reference it there. > > OK I'll try this. > >

Re: [PATCH v3 00/10] Resurrect OpenWrt IXP4xx support

2023-10-20 Thread Christian Marangi
On Fri, Oct 20, 2023 at 02:26:30PM +0200, Linus Walleij wrote: > On Fri, Oct 20, 2023 at 1:33 PM Christian Marangi > wrote: > > On Fri, Oct 20, 2023 at 01:15:51PM +0200, Linus Walleij wrote: > > > > If there is some rough consensus on this, could someone start >

Re: [PATCH v3 00/10] Resurrect OpenWrt IXP4xx support

2023-10-20 Thread Christian Marangi
On Fri, Oct 20, 2023 at 01:15:51PM +0200, Linus Walleij wrote: > If there is some rough consensus on this, could someone start > applying these patches, apart from patch 10/10 where we might > want to do something different? > I started to merge the first trivial patch that just adds packages and

Re: [PATCH v3 06/10] firmware: Resurrect the ixp4xx microcode package

2023-10-20 Thread Christian Marangi
On Thu, Oct 12, 2023 at 10:42:21AM +0200, Linus Walleij wrote: > The firmware package for the IXP4xx microcode was deleted but > the source files are still in the file cache so we can easily > resurrect it. > > The firmware either supports ethernet (the most common) or > WAN (less common), image t

Re: [PATCH master,23.05] ramips: fix ZyXEL NR7101 bricking typo

2023-10-15 Thread Christian Marangi
On Sun, Oct 15, 2023 at 09:59:57PM +0200, Paul D wrote: > On 2023-10-15 19:41, Bjørn Mork wrote: > > A typo snuck in with the addition of Cudy M1800, changing > > "nr7101" to "nt7101". The result is a default network config > > for NR7101 without the only ethernet interface on the NR7101, > > there

Re: packet captures of sony's new 80Mbit service?

2023-10-11 Thread Christian Marangi (Ansuel)
> > Anyone got a ps4 or ps5 and can take a packet capture at their router? > Dying to know if it is cubic or bbr in particular > > https://entertainment.slashdot.org/story/23/10/05/154219/sonys-high-bitrate-movie-service-is-now-available-on-ps5-and-ps4 > 80 mbps oh boy... the dream for correct str

Re: [PATCH v2 8/9] Delete arm-magic script

2023-10-04 Thread Christian Marangi
On Thu, Sep 28, 2023 at 03:28:31PM +0200, Linus Walleij wrote: > This script was used to modify the wrong machine type passed > from the boot loader to the kernel. The device tree kernels > does not use the machine type so this script is no longer > needed. > > Signed-off-by: Linus Walleij Can y

Re: [PATCH v2 2/2] mac80211: compile kconf with host gcc

2023-10-02 Thread Christian Marangi
On Fri, Sep 29, 2023 at 09:26:48PM -0400, Zeyu Dong wrote: > Fix the building issue setting CC to KERNEL_CC in kernel.mk. The > kernel backports by default uses CC to compile kconf. A new patch is > added to mac80211 to compile kconf with host gcc. > > Signed-off-by: Zeyu Dong Can you run this u

[netifd PATCH] bridge: always insert new member if allocated on hotplug add

2023-06-24 Thread Christian Marangi
t;bridge: add support for adding vlan ranges via hotplug") Signed-off-by: Christian Marangi --- bridge.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bridge.c b/bridge.c index 471c651..202b69b 100644 --- a/bridge.c +++ b/bridge.c @@ -930,12 +930,15 @@ bridge_hotpl

Re: [PATCH 4/5] target: grand flash devices should use OpenSSL

2023-06-15 Thread Christian Marangi
On Thu, Jun 15, 2023 at 04:32:11PM +0200, Petr Štetiar wrote: > During the years we've learned it hard way, that we needed to make a lot > of compromises while using flash space friendly micro TLS libraries like > mbedTLS/wolfSSL in order to provide more or less up to date security > features on mo

Re: [PATCH 2/2] ipq40xx: add support for eero Cento (J010001)

2023-06-13 Thread Christian Marangi
On Wed, May 17, 2023 at 01:47:02PM -0400, Connor Northway wrote: > development/internal name: Cento > public name: eero (2nd-gen) > model number: J010001 > > Hardware Info: > > SoC : Qualcomm IPQ4019 > RAM : 512 MB (Hynix NT5CC256M16ER-EK) > SPI Flash

Re: [PATCH procd] ubus: add state measurement

2023-03-21 Thread Christian Marangi
On Wed, Oct 26, 2022 at 03:18:51PM +0200, Florian Eckert wrote: > Procd has different states during booting. When the system is > booted, it is in the 'running' state. This state is only exited when the > system is shut down cleanly. This state is called 'shutdown'. To find out > what state the sys

[odhcpd PATCH v2 1/2] config: skip interface setup if interface not IFF_RUNNING

2023-03-19 Thread Christian Marangi
is reloaded and the services are correctly setup again. Signed-off-by: Christian Marangi Acked-by: Hans Dedecker --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 9b1f659..30da879 100644 --- a/src/config.c +++ b/src/config.c

[odhcpd PATCH v2 2/2] router: skip RA and wait for LINK-LOCAL to be assigned

2023-03-19 Thread Christian Marangi
already up but with still no LINK-LOCAL react on the RTM_NEWADDR event and set LINK-LOCAL if the addrs added by the event is a LINK-LOCAL reflecting that the interface finally ended the DAD process and have a correct address. Signed-off-by: Christian Marangi --- src/config.c | 9 +

Re: [PATCH v2] ipq40xx: add support for Wallystech DR40x9

2023-03-17 Thread Christian Marangi
On Fri, Mar 17, 2023 at 02:20:27PM +0100, Koen Vandeputte wrote: > 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 temperature

Re: Docker is sunsetting Free Team organizations

2023-03-16 Thread Christian Marangi
On Thu, Mar 16, 2023 at 11:19:11PM -0400, Etienne Champetier wrote: > Hi All, Paul > > Docker wants to shutdown free team organisations, so this include > docker.io/openwrtorg > Here the announcement: > https://web.docker.com/rs/790-SSB-375/images/privatereposfaq.pdf > > Those 3 repos seem active

[odhcpd PATCH 2/2] router: skip RA and wait for LINK-LOCAL to be assigned

2023-03-16 Thread Christian Marangi
already up but with still no LINK-LOCAL react on the RTM_NEWADDR event and set LINK-LOCAL if the addrs added by the event is a LINK-LOCAL reflecting that the interface finally ended the DAD process and have a correct address. Signed-off-by: Christian Marangi --- src/config.c | 9 +

[odhcpd PATCH 1/2] config: skip interface setup if interface not IFF_RUNNING

2023-03-16 Thread Christian Marangi
is reloaded and the services are correctly setup again. Signed-off-by: Christian Marangi --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 9b1f659..30da879 100644 --- a/src/config.c +++ b/src/config.c @@ -1303,7 +1303,7 @@ void

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

Re: Intention on moving board-2 blob to a separate repo

2023-02-28 Thread Christian Marangi
On Tue, Feb 28, 2023 at 09:58:49AM +0100, Petr Štetiar wrote: > Ansuel Smith [2023-02-27 23:35:47]: > > Hi, > > > there is this idea of moving each board-2 blob to a separate repo > > the idea seems fine to me, I just don't understand this part, can you > elaborate more on why do we need separa

Re: OpenWrt project mirrors on GitHub

2023-02-06 Thread Christian Marangi
On Mon, Feb 06, 2023 at 09:43:41PM +0100, Paul Spooren wrote: > Hi all, > > All project from git.openwrt.org are now mirrored over to GitHub to allow > further use of the CI and better visibility. > > I’d like to get some opinions on enabling Issues (aka GitHub bug tracker). > Right now issues

Re: [rpcd PATCH 3/4] rc: add option to skip running check for list method

2023-02-01 Thread Christian Marangi
On Wed, Feb 01, 2023 at 10:50:24AM -, Karl Palsson wrote: > > > > Christian Marangi wrote: > > Running check may be slow and increase result time in the other > > of 70ms for the list method. > > > > Add an option to skip running check by passing the &

[rpcd PATCH 1/4] rc: fix and improve script scanning START and STOP

2023-01-31 Thread Christian Marangi
10 lines. - Don't stop at the first occurence and try to search also for the other data. Signed-off-by: Christian Marangi --- rc.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rc.c b/rc.c index 45fdc1a..431d3a5 100644 --- a/rc.c +++ b/rc.c @@ -187,17 +1

[rpcd PATCH 3/4] rc: add option to skip running check for list method

2023-01-31 Thread Christian Marangi
time lower to just 5ms. Signed-off-by: Christian Marangi --- rc.c | 25 ++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/rc.c b/rc.c index 35b47e9..60ec4bf 100644 --- a/rc.c +++ b/rc.c @@ -20,6 +20,15 @@ #define RC_LIST_EXEC_TIMEOUT_MS

[rpcd PATCH 4/4] rc: add option to get info for a single script in list method

2023-01-31 Thread Christian Marangi
Add option to get info for a single script in list method. To get info of a particular script pass the name arg to the list method. If the script doesn't exist an empty table is returned. Signed-off-by: Christian Marangi --- rc.c | 15 ++- 1 file changed, 14 insertions(

[rpcd PATCH 2/4] rc: add support for scanning USE_PROCD and skip running if not supported

2023-01-31 Thread Christian Marangi
: Christian Marangi --- rc.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/rc.c b/rc.c index 431d3a5..35b47e9 100644 --- a/rc.c +++ b/rc.c @@ -47,6 +47,7 @@ struct rc_list_context { int stop; bool enabled; bool running

Re: [PATCH iwinfo] nl80211: restore iterating over all devices in nl80211_phy2ifname()

2023-01-30 Thread Christian Marangi
On Mon, Jan 30, 2023 at 07:57:57PM +0100, Andre Heider wrote: > This reverts to the earlier behaviour, because: > * phys can be renamed, which breaks hardcoding "phy%d" > * /sys/class/ieee80211/*/device can return networks of other phys, > since "device" is a symlink which can have multiple phys

Re: [PATCH fstools] partname: Correct fstools_partname_fallback_scan comparison

2023-01-25 Thread Christian Marangi
On Tue, Jan 24, 2023 at 10:40:26PM -0800, Brian Norris wrote: > On Tue, Jan 24, 2023 at 10:28:14PM -0800, Brian Norris wrote: > > We want to return NULL if the param does *not* match 1 -- i.e., a > > non-zero strcmp(). > > > > Fixes: 1ea5855e980c ("partname: Introduce fstools_partname_fallback_sca

Re: [PATCH v4 7/7] ipq806x: Initial TP-Link and ASUS OnHub support

2023-01-20 Thread Christian Marangi
On Fri, Jan 20, 2023 at 05:17:43PM -0800, Brian Norris wrote: > On Fri, Jan 20, 2023 at 6:11 AM Christian Marangi > wrote: > > added the changed to my staging repo and testing them here > > https://github.com/openwrt/openwrt/pull/11843. > > > > Merged the fstools re

Re: [PATCH v4 7/7] ipq806x: Initial TP-Link and ASUS OnHub support

2023-01-20 Thread Christian Marangi
On Thu, Jan 12, 2023 at 09:32:22PM -0800, Brian Norris wrote: > TP-Link and ASUS OnHub devices are very similar, sharing many of the > same characteristics and much of their Device Tree. They both run a > version of ChromeOS for their factory firmware, and so installation > instructions look very s

Re: [PATCH v3 7/7] ipq806x: Initial TP-Link and ASUS OnHub support

2023-01-12 Thread Christian Marangi
On Thu, Jan 12, 2023 at 09:35:03AM -0800, Brian Norris wrote: > Hi Christian, > > On Thu, Jan 12, 2023 at 6:34 AM Christian Marangi > wrote: > > On Tue, Jan 10, 2023 at 11:06:52PM -0800, Brian Norris wrote: > > > diff --git a/target/linux/ipq806x/base-files/etc/boar

Re: [PATCH v3 7/7] ipq806x: Initial TP-Link and ASUS OnHub support

2023-01-12 Thread Christian Marangi
On Tue, Jan 10, 2023 at 11:06:52PM -0800, Brian Norris wrote: > TP-Link and ASUS OnHub devices are very similar, sharing many of the > same characteristics and much of their Device Tree. They both run a > version of ChromeOS for their factory firmware, and so installation > instructions look very s

Re: [PATCH v3 6/7] ucode: Update to latest

2023-01-12 Thread Christian Marangi
On Tue, Jan 10, 2023 at 11:06:51PM -0800, Brian Norris wrote: > To bring in isatty() support. > > Includes new commits: > > dad974baa46 Merge pull request #137 from ynezz/ynezz/isatty > be30472bfdbb fs: add `isatty()` function > 98637e08dba5 Merge pull request #136 from blogic/master > 0a58d51052

Re: [PATCH fstools v2] partname: Ignore root=PARTUUID...

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 02:34:48PM -0800, Brian Norris wrote: > On Mon, Jan 9, 2023 at 1:53 PM Christian Marangi wrote: > > > > On Fri, Jan 06, 2023 at 06:04:22PM -0800, Brian Norris wrote: > > > We're assuming all root= arguments are /dev/ paths, but many target

Re: [PATCH fstools v2] partname: Ignore root=PARTUUID...

2023-01-09 Thread Christian Marangi
On Fri, Jan 06, 2023 at 06:04:22PM -0800, Brian Norris wrote: > We're assuming all root= arguments are /dev/ paths, but many targets > utilize root=PARTUUID= strategies. At least allow them to fall back > to scanning all block devices. > > Signed-off-by: Brian Norris Can you elaborate this a bit

Re: [PATCH v2 6/7] coreutils: Import from packages feed

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 12:23:25PM -0800, Brian Norris wrote: > On Mon, Jan 9, 2023 at 11:56 AM Christian Marangi > wrote: > > On Mon, Jan 09, 2023 at 11:51:53AM -0800, Brian Norris wrote: > > > For my use, it feels like a simplified form (which only needs to be a > &

Re: [iwinfo PATCH v2] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 09:58:19PM +0100, Andre Heider wrote: > On 09/01/2023 21:44, Andre Heider wrote: > > On 09/01/2023 20:49, Christian Marangi wrote: > > > From: Jo-Philipp Wich > > > > > > Some device have embedded wifi card that are not connected with u

Re: [PATCH v2 6/7] coreutils: Import from packages feed

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 11:51:53AM -0800, Brian Norris wrote: > On Mon, Jan 9, 2023 at 11:21 AM Christian Marangi > wrote: > > > > On Mon, Jan 09, 2023 at 03:35:56PM +0100, Petr Štetiar wrote: > > > Petr Štetiar [2023-01-09 11:50:37]: > > > > > > Hi,

[iwinfo PATCH v2] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
ll be flagged as embedded and won't print empty ids. Update devices.txt by migrating all the compatible matching device from fake id to compatible matching. Tested-by: Christian Marangi # ipq4019 Co-developed-by: Christian Marangi Signed-off-by: Jo-Philipp Wich Signed-off-by: Christian Maran

Re: [PATCH v2 6/7] coreutils: Import from packages feed

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 03:35:56PM +0100, Petr Štetiar wrote: > Petr Štetiar [2023-01-09 11:50:37]: > > Hi, > > > BTW ucode has `b64dec()`[1] so perhaps another viable option. > > > > 1. https://github.com/jow-/ucode#663-b64decstr > > wanted to refresh my ucode brain cells, so I've explored fe

Re: [iwinfo PATCH] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 08:14:36PM +0100, Andre Heider wrote: > On 09/01/2023 19:58, Christian Marangi wrote: > > On Mon, Jan 09, 2023 at 07:53:02PM +0100, Andre Heider wrote: > > > On 09/01/2023 19:46, Christian Marangi wrote: > > > > On Mon, Jan 09, 2023 at 07:44:

Re: [iwinfo PATCH] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 07:53:02PM +0100, Andre Heider wrote: > On 09/01/2023 19:46, Christian Marangi wrote: > > On Mon, Jan 09, 2023 at 07:44:34PM +0100, Andre Heider wrote: > > > On 09/01/2023 18:28, Christian Marangi wrote: > > > > From: Jo-Philipp Wich >

Re: [iwinfo PATCH] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
On Mon, Jan 09, 2023 at 07:44:34PM +0100, Andre Heider wrote: > On 09/01/2023 18:28, Christian Marangi wrote: > > From: Jo-Philipp Wich > > > > Some device have embedded wifi card that are not connected with usb or > > internall with pci. Such device have

[iwinfo PATCH] devices: add support for declaring compatible matched devices

2023-01-09 Thread Christian Marangi
ll be flagged as embedded and won't print empty ids. Tested-by: Christian Marangi Co-developed-by: Christian Marangi Signed-off-by: Jo-Philipp Wich Signed-off-by: Christian Marangi --- devices.txt | 13 + include/iwinfo.h | 2 ++ iwinfo_cli.c | 9 -- iwinfo_nl80

Re: [PATCH v2 6/7] coreutils: Import from packages feed

2023-01-08 Thread Christian Marangi
On Sun, Jan 08, 2023 at 09:00:58PM +0100, Petr Štetiar wrote: > Brian Norris [2023-01-06 23:49:44]: > > Hi Brian, > > > I need to express a per-target dependency on the 'base64' utility, and > > that's seemingly impossible to do for busybox. > > --- a/target/linux/ipq806x/Makefile >

Re: [PATCH v2 6/7] coreutils: Import from packages feed

2023-01-07 Thread Christian Marangi
On Fri, Jan 06, 2023 at 11:49:44PM -0800, Brian Norris wrote: > I need to express a per-target dependency on the 'base64' utility, and > that's seemingly impossible to do for busybox. Pull in coreutils to make > that easier. > > Signed-off-by: Brian Norris We still need to think of a correct sol

Re: [PATCH RFC] Revert "generic: write back netdev MAC-address to device-tree"

2023-01-07 Thread Christian Marangi
On Sat, Jan 07, 2023 at 01:05:42PM +0100, Rafał Miłecki wrote: > From: Rafał Miłecki > > This reverts commit cd39aba402ea7e7a11e173b0b5aa96e42bf1f2ac. > > Adding "mac-address" property to the device tree seems to be done to > allow reading it using procfs (/proc/device-tree/). It seems like a ha

Re: [PATCH] iwinfo: devices: add Qualcomm Atheros IPQ8074 WiSoC

2023-01-06 Thread Christian Marangi
On Fri, Jan 06, 2023 at 11:42:46PM +0100, Jo-Philipp Wich wrote: > Hi Robert, > > I know that you're just expanding existing code (which I recently noticed for > the first time) but I think that adding more and more if/else clauses with > further hardware matches for purely cosmetic reasons* is a

Re: [PATCH] iwinfo: devices: add Qualcomm Atheros QCN6024/9024/9074 cards

2023-01-06 Thread Christian Marangi
On Fri, Jan 06, 2023 at 05:32:48PM +0100, Robert Marko wrote: > On Fri, 6 Jan 2023 at 17:31, Christian Marangi wrote: > > > > On Fri, Jan 06, 2023 at 05:14:37PM +0100, Robert Marko wrote: > > > Add Qualcomm Atheros QCN6024/9024/9074 PCI ID, they all are compatible a

Re: [PATCH] iwinfo: devices: add Qualcomm Atheros QCN6024/9024/9074 cards

2023-01-06 Thread Christian Marangi
On Fri, Jan 06, 2023 at 05:14:37PM +0100, Robert Marko wrote: > Add Qualcomm Atheros QCN6024/9024/9074 PCI ID, they all are compatible and > use the same ID. > > Signed-off-by: Robert Marko Hi, can you send a v2 with the iwinfo from the title dropped? Something like [iwinfo PATCH] devices: ...

Re: [PATCH 1/8] base-files: Remove nand.sh dependency from emmc upgrade

2023-01-06 Thread Christian Marangi
On Wed, Jan 04, 2023 at 06:26:28PM -0800, Brian Norris wrote: > Hi Christian, > > On Wed, Jan 04, 2023 at 01:40:57PM +0100, Christian Marangi wrote: > > On Mon, Jan 02, 2023 at 03:25:27PM -0800, Brian Norris wrote: > > > --- a/package/base-files/files/lib/upgrade/commo

Re: [PATCH 7/8] ath10k-ct: Support qcom,ath10k-calibration-data-base64

2023-01-05 Thread Christian Marangi
On Thu, Jan 05, 2023 at 02:03:24PM -0800, Brian Norris wrote: > In case you are open to giving more helpful tips to a relative > newcomer to openwrt development: > > On Thu, Jan 5, 2023 at 11:59 AM Brian Norris > wrote: > > I'll just need to > > force a 'base64' utility into these images > > Thi

Re: [RFC PATCH 0/2] toolchain: build all user space with sanitizer on glibc

2023-01-04 Thread Christian Marangi
On Sun, Jan 17, 2021 at 06:10:34PM +0100, Hauke Mehrtens wrote: > This patch allows to build most the OpenWrt user space with address and > undefined behavior sanitizer activated by default. > This only works with glibc and gcc 10 and I only tested this on x86 64 > so far. It is not intended to a

  1   2   >