diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 71bd8e5260..c330fe04a1 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -10020,6 +10020,39 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ SDK_HOST_MANIFEST
+
+ SDK_HOST_MANIFEST[doc] = "The manifest file for the host part of the SDK. This file lists all the installed packages that make up the host part of the SDK."
+
+
+
+
+ The manifest file for the host part of the SDK.
+ This file lists all the installed packages that make up
+ the host part of SDK.
+ The file contains package information on a line-per-package
+ basis as follows:
+
+ packagenamepackagearchversion
+
+
+
+
+ The
+ populate_sdk_base
+ class defines the manifest file as follows:
+
+ SDK_HOST_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.host.manifest"
+
+ The location is derived using the
+ SDK_DEPLOY
+ and
+ TOOLCHAIN_OUTPUTNAME
+ variables.
+
+
+
+
SDK_NAME
SDK_NAME[doc] = "The base name for SDK output files."
@@ -10146,6 +10179,39 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ SDK_TARGET_MANIFEST
+
+ SDK_TARGET_MANIFEST[doc] = "The manifest file for the target part of the SDK. This file lists all the installed packages that make up the target part of the SDK."
+
+
+
+
+ The manifest file for the target part of the SDK.
+ This file lists all the installed packages that make up
+ the target part of the SDK.
+ The file contains package information on a line-per-package
+ basis as follows:
+
+ packagenamepackagearchversion
+
+
+
+
+ The
+ populate_sdk_base
+ class defines the manifest file as follows:
+
+ SDK_TARGET_MANIFEST = "${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.target.manifest"
+
+ The location is derived using the
+ SDK_DEPLOY
+ and
+ TOOLCHAIN_OUTPUTNAME
+ variables.
+
+
+
+
SDK_VENDOR
SDK_VENDOR[doc] = "Specifies the name of the SDK vendor."
@@ -10158,6 +10224,32 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ SDK_VERSION
+
+ SDK_VERSION[doc] = "Specifies the version for the SDK."
+
+
+
+
+ Specifies the version of the SDK.
+ The distribution configuration file (e.g.
+ /meta-yocto/conf/distro/poky.conf)
+ defines the SDK_VERSION as follows:
+
+ SDK_VERSION := "${@'${DISTRO_VERSION}'.replace('snapshot-${DATE}','snapshot')}"
+
+
+
+
+ For additional information, see the
+ DISTRO_VERSION
+ and
+ DATE
+ variables.
+
+
+
+
SDKIMAGE_FEATURES
SDKIMAGE_FEATURES[doc] = "Equivalent to IMAGE_FEATURES. However, this variable applies to the SDK generated from an image using the command 'bitbake -c populate_sdk imagename'."
@@ -12550,6 +12642,32 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ TOOLCHAIN_OUTPUTNAME
+
+ TOOLCHAIN_OUTPUTNAME[doc] = "Defines the name used for the toolchain output."
+
+
+
+
+ This variable defines the name used for the toolchain
+ output.
+ The
+ populate_sdk_base
+ class sets the
+ TOOLCHAIN_OUTPUTNAME variable as
+ follows:
+
+ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${SDK_VERSION}"
+
+ See the
+ SDK_NAME
+ and
+ SDK_VERSION
+ variables for additional information.
+
+
+
+
TOOLCHAIN_TARGET_TASK
TOOLCHAIN_TARGET_TASK[doc] = "This variable lists packages the OpenEmbedded build system uses when it creates the target part of an SDK, which includes libraries and headers."