diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2015-01-14 16:27:20 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-17 15:16:48 +0000 |
commit | 63750d8c1135d28023f5bd4f0286ea727e86954b (patch) | |
tree | dc73efc861f4d003e34f50f35c73c09347c58103 | |
parent | a0e84189ee77955af14b4e695688ea204ad46572 (diff) | |
download | poky-63750d8c1135d28023f5bd4f0286ea727e86954b.tar.gz |
dev-manual: Updates to using IMAGE_FEATURES and EXTRA_IMAGE_FEATURES
The section "Customizing Images Using Custom IMAGE_FEATURES
and EXTRA_IMAGE_FEATURES" needed a bit more clarification on
the image features. The text pretty much passed off image
features as all mapping into package groups, which is not true.
Some, like "debug-tweaks for example, are more like general
configurations. I updated the section accordingly.
Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
(From yocto-docs rev: 7dd55ff0bd6f7923e22695ed7323df5cfe17d1d4)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 17d725b3b8..1458b18bfd 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml | |||
@@ -996,11 +996,20 @@ | |||
996 | <para> | 996 | <para> |
997 | To understand how these features work, the best reference is | 997 | To understand how these features work, the best reference is |
998 | <filename>meta/classes/core-image.bbclass</filename>. | 998 | <filename>meta/classes/core-image.bbclass</filename>. |
999 | This class lists out the available | ||
1000 | <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_FEATURES'><filename>IMAGE_FEATURES</filename></ulink> | ||
1001 | of which most map to package groups while some, such as | ||
1002 | <filename>debug-tweaks</filename> and | ||
1003 | <filename>read-only-rootfs</filename>, resolve as general | ||
1004 | configuration settings. | ||
1005 | </para> | ||
1006 | |||
1007 | <para> | ||
999 | In summary, the file looks at the contents of the | 1008 | In summary, the file looks at the contents of the |
1000 | <filename>IMAGE_FEATURES</filename> variable and then maps | 1009 | <filename>IMAGE_FEATURES</filename> variable and then maps |
1001 | those contents into a set of package groups. | 1010 | or configures the feature accordingly. |
1002 | Based on this information, the build system automatically | 1011 | Based on this information, the build system automatically |
1003 | adds the appropriate packages to the | 1012 | adds the appropriate packages or configurations to the |
1004 | <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink> | 1013 | <ulink url='&YOCTO_DOCS_REF_URL;#var-IMAGE_INSTALL'><filename>IMAGE_INSTALL</filename></ulink> |
1005 | variable. | 1014 | variable. |
1006 | Effectively, you are enabling extra features by extending the | 1015 | Effectively, you are enabling extra features by extending the |