Re: Status of snapshot builds for omap target

2024-04-02 Thread INAGAKI Hiroshi
Hi Raylynn, omap target was disabled due to the VLAN issue on using cpsw-switch driver. see details: https://github.com/openwrt/openwrt/issues/11953 On 2024/04/02 13:52, Raylynn Knight via openwrt-devel wrote: The sender domain has a DMARC Reject/Quarantine policy which disallows sending

Faktoring

2024-04-02 Thread Urszula Wasiak 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 --- Dzień dobry, rozważali Państwo

Re: Definition for flash w25q128 is wrong

2024-04-02 Thread Robert Marko
On Mon, 1 Apr 2024 at 15:00, e9hack wrote: > > Am 01.04.2024 um 11:54 schrieb Robert Marko: > > On Mon, 1 Apr 2024 at 11:25, e9hack wrote: > >> > >> Am 01.04.2024 um 11:06 schrieb Robert Marko: > >>> On Mon, 1 Apr 2024 at 10:32, e9hack wrote: > > Am 01.04.2024 um 10:14 schrieb Robert

[PATCH 2/5] dnsmasq: add handling of `cache-rr` to init script

2024-04-02 Thread Paul Donald
dnsmasq v2.90 introduced `--cache-rr=[,...]`. uci config usage: config dnsmasq ... option cache_rr ',CNAME,NXDOMAIN,SRV,...' The dnsmasq instance internally builds a linked list of RR to cache from the individually supplied parameters, so it's allowed to provide multiples: ...

[PATCH 4/5] dnsmasq: quoted path variables

2024-04-02 Thread Paul Donald
Prevents problems when variables contain spaces. Tested on: 23.05.3 Signed-off-by: Paul Donald --- .../services/dnsmasq/files/dnsmasq.init | 32 +-- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init

[PATCH 1/5] dnsmasq: add handling of `filter-rr` to init script

2024-04-02 Thread Paul Donald
dnsmasq v2.90 introduced `--filter-rr=[,...]`. uci config usage: config dnsmasq ... option filter_rr ',CNAME,NXDOMAIN,SRV,...' The dnsmasq instance internally builds a linked list of RR to filter from the individually supplied parameters, so it's harmless to provide synonyms: ...

[PATCH 3/5] dnsmasq: add 'extraconftext' parameter

2024-04-02 Thread Paul Donald
Users can now freely add new dnsmasq parameters (i.e. a whole config) via extraconf. This means users can add their own parameters without changes to init or GUI. Co-opted the default of confdir also to include the instance name. This way each instance gets its own .d directory (and separate

[PATCH 5/5] dnsmasq: add handling of `dns-rr` to init script (add arbitrary resource records)

2024-04-02 Thread Paul Donald
Add support for handling of DNS RR (Resource Records) requests, which are needed for the HTTPS Type 65 records, introduced to support the DNS-based Service Discovery (DNS-SD) mechanism for HTTPS services and defined in the RFC 9460 (9.1. Query Names for HTTPS RRs). Ref:

[PATCH] base-files: reduce IPv6 ULA prefix generation to a single call

2024-04-02 Thread Paul Donald
Tested on: 23.05.3 Signed-off-by: Paul Donald --- .../files/etc/uci-defaults/12_network-generate-ula | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/package/base-files/files/etc/uci-defaults/12_network-generate-ula

Re: Status of snapshot builds for omap target

2024-04-02 Thread Alexander 'lynxis' Couzens
Hi Raylynn, I've it on my list to test it again on the beagleboard black and re-enable it if it works with the older ethernet driver which doesn't have the hardcoded VLAN tags. Best, lynxis ___ openwrt-devel mailing list

Re: padding of large 16-32GB images [Was: Re: [PATCH 2/5] build: image: Add pad-to and pad-rootfs-squashfs helpers]

2024-04-02 Thread Nishant Sharma
Hi Petr, On 01/04/24 15:58, Petr Štetiar wrote: dd: memory exhausted by input buffer of size 16642998272 bytes (16 GiB) can you check https://patchwork.ozlabs.org/project/openwrt/patch/20240401102511.495791-1-yn...@true.cz/ ? Thanks! Thanks a lot for the fix. I tested it by building a

[PATCH 5/7] lldpd: make capabilities advertisement controllable

2024-04-02 Thread Paul Donald
Defaults to off. Only available from >= 1.0.15 These capabilities are sent in TLV. Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 7 +++ 1 file changed, 7 insertions(+) diff --git a/package/network/services/lldpd/files/lldpd.init

[PATCH 2/7] lldpd: get_config_cid_ifaces() -> get_interface_csv_pattern()

2024-04-02 Thread Paul Donald
Make the function more generic. Can use it for not only 'config'. Now it can be used to parse interfaces for additional lldpd settings Tested on: 22.03.6 Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 8 1 file changed, 4 insertions(+), 4

[PATCH 7/7] lldpd: bump version

2024-04-02 Thread Paul Donald
3 -> 4 Signed-off-by: Paul Donald --- package/network/services/lldpd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/lldpd/Makefile b/package/network/services/lldpd/Makefile index 18cdda33ce..5a9a9732d2 100644 ---

[PATCH 1/7] lldpd: fixed interface(s) parsing

2024-04-02 Thread Paul Donald
For interface type parameters, the man page documents patterns: ``` *,!eth*,!!eth1 uses all interfaces, except interfaces starting with "eth", but including "eth1". ``` While we must check that interfaces exist, first strip any prefixed "!" then pass the original string (with `!` prefix) again,

[PATCH 4/7] lldpd: note about capabilities

2024-04-02 Thread Paul Donald
only available from >= 1.0.15 Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 1 + 1 file changed, 1 insertion(+) diff --git a/package/network/services/lldpd/files/lldpd.init b/package/network/services/lldpd/files/lldpd.init index 0334156fee..284c37c2ef 100644

[PATCH 6/7] lldpd: make management address advertisement controllable

2024-04-02 Thread Paul Donald
Defaults to off. Available from >= 0.7.15 These are sent in TLV Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 6 ++ 1 file changed, 6 insertions(+) diff --git a/package/network/services/lldpd/files/lldpd.init

[PATCH 3/7] lldpd: fix restart

2024-04-02 Thread Paul Donald
redirection broke in 5364fe0f01ca11b47c55d78f756d3176748dd0c2 redirects to /dev/null shall be handled correctly (i.e. last). This fixes these errors on `/etc/init.d/lldpd reload`: 2024-03-16T20:39:00 [WARN/lldpctl] unknown command from argument 1: `/dev/null` 2024-03-16T20:39:00 [WARN/lldpctl]

Re: [PATCH] base-files: reduce IPv6 ULA prefix generation to a single call

2024-04-02 Thread Elliott Mitchell
On Tue, Apr 02, 2024 at 02:36:36PM +0200, Paul Donald wrote: > Tested on: 23.05.3 > > Signed-off-by: Paul Donald > --- > .../files/etc/uci-defaults/12_network-generate-ula | 6 ++ > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git >

Re: [PATCH 3/7] lldpd: fix restart

2024-04-02 Thread Jo-Philipp Wich
Hi, redirection broke in 5364fe0f01ca11b47c55d78f756d3176748dd0c2 why did this slip through in the first place? Seems that neither the submitter (you) nor the comitter actually runtime tested those changes described as " No functionality/behaviour changes; code is synonymous". ~ Jo

Re: [PATCH] base-files: reduce IPv6 ULA prefix generation to a single call

2024-04-02 Thread Paul D
On 2024-04-02 23:00, Elliott Mitchell wrote: > Second, appears the ${parameter:offset:length} may not be POSIX. I > dislike this, but do not object since OpenWRT's shell is built with this > functionality enabled. UUOC! Ha. Yes, there are a few non POSIXy things in openwrt ash. A number of

Re: [PATCH 4/7] lldpd: note about capabilities

2024-04-02 Thread Jo-Philipp Wich
Hi, What's the purpose of this isolated comment? Either we're shipping version >= v1.0.15 so this code is guaranteed to work or we don't, in which case the code should not be there. We're not putting such comments next to all other option handling code either. ~ Jo

Re: [PATCH 5/7] lldpd: make capabilities advertisement controllable

2024-04-02 Thread Jo-Philipp Wich
Hi, comment below. Am 4/2/24 um 15:02 schrieb Paul Donald: Defaults to off. Only available from >= 1.0.15 These capabilities are sent in TLV. Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 7 +++ 1 file changed, 7 insertions(+) diff --git

Re: [PATCH 1/7] lldpd: fixed interface(s) parsing

2024-04-02 Thread Jo-Philipp Wich
Hi, For interface type parameters, the man page documents patterns: ``` *,!eth*,!!eth1 uses all interfaces, except interfaces starting with "eth", but including "eth1". ``` at some point, uci configuration was meant to provide a somewhat sane config abstraction over various damon specific

Re: [PATCH 6/7] lldpd: make management address advertisement controllable

2024-04-02 Thread Jo-Philipp Wich
Hi, comment below. Am 4/2/24 um 15:02 schrieb Paul Donald: Defaults to off. Available from >= 0.7.15 These are sent in TLV Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 6 ++ 1 file changed, 6 insertions(+) diff --git

Re: [PATCH 6/7] lldpd: make management address advertisement controllable

2024-04-02 Thread Jo-Philipp Wich
Hi, comment below. Am 4/2/24 um 15:02 schrieb Paul Donald: Defaults to off. Available from >= 0.7.15 These are sent in TLV Signed-off-by: Paul Donald --- package/network/services/lldpd/files/lldpd.init | 6 ++ 1 file changed, 6 insertions(+) diff --git

Re: [PATCH] base-files: reduce IPv6 ULA prefix generation to a single call

2024-04-02 Thread Elliott Mitchell
On Wed, Apr 03, 2024 at 12:50:50AM +0200, Paul D wrote: > On 2024-04-02 23:00, Elliott Mitchell wrote: > > Second, appears the ${parameter:offset:length} may not be POSIX. I > > dislike this, but do not object since OpenWRT's shell is built with this > > functionality enabled. > > > UUOC! Ha.

Re: Conclusions from CVE-2024-3094 (libxz disaster)

2024-04-02 Thread Daniel Golle
On Mon, Apr 01, 2024 at 02:49:46PM +0200, Petr Štetiar wrote: > Daniel Golle [2024-03-30 15:30:49]: > > Hi, > > > In many ways, we are already better > > I would probably avoid such bold statements and would be more humble, since > you never know why OpenWrt wasn't directly targeted. We are