summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/sdk-manual/sdk-appendix-customizing.xml12
1 files changed, 9 insertions, 3 deletions
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 @@
186 You can change the displayed title for the SDK installer by setting 186 You can change the displayed title for the SDK installer by setting
187 the 187 the
188 <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_TITLE'><filename>SDK_TITLE</filename></ulink> 188 <ulink url='&YOCTO_DOCS_REF_URL;#var-SDK_TITLE'><filename>SDK_TITLE</filename></ulink>
189 variable. 189 variable and then rebuilding the the SDK installer.
190 By default, this title is derived from 190 By default, this title is derived from
191 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_NAME'><filename>DISTRO_NAME</filename></ulink> 191 <ulink url='&YOCTO_DOCS_REF_URL;#var-DISTRO_NAME'><filename>DISTRO_NAME</filename></ulink>
192 when it is set. 192 when it is set.
@@ -198,13 +198,19 @@
198 198
199 <para> 199 <para>
200 The 200 The
201 <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-populate-sdk-*'><filename>populate_sdk_ext</filename></ulink> 201 <ulink url='&YOCTO_DOCS_REF_URL;#ref-classes-populate-sdk-*'><filename>populate_sdk_base</filename></ulink>
202 class defines the default value of the <filename>SDK_TITLE</filename> 202 class defines the default value of the <filename>SDK_TITLE</filename>
203 variable as follows: 203 variable as follows:
204 <literallayout class='monospaced'> 204 <literallayout class='monospaced'>
205 SDK_TITLE_task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} Extensible SDK" 205 SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK"
206 </literallayout> 206 </literallayout>
207 </para> 207 </para>
208
209 <para>
210 For information on how to build an SDK installer, see the
211 "<link linkend='sdk-building-an-sdk-installer'>Building an SDK Installer</link>"
212 section.
213 </para>
208</section> 214</section>
209 215
210<section id='sdk-providing-updates-to-the-extensible-sdk-after-installation'> 216<section id='sdk-providing-updates-to-the-extensible-sdk-after-installation'>