From e6a0be545d73b1052a259547afd2aa63d4b58546 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Sat, 16 Jan 2021 12:16:03 +0100 Subject: docs: fix missing & and ; surrounding references from poky.yaml poky.yaml references are only replaced in files if they are prefixed by & and suffixed by ;. Let's fix the missing surrounding characters. (From yocto-docs rev: 7ee4ba7a27acd87d8c728639d1b053d2e26c6e58) Signed-off-by: Quentin Schulz Signed-off-by: Richard Purdie --- documentation/ref-manual/devtool-reference.rst | 8 ++++---- documentation/ref-manual/release-process.rst | 4 ++-- documentation/ref-manual/system-requirements.rst | 4 ++-- documentation/ref-manual/terms.rst | 4 ++-- documentation/ref-manual/variables.rst | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) (limited to 'documentation/ref-manual') diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst index cc5848fd4d..5075f0c224 100644 --- a/documentation/ref-manual/devtool-reference.rst +++ b/documentation/ref-manual/devtool-reference.rst @@ -204,20 +204,20 @@ specify these options when using the ``devtool add`` command: - To specify a source branch, use the ``--srcbranch`` option: :: - $ devtool add --srcbranch DISTRO_NAME_NO_CAP jackson /home/user/sources/jackson + $ devtool add --srcbranch &DISTRO_NAME_NO_CAP; jackson /home/user/sources/jackson - In the previous example, you are checking out the DISTRO_NAME_NO_CAP + In the previous example, you are checking out the &DISTRO_NAME_NO_CAP; branch. - To specify a specific tag or commit hash, use the ``--srcrev`` option: :: - $ devtool add --srcrev DISTRO_REL_TAG jackson /home/user/sources/jackson + $ devtool add --srcrev &DISTRO_REL_TAG; jackson /home/user/sources/jackson $ devtool add --srcrev some_commit_hash /home/user/sources/jackson The previous examples check out the - DISTRO_REL_TAG tag and the commit associated with the + &DISTRO_REL_TAG; tag and the commit associated with the some_commit_hash hash. .. note:: diff --git a/documentation/ref-manual/release-process.rst b/documentation/ref-manual/release-process.rst index d8d362282b..ed5a09a55d 100644 --- a/documentation/ref-manual/release-process.rst +++ b/documentation/ref-manual/release-process.rst @@ -12,7 +12,7 @@ stability. Major and Minor Release Cadence =============================== -The Yocto Project delivers major releases (e.g. DISTRO) using a six +The Yocto Project delivers major releases (e.g. &DISTRO;) using a six month cadence roughly timed each April and October of the year. Following are examples of some major YP releases with their codenames also shown. See the "`Major Release @@ -57,7 +57,7 @@ codename are likely to be compatible and thus work together. .. note:: Codenames are associated with major releases because a Yocto Project - release number (e.g. DISTRO) could conflict with a given layer or + release number (e.g. &DISTRO;) could conflict with a given layer or company versioning scheme. Codenames are unique, interesting, and easily identifiable. diff --git a/documentation/ref-manual/system-requirements.rst b/documentation/ref-manual/system-requirements.rst index 66afb08102..c8c1381cb9 100644 --- a/documentation/ref-manual/system-requirements.rst +++ b/documentation/ref-manual/system-requirements.rst @@ -340,12 +340,12 @@ of the two methods by which you can get these tools: traditional installer: :: - $ sh ~/Downloads/x86_64-buildtools-nativesdk-standalone-DISTRO.sh + $ sh ~/Downloads/x86_64-buildtools-nativesdk-standalone-&DISTRO;.sh Here is an example for the extended installer: :: - $ sh ~/Downloads/x86_64-buildtools-extended-nativesdk-standalone-DISTRO.sh + $ sh ~/Downloads/x86_64-buildtools-extended-nativesdk-standalone-&DISTRO;.sh During execution, a prompt appears that allows you to choose the installation directory. For example, you could choose the following: diff --git a/documentation/ref-manual/terms.rst b/documentation/ref-manual/terms.rst index 966962005b..bf46148876 100644 --- a/documentation/ref-manual/terms.rst +++ b/documentation/ref-manual/terms.rst @@ -90,13 +90,13 @@ universal, the list includes them just in case: - Provide a directory path and specifically name the Build Directory. Any intermediate folders in the pathname must exist. This next example creates a Build Directory named - ``YP-POKYVERSION`` in your home directory within the existing + ``YP-&POKYVERSION;`` in your home directory within the existing directory ``mybuilds``: .. code-block:: shell $ cd $HOME - $ source $HOME/poky/oe-init-build-env $HOME/mybuilds/YP-POKYVERSION + $ source $HOME/poky/oe-init-build-env $HOME/mybuilds/YP-&POKYVERSION; .. note:: diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index 4ce2648136..5ec19970e4 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst @@ -4202,11 +4202,11 @@ system and gives an overview of their function and contents. this variable in your layer's ``conf/layer.conf`` configuration file. For the list, use the Yocto Project :yocto_wiki:`Release Name ` (e.g. - DISTRO_NAME_NO_CAP). To specify multiple OE-Core versions for the + &DISTRO_NAME_NO_CAP;). To specify multiple OE-Core versions for the layer, use a space-separated list: :: - LAYERSERIES_COMPAT_layer_root_name = "DISTRO_NAME_NO_CAP DISTRO_NAME_NO_CAP_MINUS_ONE" + LAYERSERIES_COMPAT_layer_root_name = "&DISTRO_NAME_NO_CAP; &DISTRO_NAME_NO_CAP_MINUS_ONE;" .. note:: -- cgit v1.2.3-54-g00ecf