* [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
@ 2025-03-28 15:15 Daniel Lezcano
2025-03-29 1:37 ` Rob Herring (Arm)
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Daniel Lezcano @ 2025-03-28 15:15 UTC (permalink / raw)
To: wim
Cc: linux, linux-watchdog, linux-kernel, daniel.lezcano, S32,
Ghennadi Procopciuc, Thomas Fossati, Rob Herring,
Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
Describe the Software Watchdog Timer available on the S32G platforms.
Cc: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
Cc: Thomas Fossati <thomas.fossati@linaro.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
.../bindings/watchdog/nxp,s32g-wdt.yaml | 46 +++++++++++++++++++
1 file changed, 46 insertions(+)
create mode 100644 Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
diff --git a/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml b/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
new file mode 100644
index 000000000000..06ead743d5c1
--- /dev/null
+++ b/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
@@ -0,0 +1,46 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/watchdog/nxp,s32g-wdt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: NXP Software Watchdog Timer
+
+maintainers:
+ - Daniel Lezcano <daniel.lezcano@kernel.org>
+
+description:
+ The System Timer Module supports commonly required system and
+ application software timing functions. STM includes a 32-bit
+ count-up timer and four 32-bit compare channels with a separate
+ interrupt source for each channel. The timer is driven by the STM
+
+allOf:
+ - $ref: watchdog.yaml#
+
+properties:
+ compatible:
+ enum:
+ - nxp,s32g-wdt
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - clocks
+
+additionalProperties: false
+
+examples:
+ - |
+ watchdog@0x40100000 {
+ compatible = "nxp,s32g-wdt";
+ reg = <0x40100000 0x1000>;
+ clocks = <&clks 0x3a>;
+ timeout-sec = <10>;
+ };
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-28 15:15 [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer Daniel Lezcano
@ 2025-03-29 1:37 ` Rob Herring (Arm)
2025-03-29 17:12 ` Rob Herring
2025-03-29 5:04 ` Krzysztof Kozlowski
2025-03-31 10:55 ` Ghennadi Procopciuc
2 siblings, 1 reply; 10+ messages in thread
From: Rob Herring (Arm) @ 2025-03-29 1:37 UTC (permalink / raw)
To: Daniel Lezcano
Cc: Ghennadi Procopciuc, linux, Thomas Fossati, linux-watchdog,
Conor Dooley, wim, S32, Krzysztof Kozlowski, linux-kernel,
devicetree
On Fri, 28 Mar 2025 16:15:13 +0100, Daniel Lezcano wrote:
> Describe the Software Watchdog Timer available on the S32G platforms.
>
> Cc: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
> Cc: Thomas Fossati <thomas.fossati@linaro.org>
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> ---
> .../bindings/watchdog/nxp,s32g-wdt.yaml | 46 +++++++++++++++++++
> 1 file changed, 46 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dts:18.29-23.11: Warning (unit_address_format): /example-0/watchdog@0x40100000: unit name should not have leading "0x"
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dtb: watchdog@0x40100000: 'timeout-sec' does not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/watchdog/nxp,s32g-wdt.yaml#
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20250328151516.2219971-1-daniel.lezcano@linaro.org
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-28 15:15 [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer Daniel Lezcano
2025-03-29 1:37 ` Rob Herring (Arm)
@ 2025-03-29 5:04 ` Krzysztof Kozlowski
2025-03-31 7:57 ` Daniel Lezcano
2025-03-31 10:55 ` Ghennadi Procopciuc
2 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2025-03-29 5:04 UTC (permalink / raw)
To: Daniel Lezcano, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 28/03/2025 16:15, Daniel Lezcano wrote:
> +description:
> + The System Timer Module supports commonly required system and
> + application software timing functions. STM includes a 32-bit
> + count-up timer and four 32-bit compare channels with a separate
> + interrupt source for each channel. The timer is driven by the STM
> +
> +allOf:
> + - $ref: watchdog.yaml#
> +
> +properties:
> + compatible:
> + enum:
> + - nxp,s32g-wdt
This wasn't tested, so limited review - this also has wrong compatible,
There is no such soc as s32g in the kernel. If that's a new soc, come
with proper top-level bindings and some explanation, because I am sure
previously we talked with NXP that this is not s32g but something else.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-29 1:37 ` Rob Herring (Arm)
@ 2025-03-29 17:12 ` Rob Herring
2025-03-31 8:18 ` Daniel Lezcano
0 siblings, 1 reply; 10+ messages in thread
From: Rob Herring @ 2025-03-29 17:12 UTC (permalink / raw)
To: Daniel Lezcano
Cc: Ghennadi Procopciuc, linux, Thomas Fossati, linux-watchdog,
Conor Dooley, wim, S32, Krzysztof Kozlowski, linux-kernel,
devicetree
On Fri, Mar 28, 2025 at 08:37:03PM -0500, Rob Herring (Arm) wrote:
>
> On Fri, 28 Mar 2025 16:15:13 +0100, Daniel Lezcano wrote:
> > Describe the Software Watchdog Timer available on the S32G platforms.
> >
> > Cc: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
> > Cc: Thomas Fossati <thomas.fossati@linaro.org>
> > Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> > ---
> > .../bindings/watchdog/nxp,s32g-wdt.yaml | 46 +++++++++++++++++++
> > 1 file changed, 46 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
> >
>
> My bot found errors running 'make dt_binding_check' on your patch:
>
> yamllint warnings/errors:
>
> dtschema/dtc warnings/errors:
> Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dts:18.29-23.11: Warning (unit_address_format): /example-0/watchdog@0x40100000: unit name should not have leading "0x"
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dtb: watchdog@0x40100000: 'timeout-sec' does not match any of the regexes: 'pinctrl-[0-9]+'
> from schema $id: http://devicetree.org/schemas/watchdog/nxp,s32g-wdt.yaml#
You need unevaluatedProperties instead of additionalProperties.
Rob
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-29 5:04 ` Krzysztof Kozlowski
@ 2025-03-31 7:57 ` Daniel Lezcano
2025-03-31 11:42 ` Krzysztof Kozlowski
0 siblings, 1 reply; 10+ messages in thread
From: Daniel Lezcano @ 2025-03-31 7:57 UTC (permalink / raw)
To: Krzysztof Kozlowski, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 29/03/2025 06:04, Krzysztof Kozlowski wrote:
> On 28/03/2025 16:15, Daniel Lezcano wrote:
>> +description:
>> + The System Timer Module supports commonly required system and
>> + application software timing functions. STM includes a 32-bit
>> + count-up timer and four 32-bit compare channels with a separate
>> + interrupt source for each channel. The timer is driven by the STM
>> +
>> +allOf:
>> + - $ref: watchdog.yaml#
>> +
>> +properties:
>> + compatible:
>> + enum:
>> + - nxp,s32g-wdt
> This wasn't tested, so limited review - this also has wrong compatible,
> There is no such soc as s32g in the kernel. If that's a new soc, come
> with proper top-level bindings and some explanation, because I am sure
> previously we talked with NXP that this is not s32g but something else.
If I refer to Documentation/devicetree/bindings/arm/fsl.yaml
We found the entries:
- description: S32G2 based Boards
items:
- enum:
- nxp,s32g274a-evb
- nxp,s32g274a-rdb2
- const: nxp,s32g2
- description: S32G3 based Boards
items:
- enum:
- nxp,s32g399a-rdb3
- const: nxp,s32g3
I guess it should nxp,s32g2-wdt and nxp,s32g3-wdt
Right ?
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-29 17:12 ` Rob Herring
@ 2025-03-31 8:18 ` Daniel Lezcano
0 siblings, 0 replies; 10+ messages in thread
From: Daniel Lezcano @ 2025-03-31 8:18 UTC (permalink / raw)
To: Rob Herring
Cc: Ghennadi Procopciuc, linux, Thomas Fossati, linux-watchdog,
Conor Dooley, wim, S32, Krzysztof Kozlowski, linux-kernel,
devicetree
On 29/03/2025 18:12, Rob Herring wrote:
> On Fri, Mar 28, 2025 at 08:37:03PM -0500, Rob Herring (Arm) wrote:
>>
>> On Fri, 28 Mar 2025 16:15:13 +0100, Daniel Lezcano wrote:
>>> Describe the Software Watchdog Timer available on the S32G platforms.
>>>
>>> Cc: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
>>> Cc: Thomas Fossati <thomas.fossati@linaro.org>
>>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>>> ---
>>> .../bindings/watchdog/nxp,s32g-wdt.yaml | 46 +++++++++++++++++++
>>> 1 file changed, 46 insertions(+)
>>> create mode 100644 Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
>>>
>>
>> My bot found errors running 'make dt_binding_check' on your patch:
>>
>> yamllint warnings/errors:
>>
>> dtschema/dtc warnings/errors:
>> Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dts:18.29-23.11: Warning (unit_address_format): /example-0/watchdog@0x40100000: unit name should not have leading "0x"
>> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.example.dtb: watchdog@0x40100000: 'timeout-sec' does not match any of the regexes: 'pinctrl-[0-9]+'
>> from schema $id: http://devicetree.org/schemas/watchdog/nxp,s32g-wdt.yaml#
>
> You need unevaluatedProperties instead of additionalProperties.
Thanks!
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-28 15:15 [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer Daniel Lezcano
2025-03-29 1:37 ` Rob Herring (Arm)
2025-03-29 5:04 ` Krzysztof Kozlowski
@ 2025-03-31 10:55 ` Ghennadi Procopciuc
2 siblings, 0 replies; 10+ messages in thread
From: Ghennadi Procopciuc @ 2025-03-31 10:55 UTC (permalink / raw)
To: Daniel Lezcano, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 3/28/2025 5:15 PM, Daniel Lezcano wrote:
> Describe the Software Watchdog Timer available on the S32G platforms.
>
> Cc: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
> Cc: Thomas Fossati <thomas.fossati@linaro.org>
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> ---
> .../bindings/watchdog/nxp,s32g-wdt.yaml | 46 +++++++++++++++++++
> 1 file changed, 46 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
>
> diff --git a/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml b/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
> new file mode 100644
> index 000000000000..06ead743d5c1
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/watchdog/nxp,s32g-wdt.yaml
> @@ -0,0 +1,46 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/watchdog/nxp,s32g-wdt.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: NXP Software Watchdog Timer
> +
> +maintainers:
> + - Daniel Lezcano <daniel.lezcano@kernel.org>
> +
> +description:
> + The System Timer Module supports commonly required system and
> + application software timing functions. STM includes a 32-bit
> + count-up timer and four 32-bit compare channels with a separate
> + interrupt source for each channel. The timer is driven by the STM
> +
Please update the description, as this one refers to STM instead of SWT.
--
Regards,
Ghennadi
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-31 7:57 ` Daniel Lezcano
@ 2025-03-31 11:42 ` Krzysztof Kozlowski
2025-04-01 8:46 ` Daniel Lezcano
0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2025-03-31 11:42 UTC (permalink / raw)
To: Daniel Lezcano, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 31/03/2025 09:57, Daniel Lezcano wrote:
> On 29/03/2025 06:04, Krzysztof Kozlowski wrote:
>> On 28/03/2025 16:15, Daniel Lezcano wrote:
>>> +description:
>>> + The System Timer Module supports commonly required system and
>>> + application software timing functions. STM includes a 32-bit
>>> + count-up timer and four 32-bit compare channels with a separate
>>> + interrupt source for each channel. The timer is driven by the STM
>>> +
>>> +allOf:
>>> + - $ref: watchdog.yaml#
>>> +
>>> +properties:
>>> + compatible:
>>> + enum:
>>> + - nxp,s32g-wdt
>> This wasn't tested, so limited review - this also has wrong compatible,
>> There is no such soc as s32g in the kernel. If that's a new soc, come
>> with proper top-level bindings and some explanation, because I am sure
>> previously we talked with NXP that this is not s32g but something else.
>
> If I refer to Documentation/devicetree/bindings/arm/fsl.yaml
>
> We found the entries:
>
> - description: S32G2 based Boards
> items:
> - enum:
> - nxp,s32g274a-evb
> - nxp,s32g274a-rdb2
> - const: nxp,s32g2
>
> - description: S32G3 based Boards
> items:
> - enum:
> - nxp,s32g399a-rdb3
> - const: nxp,s32g3
>
> I guess it should nxp,s32g2-wdt and nxp,s32g3-wdt
>
Yes, with one being the fallback.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-03-31 11:42 ` Krzysztof Kozlowski
@ 2025-04-01 8:46 ` Daniel Lezcano
2025-04-01 15:16 ` Krzysztof Kozlowski
0 siblings, 1 reply; 10+ messages in thread
From: Daniel Lezcano @ 2025-04-01 8:46 UTC (permalink / raw)
To: Krzysztof Kozlowski, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 31/03/2025 13:42, Krzysztof Kozlowski wrote:
> On 31/03/2025 09:57, Daniel Lezcano wrote:
>> On 29/03/2025 06:04, Krzysztof Kozlowski wrote:
>>> On 28/03/2025 16:15, Daniel Lezcano wrote:
>>>> +description:
>>>> + The System Timer Module supports commonly required system and
>>>> + application software timing functions. STM includes a 32-bit
>>>> + count-up timer and four 32-bit compare channels with a separate
>>>> + interrupt source for each channel. The timer is driven by the STM
>>>> +
>>>> +allOf:
>>>> + - $ref: watchdog.yaml#
>>>> +
>>>> +properties:
>>>> + compatible:
>>>> + enum:
>>>> + - nxp,s32g-wdt
>>> This wasn't tested, so limited review - this also has wrong compatible,
>>> There is no such soc as s32g in the kernel. If that's a new soc, come
>>> with proper top-level bindings and some explanation, because I am sure
>>> previously we talked with NXP that this is not s32g but something else.
>>
>> If I refer to Documentation/devicetree/bindings/arm/fsl.yaml
>>
>> We found the entries:
>>
>> - description: S32G2 based Boards
>> items:
>> - enum:
>> - nxp,s32g274a-evb
>> - nxp,s32g274a-rdb2
>> - const: nxp,s32g2
>>
>> - description: S32G3 based Boards
>> items:
>> - enum:
>> - nxp,s32g399a-rdb3
>> - const: nxp,s32g3
>>
>> I guess it should nxp,s32g2-wdt and nxp,s32g3-wdt
>>
> Yes, with one being the fallback.
Like that ?
properties:
compatible:
oneOf:
- const: nxp,s32g2-wdt
- items:
- const: nxp,s32g3-wdt
- const: nxp,s32g2-wdt
Why a fallback is needed for this case ? It is exactly the same hardware
for s32g2 and s32g3. Could it be:
properties:
compatible:
oneOf:
- const: nxp,s32g2-wdt
- const: nxp,s32g3-wdt
?
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer
2025-04-01 8:46 ` Daniel Lezcano
@ 2025-04-01 15:16 ` Krzysztof Kozlowski
0 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2025-04-01 15:16 UTC (permalink / raw)
To: Daniel Lezcano, wim
Cc: linux, linux-watchdog, linux-kernel, S32, Ghennadi Procopciuc,
Thomas Fossati, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
On 01/04/2025 10:46, Daniel Lezcano wrote:
>> Yes, with one being the fallback.
>
> Like that ?
>
> properties:
> compatible:
> oneOf:
> - const: nxp,s32g2-wdt
> - items:
> - const: nxp,s32g3-wdt
> - const: nxp,s32g2-wdt
Yes
>
> Why a fallback is needed for this case ? It is exactly the same hardware
> for s32g2 and s32g3. Could it be:
Fallback is needed because it is exactly the same hardware.
>
> properties:
> compatible:
> oneOf:
> - const: nxp,s32g2-wdt
> - const: nxp,s32g3-wdt
This tells hardware is different.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-04-01 15:16 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-28 15:15 [PATCH 1/2] dt-bindings: watchdog: Add NXP Software Watchdog Timer Daniel Lezcano
2025-03-29 1:37 ` Rob Herring (Arm)
2025-03-29 17:12 ` Rob Herring
2025-03-31 8:18 ` Daniel Lezcano
2025-03-29 5:04 ` Krzysztof Kozlowski
2025-03-31 7:57 ` Daniel Lezcano
2025-03-31 11:42 ` Krzysztof Kozlowski
2025-04-01 8:46 ` Daniel Lezcano
2025-04-01 15:16 ` Krzysztof Kozlowski
2025-03-31 10:55 ` Ghennadi Procopciuc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).