summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2025-07-29 11:56:52 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-08 23:41:11 +0100
commit89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2 (patch)
tree5615030177498909da83965c1fcb67d046798a95 /documentation/ref-manual
parente9042fee7188021130efed1b2db31eac96c50f5b (diff)
downloadpoky-89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2.tar.gz
docs-wide: fix space around equal assignments
Since commit 24772dd2ae6c ("parse/ConfHandler: Add warning for deprecated whitespace usage") in BitBake, a warning is printed when there are no spaces around an `=` assignment. Adjust the documentation to show good examples only. (From yocto-docs rev: 77ce1544dd793036b1135817c02e090138fe6407) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r--documentation/ref-manual/variables.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index cefbfd096a..e4d5a9c97a 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -3360,7 +3360,7 @@ system and gives an overview of their function and contents.
3360 Here is an example setting "0x400000000" as a load address:: 3360 Here is an example setting "0x400000000" as a load address::
3361 3361
3362 FIT_ADDRESS_CELLS = "2" 3362 FIT_ADDRESS_CELLS = "2"
3363 UBOOT_LOADADDRESS= "0x04 0x00000000" 3363 UBOOT_LOADADDRESS = "0x04 0x00000000"
3364 3364
3365 See `more details about #address-cells <https://elinux.org/Device_Tree_Usage#How_Addressing_Works>`__. 3365 See `more details about #address-cells <https://elinux.org/Device_Tree_Usage#How_Addressing_Works>`__.
3366 3366
@@ -4101,7 +4101,7 @@ system and gives an overview of their function and contents.
4101 The :ref:`rootfs-postcommands <ref-classes-rootfs*>` class defines the manifest 4101 The :ref:`rootfs-postcommands <ref-classes-rootfs*>` class defines the manifest
4102 file as follows:: 4102 file as follows::
4103 4103
4104 IMAGE_MANIFEST ="${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.manifest" 4104 IMAGE_MANIFEST = "${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.manifest"
4105 4105
4106 The location is 4106 The location is
4107 derived using the :term:`IMGDEPLOYDIR` 4107 derived using the :term:`IMGDEPLOYDIR`
@@ -10496,7 +10496,7 @@ system and gives an overview of their function and contents.
10496 Here is an example setting "0x400000000" as a load address:: 10496 Here is an example setting "0x400000000" as a load address::
10497 10497
10498 UBOOT_FIT_ADDRESS_CELLS = "2" 10498 UBOOT_FIT_ADDRESS_CELLS = "2"
10499 UBOOT_LOADADDRESS= "0x04 0x00000000" 10499 UBOOT_LOADADDRESS = "0x04 0x00000000"
10500 10500
10501 See `more details about #address-cells <https://elinux.org/Device_Tree_Usage#How_Addressing_Works>`__. 10501 See `more details about #address-cells <https://elinux.org/Device_Tree_Usage#How_Addressing_Works>`__.
10502 10502