summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/variables.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-05-20 14:43:53 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-24 14:00:03 +0100
commit51cb23e695c4325836c909f193dfbbb9913ba40d (patch)
treeaa22073476a1cad7d520fbd01208f7b782984191 /documentation/ref-manual/variables.rst
parent17ea8b493d643c966beea306114ffc3a8d809204 (diff)
downloadpoky-51cb23e695c4325836c909f193dfbbb9913ba40d.tar.gz
adding missing space in appends
(From yocto-docs rev: 9ae3071f66c1811d847ed559cb773999ff6185fc) 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/ref-manual/variables.rst')
-rw-r--r--documentation/ref-manual/variables.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index fd796fddf7..7aef27337e 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -3979,10 +3979,10 @@ system and gives an overview of their function and contents.
3979 statements add specific configurations to targeted machine types:: 3979 statements add specific configurations to targeted machine types::
3980 3980
3981 KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" 3981 KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc"
3982 KERNEL_FEATURES:append = "${KERNEL_EXTRA_FEATURES}" 3982 KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
3983 KERNEL_FEATURES:append:qemuall = "cfg/virtio.scc" 3983 KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc"
3984 KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc" 3984 KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
3985 KERNEL_FEATURES:append:qemux86-64 = "cfg/sound.scc" 3985 KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc"
3986 3986
3987 :term:`KERNEL_FIT_LINK_NAME` 3987 :term:`KERNEL_FIT_LINK_NAME`
3988 The link name of the kernel flattened image tree (FIT) image. This 3988 The link name of the kernel flattened image tree (FIT) image. This
@@ -4170,7 +4170,7 @@ system and gives an overview of their function and contents.
4170 SRCREV_machine:core2-32-intel-common = "43b9eced9ba8a57add36af07736344dcc383f711" 4170 SRCREV_machine:core2-32-intel-common = "43b9eced9ba8a57add36af07736344dcc383f711"
4171 KMACHINE:core2-32-intel-common = "intel-core2-32" 4171 KMACHINE:core2-32-intel-common = "intel-core2-32"
4172 KBRANCH:core2-32-intel-common = "standard/base" 4172 KBRANCH:core2-32-intel-common = "standard/base"
4173 KERNEL_FEATURES:append:core2-32-intel-common = "${KERNEL_FEATURES_INTEL_COMMON}" 4173 KERNEL_FEATURES:append:core2-32-intel-common = " ${KERNEL_FEATURES_INTEL_COMMON}"
4174 4174
4175 The :term:`KMACHINE` statement says 4175 The :term:`KMACHINE` statement says
4176 that the kernel understands the machine name as "intel-core2-32". 4176 that the kernel understands the machine name as "intel-core2-32".