* [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable
@ 2019-08-12 19:51 Martin Jansa
2019-08-12 20:02 ` ✗ patchtest: failure for " Patchwork
2019-09-06 11:32 ` [yocto-docs][PATCH] " Martin Jansa
0 siblings, 2 replies; 4+ messages in thread
From: Martin Jansa @ 2019-08-12 19:51 UTC (permalink / raw)
To: yocto, openembedded-core; +Cc: herb.kuta
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
documentation/ref-manual/ref-classes.xml | 5 ++++-
documentation/ref-manual/ref-variables.xml | 21 +++++++++++++++++++++
2 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml
index ece47e757..159efb3b1 100644
--- a/documentation/ref-manual/ref-classes.xml
+++ b/documentation/ref-manual/ref-classes.xml
@@ -413,7 +413,10 @@
<filename>cross</filename>, and
<filename>cross-canadian</filename> recipes to change
<filename>RPATH</filename> records within binaries in order to make
- them relocatable.
+ them relocatable. To extend the list of directories where it searches
+ for binaries to relocate, you can set
+ <link linkend='var-PREPROCESS_RELOCATE_DIRS'><filename>PREPROCESS_RELOCATE_DIRS</filename></link>
+ variable in your recipe.
</para>
</section>
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 9470a780a..5ac766658 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -11424,6 +11424,27 @@
</glossdef>
</glossentry>
+ <glossentry id='var-PREPROCESS_RELOCATE_DIRS'><glossterm>PREPROCESS_RELOCATE_DIRS</glossterm>
+ <info>
+ PREPROCESS_RELOCATE_DIRS[doc] = "List of extra directories where to search for binaries which should be relocatable."
+ </info>
+ <glossdef>
+ <para role="glossdeffirst">
+<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
+ List of extra directories with binaries.
+ </para>
+
+ <para>
+ <filename>PREPROCESS_RELOCATE_DIRS</filename> is used by
+ chrpath.bbclass to allow extending the list where it searches
+ for binaries. By default it searches in:
+ ${bindir} ${sbindir} ${base_sbindir} ${base_bindir} ${libdir} ${base_libdir} ${libexecdir}
+ Thus, <filename>PREPROCESS_RELOCATE_DIRS</filename> usually doesn't
+ need to be set withing recipes.
+ </para>
+ </glossdef>
+ </glossentry>
+
<glossentry id='var-PRIORITY'><glossterm>PRIORITY</glossterm>
<info>
PRIORITY[doc] = "Indicates the importance of a package. The default value is 'optional'. Other standard values are 'required', 'standard', and 'extra'."
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✗ patchtest: failure for ref-manual: mention PREPROCESS_RELOCATE_DIRS variable
2019-08-12 19:51 [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable Martin Jansa
@ 2019-08-12 20:02 ` Patchwork
2019-09-06 11:32 ` [yocto-docs][PATCH] " Martin Jansa
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-08-12 20:02 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-core
== Series Details ==
Series: ref-manual: mention PREPROCESS_RELOCATE_DIRS variable
Revision: 1
URL : https://patchwork.openembedded.org/series/19243/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:
* Issue Series sent to the wrong mailing list or some patches from the series correspond to different mailing lists [test_target_mailing_list]
Suggested fix Send the series again to the correct mailing list (ML)
Suggested ML yocto@yoctoproject.org [http://git.yoctoproject.org/cgit/cgit.cgi/yocto-docs/]
Patch's path: documentation/ref-manual/ref-classes.xml
* Issue Series does not apply on top of target branch [test_series_merge_on_head]
Suggested fix Rebase your series on top of targeted branch
Targeted branch master (currently at e5f8c1facf)
If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).
---
Guidelines: https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable
2019-08-12 19:51 [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable Martin Jansa
2019-08-12 20:02 ` ✗ patchtest: failure for " Patchwork
@ 2019-09-06 11:32 ` Martin Jansa
2019-12-11 17:32 ` Martin Jansa
1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2019-09-06 11:32 UTC (permalink / raw)
To: yocto, openembedded-core; +Cc: herb.kuta
[-- Attachment #1: Type: text/plain, Size: 2988 bytes --]
On Mon, Aug 12, 2019 at 07:51:40PM +0000, Martin Jansa wrote:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
ping
> ---
> documentation/ref-manual/ref-classes.xml | 5 ++++-
> documentation/ref-manual/ref-variables.xml | 21 +++++++++++++++++++++
> 2 files changed, 25 insertions(+), 1 deletion(-)
>
> diff --git a/documentation/ref-manual/ref-classes.xml b/documentation/ref-manual/ref-classes.xml
> index ece47e757..159efb3b1 100644
> --- a/documentation/ref-manual/ref-classes.xml
> +++ b/documentation/ref-manual/ref-classes.xml
> @@ -413,7 +413,10 @@
> <filename>cross</filename>, and
> <filename>cross-canadian</filename> recipes to change
> <filename>RPATH</filename> records within binaries in order to make
> - them relocatable.
> + them relocatable. To extend the list of directories where it searches
> + for binaries to relocate, you can set
> + <link linkend='var-PREPROCESS_RELOCATE_DIRS'><filename>PREPROCESS_RELOCATE_DIRS</filename></link>
> + variable in your recipe.
> </para>
> </section>
>
> diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
> index 9470a780a..5ac766658 100644
> --- a/documentation/ref-manual/ref-variables.xml
> +++ b/documentation/ref-manual/ref-variables.xml
> @@ -11424,6 +11424,27 @@
> </glossdef>
> </glossentry>
>
> + <glossentry id='var-PREPROCESS_RELOCATE_DIRS'><glossterm>PREPROCESS_RELOCATE_DIRS</glossterm>
> + <info>
> + PREPROCESS_RELOCATE_DIRS[doc] = "List of extra directories where to search for binaries which should be relocatable."
> + </info>
> + <glossdef>
> + <para role="glossdeffirst">
> +<!-- <para role="glossdeffirst"><imagedata fileref="figures/define-generic.png" /> -->
> + List of extra directories with binaries.
> + </para>
> +
> + <para>
> + <filename>PREPROCESS_RELOCATE_DIRS</filename> is used by
> + chrpath.bbclass to allow extending the list where it searches
> + for binaries. By default it searches in:
> + ${bindir} ${sbindir} ${base_sbindir} ${base_bindir} ${libdir} ${base_libdir} ${libexecdir}
> + Thus, <filename>PREPROCESS_RELOCATE_DIRS</filename> usually doesn't
> + need to be set withing recipes.
> + </para>
> + </glossdef>
> + </glossentry>
> +
> <glossentry id='var-PRIORITY'><glossterm>PRIORITY</glossterm>
> <info>
> PRIORITY[doc] = "Indicates the importance of a package. The default value is 'optional'. Other standard values are 'required', 'standard', and 'extra'."
> --
> 2.17.1
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 201 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable
2019-09-06 11:32 ` [yocto-docs][PATCH] " Martin Jansa
@ 2019-12-11 17:32 ` Martin Jansa
0 siblings, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2019-12-11 17:32 UTC (permalink / raw)
To: Yocto Project, Patches and discussions about the oe-core layer; +Cc: Herb Kuta
[-- Attachment #1: Type: text/plain, Size: 3243 bytes --]
ping again
On Fri, Sep 6, 2019 at 1:32 PM Martin Jansa <martin.jansa@gmail.com> wrote:
> On Mon, Aug 12, 2019 at 07:51:40PM +0000, Martin Jansa wrote:
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
>
> ping
>
> > ---
> > documentation/ref-manual/ref-classes.xml | 5 ++++-
> > documentation/ref-manual/ref-variables.xml | 21 +++++++++++++++++++++
> > 2 files changed, 25 insertions(+), 1 deletion(-)
> >
> > diff --git a/documentation/ref-manual/ref-classes.xml
> b/documentation/ref-manual/ref-classes.xml
> > index ece47e757..159efb3b1 100644
> > --- a/documentation/ref-manual/ref-classes.xml
> > +++ b/documentation/ref-manual/ref-classes.xml
> > @@ -413,7 +413,10 @@
> > <filename>cross</filename>, and
> > <filename>cross-canadian</filename> recipes to change
> > <filename>RPATH</filename> records within binaries in order to
> make
> > - them relocatable.
> > + them relocatable. To extend the list of directories where it
> searches
> > + for binaries to relocate, you can set
> > + <link
> linkend='var-PREPROCESS_RELOCATE_DIRS'><filename>PREPROCESS_RELOCATE_DIRS</filename></link>
> > + variable in your recipe.
> > </para>
> > </section>
> >
> > diff --git a/documentation/ref-manual/ref-variables.xml
> b/documentation/ref-manual/ref-variables.xml
> > index 9470a780a..5ac766658 100644
> > --- a/documentation/ref-manual/ref-variables.xml
> > +++ b/documentation/ref-manual/ref-variables.xml
> > @@ -11424,6 +11424,27 @@
> > </glossdef>
> > </glossentry>
> >
> > + <glossentry
> id='var-PREPROCESS_RELOCATE_DIRS'><glossterm>PREPROCESS_RELOCATE_DIRS</glossterm>
> > + <info>
> > + PREPROCESS_RELOCATE_DIRS[doc] = "List of extra
> directories where to search for binaries which should be relocatable."
> > + </info>
> > + <glossdef>
> > + <para role="glossdeffirst">
> > +<!-- <para role="glossdeffirst"><imagedata
> fileref="figures/define-generic.png" /> -->
> > + List of extra directories with binaries.
> > + </para>
> > +
> > + <para>
> > + <filename>PREPROCESS_RELOCATE_DIRS</filename> is
> used by
> > + chrpath.bbclass to allow extending the list where
> it searches
> > + for binaries. By default it searches in:
> > + ${bindir} ${sbindir} ${base_sbindir} ${base_bindir}
> ${libdir} ${base_libdir} ${libexecdir}
> > + Thus, <filename>PREPROCESS_RELOCATE_DIRS</filename>
> usually doesn't
> > + need to be set withing recipes.
> > + </para>
> > + </glossdef>
> > + </glossentry>
> > +
> > <glossentry id='var-PRIORITY'><glossterm>PRIORITY</glossterm>
> > <info>
> > PRIORITY[doc] = "Indicates the importance of a
> package. The default value is 'optional'. Other standard values are
> 'required', 'standard', and 'extra'."
> > --
> > 2.17.1
> >
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
[-- Attachment #2: Type: text/html, Size: 4487 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-12-11 17:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-12 19:51 [yocto-docs][PATCH] ref-manual: mention PREPROCESS_RELOCATE_DIRS variable Martin Jansa
2019-08-12 20:02 ` ✗ patchtest: failure for " Patchwork
2019-09-06 11:32 ` [yocto-docs][PATCH] " Martin Jansa
2019-12-11 17:32 ` Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox