diff options
Diffstat (limited to 'documentation/ref-manual/variables.rst')
-rw-r--r-- | documentation/ref-manual/variables.rst | 8 |
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". |