diff --git a/documentation/sdk-manual/sdk-appendix-customizing.xml b/documentation/sdk-manual/sdk-appendix-customizing.xml index 7224049fa2..0335fe0908 100644 --- a/documentation/sdk-manual/sdk-appendix-customizing.xml +++ b/documentation/sdk-manual/sdk-appendix-customizing.xml @@ -186,7 +186,7 @@ You can change the displayed title for the SDK installer by setting the SDK_TITLE - variable. + variable and then rebuilding the the SDK installer. By default, this title is derived from DISTRO_NAME when it is set. @@ -198,13 +198,19 @@ The - populate_sdk_ext + populate_sdk_base class defines the default value of the SDK_TITLE variable as follows: - SDK_TITLE_task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} Extensible SDK" + SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK" + + + For information on how to build an SDK installer, see the + "Building an SDK Installer" + section. +