mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
manuals: define proper numbered lists
Using "#." instead of "1.", "2.", "3.", etc. (From yocto-docs rev: 11c2585acd0fa6c330702af2359ce5a9e47cde1f) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss+yocto@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
474e071608
commit
6846d4d00b
@@ -979,11 +979,11 @@ by default (as specified by :term:`IMAGE_BUILDINFO_FILE`).
|
||||
This can be useful for manually determining the origin of any given
|
||||
image. It writes out two sections:
|
||||
|
||||
1. `Build Configuration`: a list of variables and their values (specified
|
||||
#. `Build Configuration`: a list of variables and their values (specified
|
||||
by :term:`IMAGE_BUILDINFO_VARS`, which defaults to :term:`DISTRO` and
|
||||
:term:`DISTRO_VERSION`)
|
||||
|
||||
2. `Layer Revisions`: the revisions of all of the layers used in the
|
||||
#. `Layer Revisions`: the revisions of all of the layers used in the
|
||||
build.
|
||||
|
||||
Additionally, when building an SDK it will write the same contents
|
||||
|
||||
@@ -235,7 +235,7 @@ The ``install-buildtools`` script is the easiest of the three methods by
|
||||
which you can get these tools. It downloads a pre-built buildtools
|
||||
installer and automatically installs the tools for you:
|
||||
|
||||
1. Execute the ``install-buildtools`` script. Here is an example::
|
||||
#. Execute the ``install-buildtools`` script. Here is an example::
|
||||
|
||||
$ cd poky
|
||||
$ scripts/install-buildtools \
|
||||
@@ -268,7 +268,7 @@ installer and automatically installs the tools for you:
|
||||
$ cd poky
|
||||
$ scripts/install-buildtools --make-only
|
||||
|
||||
2. Source the tools environment setup script by using a command like the
|
||||
#. Source the tools environment setup script by using a command like the
|
||||
following::
|
||||
|
||||
$ source /path/to/poky/buildtools/environment-setup-x86_64-pokysdk-linux
|
||||
@@ -291,9 +291,9 @@ If you would prefer not to use the ``install-buildtools`` script, you can instea
|
||||
download and run a pre-built buildtools installer yourself with the following
|
||||
steps:
|
||||
|
||||
1. Locate and download the ``*.sh`` at :yocto_dl:`/releases/yocto/yocto-&DISTRO;/buildtools/`
|
||||
#. Locate and download the ``*.sh`` at :yocto_dl:`/releases/yocto/yocto-&DISTRO;/buildtools/`
|
||||
|
||||
2. Execute the installation script. Here is an example for the
|
||||
#. Execute the installation script. Here is an example for the
|
||||
traditional installer::
|
||||
|
||||
$ sh ~/Downloads/x86_64-buildtools-nativesdk-standalone-&DISTRO;.sh
|
||||
@@ -310,7 +310,7 @@ steps:
|
||||
installation directory. For example, you could choose the following:
|
||||
``/home/your-username/buildtools``
|
||||
|
||||
3. Source the tools environment setup script by using a command like the
|
||||
#. Source the tools environment setup script by using a command like the
|
||||
following::
|
||||
|
||||
$ source /home/your_username/buildtools/environment-setup-i586-poky-linux
|
||||
@@ -339,11 +339,11 @@ Python (or gcc) requirements.
|
||||
Here are the steps to take to build and run your own buildtools
|
||||
installer:
|
||||
|
||||
1. On the machine that is able to run BitBake, be sure you have set up
|
||||
#. On the machine that is able to run BitBake, be sure you have set up
|
||||
your build environment with the setup script
|
||||
(:ref:`structure-core-script`).
|
||||
|
||||
2. Run the BitBake command to build the tarball::
|
||||
#. Run the BitBake command to build the tarball::
|
||||
|
||||
$ bitbake buildtools-tarball
|
||||
|
||||
@@ -365,10 +365,10 @@ installer:
|
||||
:term:`Build Directory`. The installer file has the string
|
||||
"buildtools" (or "buildtools-extended") in the name.
|
||||
|
||||
3. Transfer the ``.sh`` file from the build host to the machine that
|
||||
#. Transfer the ``.sh`` file from the build host to the machine that
|
||||
does not meet the Git, tar, or Python (or gcc) requirements.
|
||||
|
||||
4. On the machine that does not meet the requirements, run the ``.sh``
|
||||
#. On the machine that does not meet the requirements, run the ``.sh``
|
||||
file to install the tools. Here is an example for the traditional
|
||||
installer::
|
||||
|
||||
@@ -386,7 +386,7 @@ installer:
|
||||
installation directory. For example, you could choose the following:
|
||||
``/home/your_username/buildtools``
|
||||
|
||||
5. Source the tools environment setup script by using a command like the
|
||||
#. Source the tools environment setup script by using a command like the
|
||||
following::
|
||||
|
||||
$ source /home/your_username/buildtools/environment-setup-x86_64-poky-linux
|
||||
|
||||
@@ -5868,25 +5868,25 @@ system and gives an overview of their function and contents.
|
||||
omit any argument you like but must retain the separating commas. The
|
||||
order is important and specifies the following:
|
||||
|
||||
1. Extra arguments that should be added to the configure script
|
||||
#. Extra arguments that should be added to the configure script
|
||||
argument list (:term:`EXTRA_OECONF` or
|
||||
:term:`PACKAGECONFIG_CONFARGS`) if
|
||||
the feature is enabled.
|
||||
|
||||
2. Extra arguments that should be added to :term:`EXTRA_OECONF` or
|
||||
#. Extra arguments that should be added to :term:`EXTRA_OECONF` or
|
||||
:term:`PACKAGECONFIG_CONFARGS` if the feature is disabled.
|
||||
|
||||
3. Additional build dependencies (:term:`DEPENDS`)
|
||||
#. Additional build dependencies (:term:`DEPENDS`)
|
||||
that should be added if the feature is enabled.
|
||||
|
||||
4. Additional runtime dependencies (:term:`RDEPENDS`)
|
||||
#. Additional runtime dependencies (:term:`RDEPENDS`)
|
||||
that should be added if the feature is enabled.
|
||||
|
||||
5. Additional runtime recommendations
|
||||
#. Additional runtime recommendations
|
||||
(:term:`RRECOMMENDS`) that should be added if
|
||||
the feature is enabled.
|
||||
|
||||
6. Any conflicting (that is, mutually exclusive) :term:`PACKAGECONFIG`
|
||||
#. Any conflicting (that is, mutually exclusive) :term:`PACKAGECONFIG`
|
||||
settings for this feature.
|
||||
|
||||
Consider the following :term:`PACKAGECONFIG` block taken from the
|
||||
|
||||
Reference in New Issue
Block a user