summaryrefslogtreecommitdiffstats
path: root/documentation
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
parent73454473d7c286c41ee697f74052fed03c79f9f5 (diff)
downloadpoky-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')
-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 @@
21 <ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_HOST_TASK'><filename>TOOLCHAIN_HOST_TASK</filename></ulink> 21 <ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_HOST_TASK'><filename>TOOLCHAIN_HOST_TASK</filename></ulink>
22 and 22 and
23 <ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_TARGET_TASK'><filename>TOOLCHAIN_TARGET_TASK</filename></ulink> 23 <ulink url='&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_TARGET_TASK'><filename>TOOLCHAIN_TARGET_TASK</filename></ulink>
24 variables contol the set of packages adding to the SDK. 24 variables control the set of packages adding to the SDK.
25 </para> 25 </para>
26 26
27 <para> 27 <para>
@@ -38,22 +38,17 @@
38 <title>Adding API Documentation to the Standard SDK</title> 38 <title>Adding API Documentation to the Standard SDK</title>
39 39
40 <para> 40 <para>
41 You might want to include documentation as part of the standard SDK. 41 You can include API documentation as well as any other
42 For example, you might want the API documentation to be built and 42 documentation provided by recipes with the standard SDK by
43 included with the SDK. 43 adding "api-documentation" to the
44 You can include API documentation as well as any other documentation
45 with the standard SDK by setting the
46 <ulink url='&YOCTO_DOCS_REF_URL;#var-SDKIMAGE_FEATURES'><filename>SDKIMAGE_FEATURES</filename></ulink>
47 and
48 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink> 44 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES'><filename>DISTRO_FEATURES</filename></ulink>
49 variables: 45 variable:
50 <literallayout class='monospaced'> 46 <literallayout class='monospaced'>
51 SDKIMAGE_FEATURES = "doc-pkgs" 47 DISTRO_FEATURES_append = " api-documentation"
52 DISTRO_FEATURES = "api-documentation"
53 </literallayout> 48 </literallayout>
54 Setting these variables as shown here causes the OpenEmbedded build 49 Setting this variable as shown here causes the OpenEmbedded build
55 system to build the documentation and then include it in the 50 system to build the documentation and then include it in the standard
56 standard SDK. 51 SDK.
57 </para> 52 </para>
58</section> 53</section>
59 54