All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable
@ 2021-10-19 17:04 Peter Kjellerstedt
  2021-10-20 15:45 ` [docs] " Michael Opdenacker
       [not found] ` <16AFC7A64FAFF929.12113@lists.yoctoproject.org>
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Kjellerstedt @ 2021-10-19 17:04 UTC (permalink / raw)
  To: docs

EXTERNALSRC_EXTENSIONS is used to specify additional classes to inherit
when externalsrc is inherited.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---

This of course assumes that the corresponding change to OE-Core is
accepted.

 documentation/ref-manual/variables.rst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 85f65cae35..8e7321fa20 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -2175,6 +2175,12 @@ system and gives an overview of their function and contents.
       ":ref:`dev-manual/common-tasks:building software from an external source`"
       section in the Yocto Project Development Tasks Manual.
 
+   :term:`EXTERNALSRC_EXTENSIONS`
+      When inheriting the :ref:`externalsrc <ref-classes-externalsrc>`
+      class, this variable contains a list of additional classes that will
+      also be inherited. This allows for extending the externalsrc
+      functionality when it is active.
+
    :term:`EXTRA_AUTORECONF`
       For recipes inheriting the :ref:`autotools <ref-classes-autotools>`
       class, you can use :term:`EXTRA_AUTORECONF` to specify extra options to


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

* Re: [docs] [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable
  2021-10-19 17:04 [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable Peter Kjellerstedt
@ 2021-10-20 15:45 ` Michael Opdenacker
       [not found] ` <16AFC7A64FAFF929.12113@lists.yoctoproject.org>
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Opdenacker @ 2021-10-20 15:45 UTC (permalink / raw)
  To: Peter Kjellerstedt, docs

Hi Peter,

Thanks for the documentation patch!

On 10/19/21 7:04 PM, Peter Kjellerstedt wrote:
> EXTERNALSRC_EXTENSIONS is used to specify additional classes to inherit
> when externalsrc is inherited.
>
> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>

Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Waiting for your patch to be accepted in OE-core before merging in
master-next.

Cheers
Michael.

-- 
Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

* Re: [docs] [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable
       [not found] ` <16AFC7A64FAFF929.12113@lists.yoctoproject.org>
@ 2021-11-05 16:20   ` Michael Opdenacker
  2021-11-05 17:05     ` Peter Kjellerstedt
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Opdenacker @ 2021-11-05 16:20 UTC (permalink / raw)
  To: Peter Kjellerstedt, docs

Hi Peter

On 10/20/21 5:45 PM, Michael Opdenacker wrote:
> Hi Peter,
>
> Thanks for the documentation patch!
>
> On 10/19/21 7:04 PM, Peter Kjellerstedt wrote:
>> EXTERNALSRC_EXTENSIONS is used to specify additional classes to inherit
>> when externalsrc is inherited.
>>
>> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
> Waiting for your patch to be accepted in OE-core before merging in
> master-next.


Apparently, your code hasn't been merged yet, and following the
discussions on OE-core, I'm not sure what to expect.
Would you mind sending me the patch again when something happens?
Thanks for everything
Michael.

-- 
Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

* RE: [docs] [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable
  2021-11-05 16:20   ` Michael Opdenacker
@ 2021-11-05 17:05     ` Peter Kjellerstedt
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Kjellerstedt @ 2021-11-05 17:05 UTC (permalink / raw)
  To: Michael Opdenacker, docs

> -----Original Message-----
> From: Michael Opdenacker <michael.opdenacker@bootlin.com>
> Sent: den 5 november 2021 17:20
> To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>;
> docs@lists.yoctoproject.org
> Subject: Re: [docs] [PATCH] ref-manual: Document the
> EXTERNALSRC_EXTENSIONS variable
> 
> Hi Peter
> 
> On 10/20/21 5:45 PM, Michael Opdenacker wrote:
> > Hi Peter,
> >
> > Thanks for the documentation patch!
> >
> > On 10/19/21 7:04 PM, Peter Kjellerstedt wrote:
> >> EXTERNALSRC_EXTENSIONS is used to specify additional classes to inherit
> >> when externalsrc is inherited.
> >>
> >> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
> > Waiting for your patch to be accepted in OE-core before merging in
> > master-next.
> 
> Apparently, your code hasn't been merged yet, and following the
> discussions on OE-core, I'm not sure what to expect.
> Would you mind sending me the patch again when something happens?

Based on the comments that the patch received I will not push for 
it to be integrated. We will use a local solution instead.

> Thanks for everything
> Michael.
> 
> --
> Michael Opdenacker, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

//Peter


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

end of thread, other threads:[~2021-11-05 17:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19 17:04 [PATCH] ref-manual: Document the EXTERNALSRC_EXTENSIONS variable Peter Kjellerstedt
2021-10-20 15:45 ` [docs] " Michael Opdenacker
     [not found] ` <16AFC7A64FAFF929.12113@lists.yoctoproject.org>
2021-11-05 16:20   ` Michael Opdenacker
2021-11-05 17:05     ` Peter Kjellerstedt

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.