diff options
Diffstat (limited to 'documentation/ref-manual/variables.rst')
-rw-r--r-- | documentation/ref-manual/variables.rst | 10 |
1 files changed, 5 insertions, 5 deletions
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". |