summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-06-16 10:45:20 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-20 22:35:17 +0000
commit4f1611cb8dab33e4b0b952fe38137a4942370a9c (patch)
tree53f7868cc7784519a3b20e173e63792d70bbd606
parent5347bf352b7475563e0c48210b70ed18f13474c3 (diff)
downloadpoky-4f1611cb8dab33e4b0b952fe38137a4942370a9c.tar.gz
documentation/poky-ref-manual/extendpoky.xml: YOCTO #1104 EXTRA_IMAGE_FEATURES
YOCTO #1104: The section that describes how to customize images with new features failed to mention the variable EXTRA_IMAGE_FEATURES. I added text to include that option and referenced the variable. (From yocto-docs rev: 69113aeebe4b7047c18727d07d134560ae2018c5) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/poky-ref-manual/extendpoky.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml
index 92444f7481..62847ce11e 100644
--- a/documentation/poky-ref-manual/extendpoky.xml
+++ b/documentation/poky-ref-manual/extendpoky.xml
@@ -349,9 +349,9 @@ RRECOMMENDS_task-custom-tools = "\
349 </section> 349 </section>
350 350
351 <section id='usingpoky-extend-customimage-imagefeatures'> 351 <section id='usingpoky-extend-customimage-imagefeatures'>
352 <title>Customizing Images Using Custom IMAGE_FEATURES</title> 352 <title>Customizing Images Using Custom IMAGE_FEATURES and EXTRA_IMAGE_FEATURES</title>
353 <para> 353 <para>
354 Ultimately users might want to add extra image "features" as used by Poky with the 354 Ultimately users might want to add extra image "features" to the set used by Poky with the
355 <glossterm><link linkend='var-IMAGE_FEATURES'>IMAGE_FEATURES</link></glossterm> 355 <glossterm><link linkend='var-IMAGE_FEATURES'>IMAGE_FEATURES</link></glossterm>
356 variable. 356 variable.
357 To create these features, the best reference is 357 To create these features, the best reference is
@@ -363,6 +363,9 @@ RRECOMMENDS_task-custom-tools = "\
363 </glossterm> variable is generated automatically. 363 </glossterm> variable is generated automatically.
364 Users can add extra features by extending the class or creating a custom class for use 364 Users can add extra features by extending the class or creating a custom class for use
365 with specialized image <filename>.bb</filename> files. 365 with specialized image <filename>.bb</filename> files.
366 You can also add more features by configuring the
367 <glossterm><link linkend='var-EXTRA_IMAGE_FEATURES'>EXTRA_IMAGE_FEATURES</link></glossterm>
368 variable in the <filename>local.conf</filename> file.
366 </para> 369 </para>
367 <para> 370 <para>
368 Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH. 371 Poky ships with two SSH servers you can use in your images: Dropbear and OpenSSH.