aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-11-18 13:11:53 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-08 16:36:47 +0000
commite56cd9d7d0cdc249554b3ac9bb5bb6ee67d22a5f (patch)
tree45485bc603f003d83c1f1d3c174e3ce83dc23c41 /documentation/sdk-manual
parent73454473d7c286c41ee697f74052fed03c79f9f5 (diff)
downloadopenembedded-core-contrib-e56cd9d7d0cdc249554b3ac9bb5bb6ee67d22a5f.tar.gz
sdk-manual: Updated the section on adding docs to standard SDK
Fixes [YOCTO #8584] Made some edits to tighten this down and make it more efficient. (From yocto-docs rev: f25c0cf08877b62a6e2523b5d4caa83c008ef004) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual')
-rw-r--r--documentation/sdk-manual/sdk-appendix-customizing-standard.xml23
1 files changed, 9 insertions, 14 deletions
diff --git a/documentation/sdk-manual/sdk-appendix-customizing-standard.xml b/documentation/sdk-manual/sdk-appendix-customizing-standard.xml
index fd903e38e5..f20891c80d 100644
--- a/documentation/sdk-manual/sdk-appendix-customizing-standard.xml
+++ b/documentation/sdk-manual/sdk-appendix-customizing-standard.xml
@@ -21,7 +21,7 @@
<ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_HOST_TASK'><filename>TOOLCHAIN_HOST_TASK</filename></ulink>
and
<ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_TARGET_TASK'><filename>TOOLCHAIN_TARGET_TASK</filename></ulink>
- variables contol the set of packages adding to the SDK.
+ variables control the set of packages adding to the SDK.
</para>
<para>
@@ -38,22 +38,17 @@
<title>Adding API Documentation to the Standard SDK</title>
<para>
- You might want to include documentation as part of the standard SDK.
- For example, you might want the API documentation to be built and
- included with the SDK.
- You can include API documentation as well as any other documentation
- with the standard SDK by setting the
- <ulink url='&YOCTO_DOCS_REF_URL;#var-SDKIMAGE_FEATURES'><filename>SDKIMAGE_FEATURES</filename></ulink>
- and
+ You can include API documentation as well as any other
+ documentation provided by recipes with the standard SDK by
+ adding "api-documentation" to the
<ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink>
- variables:
+ variable:
<literallayout class='monospaced'>
- SDKIMAGE_FEATURES = "doc-pkgs"
- DISTRO_FEATURES = "api-documentation"
+ DISTRO_FEATURES_append = " api-documentation"
</literallayout>
- Setting these variables as shown here causes the OpenEmbedded build
- system to build the documentation and then include it in the
- standard SDK.
+ Setting this variable as shown here causes the OpenEmbedded build
+ system to build the documentation and then include it in the standard
+ SDK.
</para>
</section>