Aluminum die casting technology

2023-01-09 Thread Aidan Wallace 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 --- Good morning, we provide the tech

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

2023-01-09 Thread Thibaut
> Le 9 janv. 2023 à 04:09, Brian Norris a écrit : > > On Sun, Jan 8, 2023 at 1:37 PM Thibaut wrote: >>> Le 8 janv. 2023 à 21:53, Christian Marangi a écrit : >>> >>> On Sun, Jan 08, 2023 at 09:00:58PM +0100, Petr Štetiar wrote: […] include $(INCLUDE_DIR)/target.mk +

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

2023-01-09 Thread Petr Štetiar
Thibaut [2023-01-08 00:02:06]: > There might be an even easier/lighter way (short of enabling base64 in > busybox), AWK to the rescue: > https://github.com/shane-kerr/AWK-base64decode > > The code is clean and judging by the comment line 97, works with busybox awk. BTW ucode has `b64dec()`[1]

[PATCH] hostapd: add support for unicast beacons

2023-01-09 Thread Raphaël Mélotte
Also refresh patches. Upstream status: https://patchwork.ozlabs.org/project/hostap/patch/20230105200945.761324-1-raphael.melo...@mind.be/ Signed-off-by: Raphaël Mélotte --- .../620-add-support-for-unicast-beacons.patch | 70 +++ .../hostapd/patches/700-wifi-reload.patch | 2

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

2023-01-09 Thread Petr Štetiar
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 feasibility of that suggestion and it seems to work just fine: #!/usr/bin

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

2023-01-09 Thread Christian Marangi
From: Jo-Philipp Wich Some device have embedded wifi card that are not connected with usb or internall with pci. Such device have fake device_id and only the vendor_id actually reflect something real but internally they don't have any id and are just matched by the node compatible binding in DT.

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

2023-01-09 Thread Robert Marko
On Mon, 9 Jan 2023 at 18:29, 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 fake device_id and only the > vendor_id actually reflect something real but internally they don't have

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 fake device_id and only the > > vendor_id

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

2023-01-09 Thread Andre Heider
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 fake device_id and only the vendor_id actually reflect something real but internally they don't have any id and are jus

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

2023-01-09 Thread Daniel Golle
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 fake device_id and only the > > vendor_id

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

2023-01-09 Thread Andre Heider
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 Some device have embedded wifi card that are not connected with usb or internall with pci. Such device have fake devi

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 > > > > > > > > Some device have embedd

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

2023-01-09 Thread Andre Heider
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:34PM +0100, Andre Heider wrote: On 09/01/2023 18:28, Christian Marangi wrote: From: Jo-Philipp Wich Some de

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:34PM +0100, Andre Heider wrote: >

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 Andre Heider
On 09/01/2023 20:17, Christian Marangi wrote: 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:3

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

2023-01-09 Thread Christian Marangi
From: Jo-Philipp Wich Some device have embedded wifi card that are not connected with usb or internall with pci. Such device have fake device_id and only the vendor_id actually reflect something real but internally they don't have any id and are just matched by the node compatible binding in DT.

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

2023-01-09 Thread Brian Norris
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, > > > > > BTW ucode has `b64dec()`[1] so perhaps another viable option. > > > > > > 1. https://github.com/jow-/ucode#663-b

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, > > > > > > > BTW ucode has `b64dec()`[1] so

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

2023-01-09 Thread Brian Norris
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 > > stdin/stdout pipeline) would be pretty easy to inline into the > > caldata/firmware-loader script:

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

2023-01-09 Thread Andre Heider
On 09/01/2023 20:49, 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 fake device_id and only the vendor_id actually reflect something real but internally they don't have any id and are jus

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

2023-01-09 Thread Andre Heider
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 usb or internall with pci. Such device have fake device_id and only the vendor_id actually reflect something real but int

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 usb or > > > internall with pci. Such

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 > > > stdin/stdout pipeline) wou

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 fstools v2] partname: Ignore root=PARTUUID...

2023-01-09 Thread Brian Norris
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 targets > > utilize root=PARTUUID= strategies. At least allow them to fall back > > to scanning all block devic

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 targets > > > utilize root=PARTUUID= stra

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

2023-01-09 Thread Brian Norris
On Mon, Jan 9, 2023 at 3:20 PM Christian Marangi wrote: > 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= argum