You can change the displayed title for the SDK installer by setting
the
SDK_TITLE
variable and then rebuilding the the SDK installer.
For information on how to build an SDK installer, see the
"Building an SDK Installer"
section.
By default, this title is derived from
DISTRO_NAME
when it is set.
If the DISTRO_NAME
variable is not set, the title
is derived from the
DISTRO
variable.
The
populate_sdk_base
class defines the default value of the SDK_TITLE
variable as follows:
SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK"
While several ways exist to change this variable, an efficient method
is to set the variable in your distribution's configuration file.
Doing so creates an SDK installer title that applies across your
distribution.
As an example, assume you have your own layer for your distribution
named "meta-mydistro" and you are using the same type of file
hierarchy as does the default "poky" distribution.
If so, you could update the SDK_TITLE
variable
in the
~/meta-mydistro/conf/distro/mydistro.conf
file
using the following form:
SDK_TITLE = "your_title
"