diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-05-06 15:43:26 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-24 13:58:47 +0100 |
commit | 51cb0db138c6083d046338c44822b4d506e3ce3a (patch) | |
tree | bdc69af0075565ae795912e428a513913431efd2 /documentation | |
parent | b4fd38e4d50e4496d6a710fffef8b7557076ffb1 (diff) | |
download | poky-51cb0db138c6083d046338c44822b4d506e3ce3a.tar.gz |
manuals: add missing space in appends
(From yocto-docs rev: aa122d28298596a3b91a8f6650163785a3cfa831)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Reported-by: Quentin Schulz <foss@0leil.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 2 | ||||
-rw-r--r-- | documentation/kernel-dev/common.rst | 2 | ||||
-rw-r--r-- | documentation/ref-manual/variables.rst | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index d5584d6c49..1522d31970 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -4828,7 +4828,7 @@ configuration would be as follows:: | |||
4828 | require conf/multilib.conf | 4828 | require conf/multilib.conf |
4829 | MULTILIBS = "multilib:lib32" | 4829 | MULTILIBS = "multilib:lib32" |
4830 | DEFAULTTUNE:virtclass-multilib-lib32 = "x86" | 4830 | DEFAULTTUNE:virtclass-multilib-lib32 = "x86" |
4831 | IMAGE_INSTALL:append = "lib32-glib-2.0" | 4831 | IMAGE_INSTALL:append = " lib32-glib-2.0" |
4832 | 4832 | ||
4833 | This example enables an additional library named | 4833 | This example enables an additional library named |
4834 | ``lib32`` alongside the normal target packages. When combining these | 4834 | ``lib32`` alongside the normal target packages. When combining these |
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst index 547da8a178..dc3345a520 100644 --- a/documentation/kernel-dev/common.rst +++ b/documentation/kernel-dev/common.rst | |||
@@ -1062,7 +1062,7 @@ Section. | |||
1062 | contents:: | 1062 | contents:: |
1063 | 1063 | ||
1064 | FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | 1064 | FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" |
1065 | SRC_URI:append = "file://0001-calibrate.c-Added-some-printk-statements.patch" | 1065 | SRC_URI:append = " file://0001-calibrate.c-Added-some-printk-statements.patch" |
1066 | 1066 | ||
1067 | The :term:`FILESEXTRAPATHS` and :term:`SRC_URI` statements | 1067 | The :term:`FILESEXTRAPATHS` and :term:`SRC_URI` statements |
1068 | enable the OpenEmbedded build system to find the patch file. | 1068 | enable the OpenEmbedded build system to find the patch file. |
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst index a947caddf6..146af89e8c 100644 --- a/documentation/ref-manual/variables.rst +++ b/documentation/ref-manual/variables.rst | |||
@@ -4064,10 +4064,10 @@ system and gives an overview of their function and contents. | |||
4064 | statements add specific configurations to targeted machine types:: | 4064 | statements add specific configurations to targeted machine types:: |
4065 | 4065 | ||
4066 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | 4066 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" |
4067 | KERNEL_FEATURES:append = "${KERNEL_EXTRA_FEATURES}" | 4067 | KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" |
4068 | KERNEL_FEATURES:append:qemuall = "cfg/virtio.scc" | 4068 | KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc" |
4069 | KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc" | 4069 | KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc" |
4070 | KERNEL_FEATURES:append:qemux86-64 = "cfg/sound.scc" | 4070 | KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc" |
4071 | 4071 | ||
4072 | :term:`KERNEL_FIT_LINK_NAME` | 4072 | :term:`KERNEL_FIT_LINK_NAME` |
4073 | The link name of the kernel flattened image tree (FIT) image. This | 4073 | The link name of the kernel flattened image tree (FIT) image. This |
@@ -4255,7 +4255,7 @@ system and gives an overview of their function and contents. | |||
4255 | SRCREV_machine:core2-32-intel-common = "43b9eced9ba8a57add36af07736344dcc383f711" | 4255 | SRCREV_machine:core2-32-intel-common = "43b9eced9ba8a57add36af07736344dcc383f711" |
4256 | KMACHINE:core2-32-intel-common = "intel-core2-32" | 4256 | KMACHINE:core2-32-intel-common = "intel-core2-32" |
4257 | KBRANCH:core2-32-intel-common = "standard/base" | 4257 | KBRANCH:core2-32-intel-common = "standard/base" |
4258 | KERNEL_FEATURES:append:core2-32-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}" | 4258 | KERNEL_FEATURES:append:core2-32-intel-common = " ${KERNEL_FEATURES_INTEL_COMMON}" |
4259 | 4259 | ||
4260 | The :term:`KMACHINE` statement says | 4260 | The :term:`KMACHINE` statement says |
4261 | that the kernel understands the machine name as "intel-core2-32". | 4261 | that the kernel understands the machine name as "intel-core2-32". |