blob: d6bca449475d7d8c0054781a7ad79c17b64a2e3f [file] [log] [blame]
Andrew Geisslerf0343792020-11-18 10:42:21 -06001.. SPDX-License-Identifier: CC-BY-SA-2.0-UK
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002
Patrick Williams92b42cb2022-09-03 06:53:57 -05003***************************************************
4Customizing the Extensible SDK standalone installer
5***************************************************
Andrew Geisslerc9f78652020-09-18 14:11:35 -05006
7This appendix describes customizations you can apply to the extensible
Patrick Williams92b42cb2022-09-03 06:53:57 -05008SDK when using in the standalone installer version.
9
10.. note::
11
12 It is also possible to use the Extensible SDK functionality directly in a
13 Yocto build, avoiding separate installer artefacts. Please refer to
14 ":ref:`sdk-manual/extensible:Installing the Extensible SDK`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050015
16Configuring the Extensible SDK
17==============================
18
19The extensible SDK primarily consists of a pre-configured copy of the
20OpenEmbedded build system from which it was produced. Thus, the SDK's
21configuration is derived using that build system and the filters shown
22in the following list. When these filters are present, the OpenEmbedded
23build system applies them against ``local.conf`` and ``auto.conf``:
24
25- Variables whose values start with "/" are excluded since the
26 assumption is that those values are paths that are likely to be
27 specific to the :term:`Build Host`.
28
29- Variables listed in
Andrew Geissler9aee5002022-03-30 16:27:02 +000030 :term:`ESDK_LOCALCONF_REMOVE`
Andrew Geisslerc9f78652020-09-18 14:11:35 -050031 are excluded. These variables are not allowed through from the
32 OpenEmbedded build system configuration into the extensible SDK
33 configuration. Typically, these variables are specific to the machine
34 on which the build system is running and could be problematic as part
35 of the extensible SDK configuration.
36
37 For a list of the variables excluded by default, see the
Andrew Geissler9aee5002022-03-30 16:27:02 +000038 :term:`ESDK_LOCALCONF_REMOVE`
Andrew Geisslerc9f78652020-09-18 14:11:35 -050039 in the glossary of the Yocto Project Reference Manual.
40
41- Variables listed in
Andrew Geissler9aee5002022-03-30 16:27:02 +000042 :term:`ESDK_LOCALCONF_ALLOW`
Andrew Geisslerc9f78652020-09-18 14:11:35 -050043 are included. Including a variable in the value of
Andrew Geissler9aee5002022-03-30 16:27:02 +000044 :term:`ESDK_LOCALCONF_ALLOW` overrides either of the previous two
Andrew Geisslerc9f78652020-09-18 14:11:35 -050045 filters. The default value is blank.
46
47- Classes inherited globally with
48 :term:`INHERIT` that are listed in
Andrew Geissler9aee5002022-03-30 16:27:02 +000049 :term:`ESDK_CLASS_INHERIT_DISABLE`
50 are disabled. Using :term:`ESDK_CLASS_INHERIT_DISABLE` to disable these
Andrew Geisslerc9f78652020-09-18 14:11:35 -050051 classes is the typical method to disable classes that are problematic
Andrew Geissler595f6302022-01-24 19:11:47 +000052 or unnecessary in the SDK context. The default value disables the
Andrew Geisslerc9f78652020-09-18 14:11:35 -050053 :ref:`buildhistory <ref-classes-buildhistory>`
54 and :ref:`icecc <ref-classes-icecc>` classes.
55
56Additionally, the contents of ``conf/sdk-extra.conf``, when present, are
57appended to the end of ``conf/local.conf`` within the produced SDK,
58without any filtering. The ``sdk-extra.conf`` file is particularly
59useful if you want to set a variable value just for the SDK and not the
60OpenEmbedded build system used to create the SDK.
61
62Adjusting the Extensible SDK to Suit Your Build Host's Setup
63============================================================
64
65In most cases, the extensible SDK defaults should work with your :term:`Build
William A. Kennington IIIac69b482021-06-02 12:28:27 -070066Host`'s setup. However, there are cases when you might consider making
Andrew Geisslerc9f78652020-09-18 14:11:35 -050067adjustments:
68
69- If your SDK configuration inherits additional classes using the
70 :term:`INHERIT` variable and you
71 do not need or want those classes enabled in the SDK, you can
Andrew Geissler9aee5002022-03-30 16:27:02 +000072 disable them by adding them to the :term:`ESDK_CLASS_INHERIT_DISABLE`
Andrew Geissler595f6302022-01-24 19:11:47 +000073 variable as described in the previous section.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050074
75 .. note::
76
77 The default value of
Andrew Geissler9aee5002022-03-30 16:27:02 +000078 ESDK_CLASS_INHERIT_DISABLE
Andrew Geisslerc9f78652020-09-18 14:11:35 -050079 is set using the "?=" operator. Consequently, you will need to
80 either define the entire list by using the "=" operator, or you
Patrick Williams0ca19cc2021-08-16 14:03:13 -050081 will need to append a value using either ":append" or the "+="
Andrew Geissler09036742021-06-25 14:25:14 -050082 operator. You can learn more about these operators in the
83 ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata:basic syntax`"
84 section of the BitBake User Manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050085
86- If you have classes or recipes that add additional tasks to the
87 standard build flow (i.e. the tasks execute as the recipe builds as
88 opposed to being called explicitly), then you need to do one of the
89 following:
90
91 - After ensuring the tasks are :ref:`shared
Andrew Geissler09209ee2020-12-13 08:44:15 -060092 state <overview-manual/concepts:shared state cache>` tasks (i.e. the
Andrew Geisslerc9f78652020-09-18 14:11:35 -050093 output of the task is saved to and can be restored from the shared
94 state cache) or ensuring the tasks are able to be produced quickly
95 from a task that is a shared state task, add the task name to the
96 value of
97 :term:`SDK_RECRDEP_TASKS`.
98
99 - Disable the tasks if they are added by a class and you do not need
100 the functionality the class provides in the extensible SDK. To
Andrew Geissler9aee5002022-03-30 16:27:02 +0000101 disable the tasks, add the class to the :term:`ESDK_CLASS_INHERIT_DISABLE`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500102 variable as described in the previous section.
103
104- Generally, you want to have a shared state mirror set up so users of
105 the SDK can add additional items to the SDK after installation
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500106 without needing to build the items from source. See the
107 ":ref:`sdk-manual/appendix-customizing:providing additional installable extensible sdk content`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500108 section for information.
109
110- If you want users of the SDK to be able to easily update the SDK, you
111 need to set the
112 :term:`SDK_UPDATE_URL`
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500113 variable. For more information, see the
114 ":ref:`sdk-manual/appendix-customizing:providing updates to the extensible sdk after installation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500115 section.
116
117- If you have adjusted the list of files and directories that appear in
118 :term:`COREBASE` (other than
119 layers that are enabled through ``bblayers.conf``), then you must
120 list these files in
121 :term:`COREBASE_FILES` so
122 that the files are copied into the SDK.
123
124- If your OpenEmbedded build system setup uses a different environment
125 setup script other than
126 :ref:`structure-core-script`, then you must
127 set
128 :term:`OE_INIT_ENV_SCRIPT`
129 to point to the environment setup script you use.
130
131 .. note::
132
133 You must also reflect this change in the value used for the
Andrew Geissler09036742021-06-25 14:25:14 -0500134 :term:`COREBASE_FILES` variable as previously described.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500135
136Changing the Extensible SDK Installer Title
137===========================================
138
139You can change the displayed title for the SDK installer by setting the
140:term:`SDK_TITLE` variable and then
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500141rebuilding the SDK installer. For information on how to build an SDK
142installer, see the ":ref:`sdk-manual/appendix-obtain:building an sdk installer`"
143section.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500144
145By default, this title is derived from
146:term:`DISTRO_NAME` when it is
Andrew Geissler09036742021-06-25 14:25:14 -0500147set. If the :term:`DISTRO_NAME` variable is not set, the title is derived
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500148from the :term:`DISTRO` variable.
149
150The
151:ref:`populate_sdk_base <ref-classes-populate-sdk-*>`
Andrew Geissler09036742021-06-25 14:25:14 -0500152class defines the default value of the :term:`SDK_TITLE` variable as
Andrew Geisslerc926e172021-05-07 16:11:35 -0500153follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500154
155 SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK"
156
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700157While there are several ways of changing this variable, an efficient method is
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500158to set the variable in your distribution's configuration file. Doing so
159creates an SDK installer title that applies across your distribution. As
160an example, assume you have your own layer for your distribution named
161"meta-mydistro" and you are using the same type of file hierarchy as
162does the default "poky" distribution. If so, you could update the
Andrew Geissler09036742021-06-25 14:25:14 -0500163:term:`SDK_TITLE` variable in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500164``~/meta-mydistro/conf/distro/mydistro.conf`` file using the following
Andrew Geisslerc926e172021-05-07 16:11:35 -0500165form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500166
167 SDK_TITLE = "your_title"
168
169Providing Updates to the Extensible SDK After Installation
170==========================================================
171
172When you make changes to your configuration or to the metadata and if
173you want those changes to be reflected in installed SDKs, you need to
174perform additional steps. These steps make it possible for anyone using
175the installed SDKs to update the installed SDKs by using the
176``devtool sdk-update`` command:
177
1781. Create a directory that can be shared over HTTP or HTTPS. You can do
179 this by setting up a web server such as an `Apache HTTP
180 Server <https://en.wikipedia.org/wiki/Apache_HTTP_Server>`__ or
181 `Nginx <https://en.wikipedia.org/wiki/Nginx>`__ server in the cloud
182 to host the directory. This directory must contain the published SDK.
183
1842. Set the
185 :term:`SDK_UPDATE_URL`
186 variable to point to the corresponding HTTP or HTTPS URL. Setting
187 this variable causes any SDK built to default to that URL and thus,
188 the user does not have to pass the URL to the ``devtool sdk-update``
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500189 command as described in the
190 ":ref:`sdk-manual/extensible:applying updates to an installed extensible sdk`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500191 section.
192
1933. Build the extensible SDK normally (i.e., use the
194 ``bitbake -c populate_sdk_ext`` imagename command).
195
Andrew Geisslerc926e172021-05-07 16:11:35 -05001964. Publish the SDK using the following command::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500197
198 $ oe-publish-sdk some_path/sdk-installer.sh path_to_shared_http_directory
199
200 You must
201 repeat this step each time you rebuild the SDK with changes that you
202 want to make available through the update mechanism.
203
204Completing the above steps allows users of the existing installed SDKs
205to simply run ``devtool sdk-update`` to retrieve and apply the latest
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500206updates. See the
207":ref:`sdk-manual/extensible:applying updates to an installed extensible sdk`"
208section for further information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500209
210Changing the Default SDK Installation Directory
211===============================================
212
213When you build the installer for the Extensible SDK, the default
214installation directory for the SDK is based on the
215:term:`DISTRO` and
216:term:`SDKEXTPATH` variables from
217within the
218:ref:`populate_sdk_base <ref-classes-populate-sdk-*>`
Andrew Geisslerc926e172021-05-07 16:11:35 -0500219class as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500220
221 SDKEXTPATH ??= "~/${@d.getVar('DISTRO')}_sdk"
222
223You can
224change this default installation directory by specifically setting the
Andrew Geissler09036742021-06-25 14:25:14 -0500225:term:`SDKEXTPATH` variable.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500226
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700227While there are several ways of setting this variable,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500228the method that makes the most sense is to set the variable in your
229distribution's configuration file. Doing so creates an SDK installer
230default directory that applies across your distribution. As an example,
231assume you have your own layer for your distribution named
232"meta-mydistro" and you are using the same type of file hierarchy as
233does the default "poky" distribution. If so, you could update the
Andrew Geissler09036742021-06-25 14:25:14 -0500234:term:`SDKEXTPATH` variable in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500235``~/meta-mydistro/conf/distro/mydistro.conf`` file using the following
Andrew Geisslerc926e172021-05-07 16:11:35 -0500236form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500237
238 SDKEXTPATH = "some_path_for_your_installed_sdk"
239
240After building your installer, running it prompts the user for
241acceptance of the some_path_for_your_installed_sdk directory as the
242default location to install the Extensible SDK.
243
244Providing Additional Installable Extensible SDK Content
245=======================================================
246
247If you want the users of an extensible SDK you build to be able to add
248items to the SDK without requiring the users to build the items from
249source, you need to do a number of things:
250
2511. Ensure the additional items you want the user to be able to install
252 are already built:
253
254 - Build the items explicitly. You could use one or more "meta"
255 recipes that depend on lists of other recipes.
256
257 - Build the "world" target and set
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500258 ``EXCLUDE_FROM_WORLD:pn-``\ recipename for the recipes you do not
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500259 want built. See the
260 :term:`EXCLUDE_FROM_WORLD`
261 variable for additional information.
262
2632. Expose the ``sstate-cache`` directory produced by the build.
264 Typically, you expose this directory by making it available through
265 an `Apache HTTP
266 Server <https://en.wikipedia.org/wiki/Apache_HTTP_Server>`__ or
267 `Nginx <https://en.wikipedia.org/wiki/Nginx>`__ server.
268
2693. Set the appropriate configuration so that the produced SDK knows how
270 to find the configuration. The variable you need to set is
Andrew Geisslerc926e172021-05-07 16:11:35 -0500271 :term:`SSTATE_MIRRORS`::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500272
Andrew Geissler7e0e3c02022-02-25 20:34:39 +0000273 SSTATE_MIRRORS = "file://.* https://example.com/some_path/sstate-cache/PATH"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500274
Andrew Geissler09036742021-06-25 14:25:14 -0500275 You can set the :term:`SSTATE_MIRRORS` variable in two different places:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500276
277 - If the mirror value you are setting is appropriate to be set for
278 both the OpenEmbedded build system that is actually building the
279 SDK and the SDK itself (i.e. the mirror is accessible in both
280 places or it will fail quickly on the OpenEmbedded build system
281 side, and its contents will not interfere with the build), then
282 you can set the variable in your ``local.conf`` or custom distro
Andrew Geissler595f6302022-01-24 19:11:47 +0000283 configuration file. You can then pass the variable to the SDK by
284 adding the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500285
Andrew Geissler9aee5002022-03-30 16:27:02 +0000286 ESDK_LOCALCONF_ALLOW = "SSTATE_MIRRORS"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500287
Andrew Geissler09036742021-06-25 14:25:14 -0500288 - Alternatively, if you just want to set the :term:`SSTATE_MIRRORS`
Patrick Williams2390b1b2022-11-03 13:47:49 -0500289 variable's value for the SDK alone, create a ``conf/sdk-extra.conf``
290 file either in your :term:`Build Directory` or within any
Andrew Geissler09036742021-06-25 14:25:14 -0500291 layer and put your :term:`SSTATE_MIRRORS` setting within that file.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500292
293 .. note::
294
295 This second option is the safest option should you have any
296 doubts as to which method to use when setting
Andrew Geissler09036742021-06-25 14:25:14 -0500297 :term:`SSTATE_MIRRORS`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500298
299Minimizing the Size of the Extensible SDK Installer Download
300============================================================
301
302By default, the extensible SDK bundles the shared state artifacts for
303everything needed to reconstruct the image for which the SDK was built.
304This bundling can lead to an SDK installer file that is a Gigabyte or
305more in size. If the size of this file causes a problem, you can build
306an SDK that has just enough in it to install and provide access to the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500307``devtool command`` by setting the following in your configuration::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500308
309 SDK_EXT_TYPE = "minimal"
310
311Setting
312:term:`SDK_EXT_TYPE` to
313"minimal" produces an SDK installer that is around 35 Mbytes in size,
314which downloads and installs quickly. You need to realize, though, that
315the minimal installer does not install any libraries or tools out of the
316box. These libraries and tools must be installed either "on the fly" or
317through actions you perform using ``devtool`` or explicitly with the
318``devtool sdk-install`` command.
319
320In most cases, when building a minimal SDK you need to also enable
321bringing in the information on a wider range of packages produced by the
322system. Requiring this wider range of information is particularly true
323so that ``devtool add`` is able to effectively map dependencies it
324discovers in a source tree to the appropriate recipes. Additionally, the
325information enables the ``devtool search`` command to return useful
326results.
327
328To facilitate this wider range of information, you would need to set the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500329following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500330
331 SDK_INCLUDE_PKGDATA = "1"
332
333See the :term:`SDK_INCLUDE_PKGDATA` variable for additional information.
334
Andrew Geissler09036742021-06-25 14:25:14 -0500335Setting the :term:`SDK_INCLUDE_PKGDATA` variable as shown causes the "world"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500336target to be built so that information for all of the recipes included
337within it are available. Having these recipes available increases build
338time significantly and increases the size of the SDK installer by 30-80
339Mbytes depending on how many recipes are included in your configuration.
340
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500341You can use ``EXCLUDE_FROM_WORLD:pn-``\ recipename for recipes you want
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500342to exclude. However, it is assumed that you would need to be building
343the "world" target if you want to provide additional items to the SDK.
344Consequently, building for "world" should not represent undue overhead
345in most cases.
346
347.. note::
348
349 If you set
350 SDK_EXT_TYPE
351 to "minimal", then providing a shared state mirror is mandatory so
Andrew Geissler09036742021-06-25 14:25:14 -0500352 that items can be installed as needed. See the
353 :ref:`sdk-manual/appendix-customizing:providing additional installable extensible sdk content`
354 section for more information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500355
356You can explicitly control whether or not to include the toolchain when
357you build an SDK by setting the
358:term:`SDK_INCLUDE_TOOLCHAIN`
359variable to "1". In particular, it is useful to include the toolchain
Andrew Geissler09036742021-06-25 14:25:14 -0500360when you have set :term:`SDK_EXT_TYPE` to "minimal", which by default,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500361excludes the toolchain. Also, it is helpful if you are building a small
362SDK for use with an IDE or some other tool where you do not want to take
363extra steps to install a toolchain.