diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2018-07-18 13:23:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-15 10:28:43 +0100 |
commit | 9af1d60bcc78689811a15fb8e715d5ff16c6a593 (patch) | |
tree | 1fc01e439abf071ce2ff76b946730858b4030f5b | |
parent | 9fc6304bf8d08d0cfdd6b4336fc7063b1363c833 (diff) | |
download | poky-9af1d60bcc78689811a15fb8e715d5ff16c6a593.tar.gz |
sdk-manual: Updated section on changing SDK installer title.
I added more detail to this section.
(From yocto-docs rev: 15beb33eadd03391a1af0c9bad0620cefad2a0e2)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/sdk-manual/sdk-appendix-customizing.xml | 12 |
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'> |