All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables
@ 2023-06-22 16:48 Quentin Schulz
  2023-06-23  9:12 ` [bitbake-devel] " Luca Ceresoli
  2023-06-23 10:11 ` Michael Opdenacker
  0 siblings, 2 replies; 3+ messages in thread
From: Quentin Schulz @ 2023-06-22 16:48 UTC (permalink / raw
  To: bitbake-devel; +Cc: Quentin Schulz, Quentin Schulz

Some variables are described in the glossary so add a term role to the
references. For the others, highlight them by surrounding them with
two backticks.

Cc: Quentin Schulz <foss+yocto@0leil.net>
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
---
 doc/bitbake-user-manual/bitbake-user-manual-hello.rst | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-hello.rst b/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
index c8251d2a0..654196ca2 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
@@ -209,12 +209,12 @@ Following is the complete "Hello World" example.
 
     .. note::
 
-       Without a value for PN , the variables STAMP , T , and B , prevent more
-       than one recipe from working. You can fix this by either setting PN to
+       Without a value for :term:`PN`, the variables :term:`STAMP`, :term:`T`, and :term:`B`, prevent more
+       than one recipe from working. You can fix this by either setting :term:`PN` to
        have a value similar to what OpenEmbedded and BitBake use in the default
-       bitbake.conf file (see previous example). Or, by manually updating each
-       recipe to set PN . You will also need to include PN as part of the STAMP
-       , T , and B variable definitions in the local.conf file.
+       ``bitbake.conf`` file (see previous example). Or, by manually updating each
+       recipe to set :term:`PN`. You will also need to include :term:`PN` as part of the :term:`STAMP`,
+       :term:`T`, and :term:`B` variable definitions in the ``local.conf`` file.
 
     The ``TMPDIR`` variable establishes a directory that BitBake uses
     for build output and intermediate files other than the cached
@@ -319,9 +319,9 @@ Following is the complete "Hello World" example.
 
     .. note::
 
-       We are setting both LAYERSERIES_CORENAMES and LAYERSERIES_COMPAT in this particular case, because we
+       We are setting both ``LAYERSERIES_CORENAMES`` and :term:`LAYERSERIES_COMPAT` in this particular case, because we
        are using bitbake without OpenEmbedded.
-       You should usually just use LAYERSERIES_COMPAT to specify the OE-Core versions for which your layer
+       You should usually just use :term:`LAYERSERIES_COMPAT` to specify the OE-Core versions for which your layer
        is compatible, and add the meta-openembedded layer to your project.
 
     You need to create the recipe file next. Inside your layer at the

---
base-commit: 0556c7bdc82cf665faa141989f2e07dd59517735
change-id: 20230622-typos-202306-00945b0f2a25

Best regards,
-- 
Quentin Schulz <quentin.schulz@theobroma-systems.com>



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

* Re: [bitbake-devel] [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables
  2023-06-22 16:48 [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables Quentin Schulz
@ 2023-06-23  9:12 ` Luca Ceresoli
  2023-06-23 10:11 ` Michael Opdenacker
  1 sibling, 0 replies; 3+ messages in thread
From: Luca Ceresoli @ 2023-06-23  9:12 UTC (permalink / raw
  To: Quentin Schulz via lists.openembedded.org
  Cc: quentin.schulz, bitbake-devel, Quentin Schulz

Hi Quentin,

On Thu, 22 Jun 2023 18:48:45 +0200
"Quentin Schulz via lists.openembedded.org"
<quentin.schulz=theobroma-systems.com@lists.openembedded.org> wrote:
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

I think you forgot your sendemail.from here, which you apparently have
configured correctly for oe-core. Can you check your setup for the
bitbake repository as well please?

No need to resend, I fixed locally shile applying to my testing branch.

Luca

-- 
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [bitbake-devel] [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables
  2023-06-22 16:48 [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables Quentin Schulz
  2023-06-23  9:12 ` [bitbake-devel] " Luca Ceresoli
@ 2023-06-23 10:11 ` Michael Opdenacker
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Opdenacker @ 2023-06-23 10:11 UTC (permalink / raw
  To: quentin.schulz, bitbake-devel; +Cc: Quentin Schulz

Hi Quentin,

On 22.06.23 at 18:48, Quentin Schulz via lists.openembedded.org wrote:
> Some variables are described in the glossary so add a term role to the
> references. For the others, highlight them by surrounding them with
> two backticks.
>
> Cc: Quentin Schulz <foss+yocto@0leil.net>
> Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
> ---
>   doc/bitbake-user-manual/bitbake-user-manual-hello.rst | 14 +++++++-------
>   1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/doc/bitbake-user-manual/bitbake-user-manual-hello.rst b/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
> index c8251d2a0..654196ca2 100644
> --- a/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
> +++ b/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
> @@ -209,12 +209,12 @@ Following is the complete "Hello World" example.
>   
>       .. note::
>   
> -       Without a value for PN , the variables STAMP , T , and B , prevent more
> -       than one recipe from working. You can fix this by either setting PN to
> +       Without a value for :term:`PN`, the variables :term:`STAMP`, :term:`T`, and :term:`B`, prevent more
> +       than one recipe from working. You can fix this by either setting :term:`PN` to
>          have a value similar to what OpenEmbedded and BitBake use in the default
> -       bitbake.conf file (see previous example). Or, by manually updating each
> -       recipe to set PN . You will also need to include PN as part of the STAMP
> -       , T , and B variable definitions in the local.conf file.
> +       ``bitbake.conf`` file (see previous example). Or, by manually updating each
> +       recipe to set :term:`PN`. You will also need to include :term:`PN` as part of the :term:`STAMP`,
> +       :term:`T`, and :term:`B` variable definitions in the ``local.conf`` file.
>   
>       The ``TMPDIR`` variable establishes a directory that BitBake uses
>       for build output and intermediate files other than the cached
> @@ -319,9 +319,9 @@ Following is the complete "Hello World" example.
>   
>       .. note::
>   
> -       We are setting both LAYERSERIES_CORENAMES and LAYERSERIES_COMPAT in this particular case, because we
> +       We are setting both ``LAYERSERIES_CORENAMES`` and :term:`LAYERSERIES_COMPAT` in this particular case, because we
>          are using bitbake without OpenEmbedded.
> -       You should usually just use LAYERSERIES_COMPAT to specify the OE-Core versions for which your layer
> +       You should usually just use :term:`LAYERSERIES_COMPAT` to specify the OE-Core versions for which your layer
>          is compatible, and add the meta-openembedded layer to your project.
>   
>       You need to create the recipe file next. Inside your layer at the
>
> ---
> base-commit: 0556c7bdc82cf665faa141989f2e07dd59517735
> change-id: 20230622-typos-202306-00945b0f2a25


Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Thanks!
Michael.

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



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

end of thread, other threads:[~2023-06-23 10:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-22 16:48 [PATCH] docs: bitbake-user-manual: bitbake-user-manual-hello: add links and highlights for variables Quentin Schulz
2023-06-23  9:12 ` [bitbake-devel] " Luca Ceresoli
2023-06-23 10:11 ` Michael Opdenacker

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.