diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 9f13176d66..7ae69c0928 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -12600,22 +12600,33 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" SDK_TITLE - SDK_TITLE[doc] = "Specifies a title to be printed when running the SDK installer." + SDK_TITLE[doc] = "The title to be printed when running the SDK installer." - Specifies a title to be printed when running the SDK - installer. - The SDK_TITLE variable defaults to - "distro SDK" for the standard - SDK and "distro Extensible SDK" - for the extensible SDK, where - distro is the first one of + The title to be printed when running the SDK installer. + By default, this title is based on the DISTRO_NAME or DISTRO - that is set in your configuration. + variable and is set in the + populate_sdk_base + class as follows: + + SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK" + + For the default distribution "poky", + SDK_TITLE is set to + "Poky (Yocto Project Reference Distro)". + + + + For information on how to change this default title, + see the + "Changing the Extensible SDK Installer Title" + section in the Yocto Project Application Development and + the Extensible Software Development Kit (eSDK) manual.