summaryrefslogtreecommitdiffstats
path: root/bitbake/doc
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-07-10 10:38:39 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-21 11:00:58 +0100
commit335defe0108c764701c66c81048ec138bc315b03 (patch)
tree18414d5c53bfc3f3dc926432deb84a5a770010ce /bitbake/doc
parentc723fa02f684f1a8b9acbc0c74065982e59976f6 (diff)
downloadpoky-335defe0108c764701c66c81048ec138bc315b03.tar.gz
bitbake: bitbake-user-manual-metadata.xml: KERNEL_FEATURES example updated.
I added text to separate this example code from the general BitBake User Manual's spirit of standing alone and away from YP or OE stuff. Also, added another space to move the examples code so that 5 spaces are used for literal indentation. (Bitbake rev: 17fcac8a7b21afa5c7d201e94cbf603ab07ba70c) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
index 15b38cda8e..a5b8a1829c 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
@@ -438,14 +438,15 @@
438 </para> 438 </para>
439 439
440 <para> 440 <para>
441 Again using a kernel recipe file as an example, the 441 Again, using an OpenEmbedded metadata-based
442 kernel recipe file as an example, the
442 following lines will conditionally append to the 443 following lines will conditionally append to the
443 <filename>KERNEL_FEATURES</filename> variable based 444 <filename>KERNEL_FEATURES</filename> variable based
444 on the architecture: 445 on the architecture:
445 <literallayout class='monospaced'> 446 <literallayout class='monospaced'>
446 KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" 447 KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}"
447 KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" 448 KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc"
448 KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" 449 KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc"
449 </literallayout> 450 </literallayout>
450 </para></listitem> 451 </para></listitem>
451 </itemizedlist> 452 </itemizedlist>