All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] doc: pytest: Complete dependencies list with missing packages
@ 2025-10-22 13:20 Kory Maincent
  2025-10-22 15:22 ` Mattijs Korpershoek
  0 siblings, 1 reply; 5+ messages in thread
From: Kory Maincent @ 2025-10-22 13:20 UTC (permalink / raw)
  To: u-boot
  Cc: Bajjuri Praneeth, Kory Maincent (TI.com), thomas.petazzoni,
	Tom Rini, Simon Glass, Heinrich Schuchardt, Mattijs Korpershoek,
	Jerome Forissier

From: "Kory Maincent (TI.com)" <kory.maincent@bootlin.com>

Add missing dependencies to the pytest usage documentation and correct
the device tree compiler package name from 'dtc' to 'device-tree-compiler'.

This ensures users have the complete list of dependencies needed to run
the pytest test suite without errors.

Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
---
 doc/develop/pytest/usage.rst | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst
index 779b2dbe24b..454877837ca 100644
--- a/doc/develop/pytest/usage.rst
+++ b/doc/develop/pytest/usage.rst
@@ -39,7 +39,7 @@ will be required. The following is an incomplete list:
 
 * gdisk
 * dfu-util
-* dtc
+* device-tree-compiler
 * openssl
 * e2fsprogs
 * util-linux
@@ -50,6 +50,11 @@ will be required. The following is an incomplete list:
 * mtools
 * sbsigntool
 * udisks2
+* swig
+* cgpt
+* libgnutls28-dev
+* vboot-kernel-utils
+* fdisk
 
 Please use the appropriate commands for your distribution to match these tools
 up with the package that provides them.
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] doc: pytest: Complete dependencies list with missing packages
  2025-10-22 13:20 [PATCH] doc: pytest: Complete dependencies list with missing packages Kory Maincent
@ 2025-10-22 15:22 ` Mattijs Korpershoek
  2025-10-22 16:04   ` Kory Maincent
  0 siblings, 1 reply; 5+ messages in thread
From: Mattijs Korpershoek @ 2025-10-22 15:22 UTC (permalink / raw)
  To: Kory Maincent, u-boot
  Cc: Bajjuri Praneeth, Kory Maincent (TI.com), thomas.petazzoni,
	Tom Rini, Simon Glass, Heinrich Schuchardt, Mattijs Korpershoek,
	Jerome Forissier

Hi Kory,

Thank you for the patch.

On Wed, Oct 22, 2025 at 15:20, Kory Maincent <kory.maincent@bootlin.com> wrote:

> From: "Kory Maincent (TI.com)" <kory.maincent@bootlin.com>
>
> Add missing dependencies to the pytest usage documentation and correct
> the device tree compiler package name from 'dtc' to 'device-tree-compiler'.
>
> This ensures users have the complete list of dependencies needed to run
> the pytest test suite without errors.
>
> Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
> ---
>  doc/develop/pytest/usage.rst | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst
> index 779b2dbe24b..454877837ca 100644
> --- a/doc/develop/pytest/usage.rst
> +++ b/doc/develop/pytest/usage.rst
> @@ -39,7 +39,7 @@ will be required. The following is an incomplete list:

If the list is now complete (as per your commit message), should we
update this sentence as well to remove "incomplete" ?

>  
>  * gdisk
>  * dfu-util
> -* dtc
> +* device-tree-compiler
>  * openssl
>  * e2fsprogs
>  * util-linux
> @@ -50,6 +50,11 @@ will be required. The following is an incomplete list:
>  * mtools
>  * sbsigntool
>  * udisks2
> +* swig
> +* cgpt
> +* libgnutls28-dev
> +* vboot-kernel-utils
> +* fdisk
>  
>  Please use the appropriate commands for your distribution to match these tools
>  up with the package that provides them.
> -- 
> 2.43.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] doc: pytest: Complete dependencies list with missing packages
  2025-10-22 15:22 ` Mattijs Korpershoek
@ 2025-10-22 16:04   ` Kory Maincent
  2025-10-23  7:24     ` Mattijs Korpershoek
  0 siblings, 1 reply; 5+ messages in thread
From: Kory Maincent @ 2025-10-22 16:04 UTC (permalink / raw)
  To: Mattijs Korpershoek
  Cc: u-boot, Bajjuri Praneeth, thomas.petazzoni, Tom Rini, Simon Glass,
	Heinrich Schuchardt, Jerome Forissier

On Wed, 22 Oct 2025 17:22:38 +0200
Mattijs Korpershoek <mkorpershoek@kernel.org> wrote:

> Hi Kory,
> 
> Thank you for the patch.
> 
> On Wed, Oct 22, 2025 at 15:20, Kory Maincent <kory.maincent@bootlin.com>
> wrote:
> 
> > From: "Kory Maincent (TI.com)" <kory.maincent@bootlin.com>
> >
> > Add missing dependencies to the pytest usage documentation and correct
> > the device tree compiler package name from 'dtc' to 'device-tree-compiler'.
> >
> > This ensures users have the complete list of dependencies needed to run
> > the pytest test suite without errors.
> >
> > Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
> > ---
> >  doc/develop/pytest/usage.rst | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst
> > index 779b2dbe24b..454877837ca 100644
> > --- a/doc/develop/pytest/usage.rst
> > +++ b/doc/develop/pytest/usage.rst
> > @@ -39,7 +39,7 @@ will be required. The following is an incomplete list:  
> 
> If the list is now complete (as per your commit message), should we
> update this sentence as well to remove "incomplete" ?

Indeed I think we can. Do you want a v2 with this update? 

Regards,
-- 
Köry Maincent, Bootlin
Embedded Linux and kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] doc: pytest: Complete dependencies list with missing packages
  2025-10-22 16:04   ` Kory Maincent
@ 2025-10-23  7:24     ` Mattijs Korpershoek
  2025-10-23  7:34       ` Heinrich Schuchardt
  0 siblings, 1 reply; 5+ messages in thread
From: Mattijs Korpershoek @ 2025-10-23  7:24 UTC (permalink / raw)
  To: Kory Maincent, Mattijs Korpershoek
  Cc: u-boot, Bajjuri Praneeth, thomas.petazzoni, Tom Rini, Simon Glass,
	Heinrich Schuchardt, Jerome Forissier

On Wed, Oct 22, 2025 at 18:04, Kory Maincent <kory.maincent@bootlin.com> wrote:

> On Wed, 22 Oct 2025 17:22:38 +0200
> Mattijs Korpershoek <mkorpershoek@kernel.org> wrote:
>
>> Hi Kory,
>> 
>> Thank you for the patch.
>> 
>> On Wed, Oct 22, 2025 at 15:20, Kory Maincent <kory.maincent@bootlin.com>
>> wrote:
>> 
>> > From: "Kory Maincent (TI.com)" <kory.maincent@bootlin.com>
>> >
>> > Add missing dependencies to the pytest usage documentation and correct
>> > the device tree compiler package name from 'dtc' to 'device-tree-compiler'.
>> >
>> > This ensures users have the complete list of dependencies needed to run
>> > the pytest test suite without errors.
>> >
>> > Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
>> > ---
>> >  doc/develop/pytest/usage.rst | 7 ++++++-
>> >  1 file changed, 6 insertions(+), 1 deletion(-)
>> >
>> > diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst
>> > index 779b2dbe24b..454877837ca 100644
>> > --- a/doc/develop/pytest/usage.rst
>> > +++ b/doc/develop/pytest/usage.rst
>> > @@ -39,7 +39,7 @@ will be required. The following is an incomplete list:  
>> 
>> If the list is now complete (as per your commit message), should we
>> update this sentence as well to remove "incomplete" ?
>
> Indeed I think we can. Do you want a v2 with this update? 

I think Heinrich will be the one picking this up so I'll let him chime
in.

If you do make a v2, please add:

Reviewed-by: Mattijs Korpershoek <mkorpershoek@kernel.org>

>
> Regards,
> -- 
> Köry Maincent, Bootlin
> Embedded Linux and kernel engineering
> https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] doc: pytest: Complete dependencies list with missing packages
  2025-10-23  7:24     ` Mattijs Korpershoek
@ 2025-10-23  7:34       ` Heinrich Schuchardt
  0 siblings, 0 replies; 5+ messages in thread
From: Heinrich Schuchardt @ 2025-10-23  7:34 UTC (permalink / raw)
  To: Kory Maincent
  Cc: u-boot, Bajjuri Praneeth, thomas.petazzoni, Tom Rini, Simon Glass,
	Mattijs Korpershoek, Jerome Forissier

On 10/23/25 08:24, Mattijs Korpershoek wrote:
> On Wed, Oct 22, 2025 at 18:04, Kory Maincent <kory.maincent@bootlin.com> wrote:
> 
>> On Wed, 22 Oct 2025 17:22:38 +0200
>> Mattijs Korpershoek <mkorpershoek@kernel.org> wrote:
>>
>>> Hi Kory,
>>>
>>> Thank you for the patch.
>>>
>>> On Wed, Oct 22, 2025 at 15:20, Kory Maincent <kory.maincent@bootlin.com>
>>> wrote:
>>>
>>>> From: "Kory Maincent (TI.com)" <kory.maincent@bootlin.com>
>>>>
>>>> Add missing dependencies to the pytest usage documentation and correct
>>>> the device tree compiler package name from 'dtc' to 'device-tree-compiler'.
>>>>
>>>> This ensures users have the complete list of dependencies needed to run
>>>> the pytest test suite without errors.
>>>>
>>>> Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
>>>> ---
>>>>   doc/develop/pytest/usage.rst | 7 ++++++-
>>>>   1 file changed, 6 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst
>>>> index 779b2dbe24b..454877837ca 100644
>>>> --- a/doc/develop/pytest/usage.rst
>>>> +++ b/doc/develop/pytest/usage.rst
>>>> @@ -39,7 +39,7 @@ will be required. The following is an incomplete list:
>>>
>>> If the list is now complete (as per your commit message), should we
>>> update this sentence as well to remove "incomplete" ?
>>
>> Indeed I think we can. Do you want a v2 with this update?
> 
> I think Heinrich will be the one picking this up so I'll let him chime
> in.
> 
> If you do make a v2, please add:
> 
> Reviewed-by: Mattijs Korpershoek <mkorpershoek@kernel.org>

Hello Kory,

Thank you for reworking this page. Yes, if the sentence is now 
superfluous, please, send a v2 of the patch and CC me.

Best regards

Heinrich

> 
>>
>> Regards,
>> -- 
>> Köry Maincent, Bootlin
>> Embedded Linux and kernel engineering
>> https://bootlin.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-10-23  7:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22 13:20 [PATCH] doc: pytest: Complete dependencies list with missing packages Kory Maincent
2025-10-22 15:22 ` Mattijs Korpershoek
2025-10-22 16:04   ` Kory Maincent
2025-10-23  7:24     ` Mattijs Korpershoek
2025-10-23  7:34       ` Heinrich Schuchardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.