summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual/sdk-appendix-customizing-standard.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/sdk-manual/sdk-appendix-customizing-standard.rst')
-rw-r--r--documentation/sdk-manual/sdk-appendix-customizing-standard.rst32
1 files changed, 32 insertions, 0 deletions
diff --git a/documentation/sdk-manual/sdk-appendix-customizing-standard.rst b/documentation/sdk-manual/sdk-appendix-customizing-standard.rst
new file mode 100644
index 0000000000..4c61925725
--- /dev/null
+++ b/documentation/sdk-manual/sdk-appendix-customizing-standard.rst
@@ -0,0 +1,32 @@
1****************************
2Customizing the Standard SDK
3****************************
4
5This appendix presents customizations you can apply to the standard SDK.
6
7Adding Individual Packages to the Standard SDK
8==============================================
9
10When you build a standard SDK using the ``bitbake -c populate_sdk``, a
11default set of packages is included in the resulting SDK. The
12```TOOLCHAIN_HOST_TASK`` <&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_HOST_TASK>`__
13and
14```TOOLCHAIN_TARGET_TASK`` <&YOCTO_DOCS_REF_URL;#var-TOOLCHAIN_TARGET_TASK>`__
15variables control the set of packages adding to the SDK.
16
17If you want to add individual packages to the toolchain that runs on the
18host, simply add those packages to the ``TOOLCHAIN_HOST_TASK`` variable.
19Similarly, if you want to add packages to the default set that is part
20of the toolchain that runs on the target, add the packages to the
21``TOOLCHAIN_TARGET_TASK`` variable.
22
23Adding API Documentation to the Standard SDK
24============================================
25
26You can include API documentation as well as any other documentation
27provided by recipes with the standard SDK by adding "api-documentation"
28to the
29```DISTRO_FEATURES`` <&YOCTO_DOCS_REF_URL;#var-DISTRO_FEATURES>`__
30variable: DISTRO_FEATURES_append = " api-documentation" Setting this
31variable as shown here causes the OpenEmbedded build system to build the
32documentation and then include it in the standard SDK.