blob: fb2d78452b2039da4bbab2389f42ab603297b14e [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
3******************************
4Customizing the Extensible SDK
5******************************
6
7This appendix describes customizations you can apply to the extensible
8SDK.
9
10Configuring the Extensible SDK
11==============================
12
13The extensible SDK primarily consists of a pre-configured copy of the
14OpenEmbedded build system from which it was produced. Thus, the SDK's
15configuration is derived using that build system and the filters shown
16in the following list. When these filters are present, the OpenEmbedded
17build system applies them against ``local.conf`` and ``auto.conf``:
18
19- Variables whose values start with "/" are excluded since the
20 assumption is that those values are paths that are likely to be
21 specific to the :term:`Build Host`.
22
23- Variables listed in
24 :term:`SDK_LOCAL_CONF_BLACKLIST`
25 are excluded. These variables are not allowed through from the
26 OpenEmbedded build system configuration into the extensible SDK
27 configuration. Typically, these variables are specific to the machine
28 on which the build system is running and could be problematic as part
29 of the extensible SDK configuration.
30
31 For a list of the variables excluded by default, see the
32 :term:`SDK_LOCAL_CONF_BLACKLIST`
33 in the glossary of the Yocto Project Reference Manual.
34
35- Variables listed in
36 :term:`SDK_LOCAL_CONF_WHITELIST`
37 are included. Including a variable in the value of
38 ``SDK_LOCAL_CONF_WHITELIST`` overrides either of the previous two
39 filters. The default value is blank.
40
41- Classes inherited globally with
42 :term:`INHERIT` that are listed in
43 :term:`SDK_INHERIT_BLACKLIST`
44 are disabled. Using ``SDK_INHERIT_BLACKLIST`` to disable these
45 classes is the typical method to disable classes that are problematic
46 or unnecessary in the SDK context. The default value blacklists the
47 :ref:`buildhistory <ref-classes-buildhistory>`
48 and :ref:`icecc <ref-classes-icecc>` classes.
49
50Additionally, the contents of ``conf/sdk-extra.conf``, when present, are
51appended to the end of ``conf/local.conf`` within the produced SDK,
52without any filtering. The ``sdk-extra.conf`` file is particularly
53useful if you want to set a variable value just for the SDK and not the
54OpenEmbedded build system used to create the SDK.
55
56Adjusting the Extensible SDK to Suit Your Build Host's Setup
57============================================================
58
59In most cases, the extensible SDK defaults should work with your :term:`Build
60Host`'s setup.
61However, some cases exist for which you might consider making
62adjustments:
63
64- If your SDK configuration inherits additional classes using the
65 :term:`INHERIT` variable and you
66 do not need or want those classes enabled in the SDK, you can
67 blacklist them by adding them to the
68 :term:`SDK_INHERIT_BLACKLIST`
69 variable as described in the fourth bullet of the previous section.
70
71 .. note::
72
73 The default value of
74 SDK_INHERIT_BLACKLIST
75 is set using the "?=" operator. Consequently, you will need to
76 either define the entire list by using the "=" operator, or you
77 will need to append a value using either "_append" or the "+="
78 operator. You can learn more about these operators in the "
79 Basic Syntax
80 " section of the BitBake User Manual.
81
82 .
83
84- If you have classes or recipes that add additional tasks to the
85 standard build flow (i.e. the tasks execute as the recipe builds as
86 opposed to being called explicitly), then you need to do one of the
87 following:
88
89 - After ensuring the tasks are :ref:`shared
Andrew Geissler09209ee2020-12-13 08:44:15 -060090 state <overview-manual/concepts:shared state cache>` tasks (i.e. the
Andrew Geisslerc9f78652020-09-18 14:11:35 -050091 output of the task is saved to and can be restored from the shared
92 state cache) or ensuring the tasks are able to be produced quickly
93 from a task that is a shared state task, add the task name to the
94 value of
95 :term:`SDK_RECRDEP_TASKS`.
96
97 - Disable the tasks if they are added by a class and you do not need
98 the functionality the class provides in the extensible SDK. To
99 disable the tasks, add the class to the ``SDK_INHERIT_BLACKLIST``
100 variable as described in the previous section.
101
102- Generally, you want to have a shared state mirror set up so users of
103 the SDK can add additional items to the SDK after installation
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500104 without needing to build the items from source. See the
105 ":ref:`sdk-manual/appendix-customizing:providing additional installable extensible sdk content`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500106 section for information.
107
108- If you want users of the SDK to be able to easily update the SDK, you
109 need to set the
110 :term:`SDK_UPDATE_URL`
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500111 variable. For more information, see the
112 ":ref:`sdk-manual/appendix-customizing:providing updates to the extensible sdk after installation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500113 section.
114
115- If you have adjusted the list of files and directories that appear in
116 :term:`COREBASE` (other than
117 layers that are enabled through ``bblayers.conf``), then you must
118 list these files in
119 :term:`COREBASE_FILES` so
120 that the files are copied into the SDK.
121
122- If your OpenEmbedded build system setup uses a different environment
123 setup script other than
124 :ref:`structure-core-script`, then you must
125 set
126 :term:`OE_INIT_ENV_SCRIPT`
127 to point to the environment setup script you use.
128
129 .. note::
130
131 You must also reflect this change in the value used for the
132 COREBASE_FILES
133 variable as previously described.
134
135Changing the Extensible SDK Installer Title
136===========================================
137
138You can change the displayed title for the SDK installer by setting the
139:term:`SDK_TITLE` variable and then
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500140rebuilding the SDK installer. For information on how to build an SDK
141installer, see the ":ref:`sdk-manual/appendix-obtain:building an sdk installer`"
142section.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500143
144By default, this title is derived from
145:term:`DISTRO_NAME` when it is
146set. If the ``DISTRO_NAME`` variable is not set, the title is derived
147from the :term:`DISTRO` variable.
148
149The
150:ref:`populate_sdk_base <ref-classes-populate-sdk-*>`
151class defines the default value of the ``SDK_TITLE`` variable as
Andrew Geisslerc926e172021-05-07 16:11:35 -0500152follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500153
154 SDK_TITLE ??= "${@d.getVar('DISTRO_NAME') or d.getVar('DISTRO')} SDK"
155
156While several ways exist to change this variable, an efficient method is
157to set the variable in your distribution's configuration file. Doing so
158creates an SDK installer title that applies across your distribution. As
159an example, assume you have your own layer for your distribution named
160"meta-mydistro" and you are using the same type of file hierarchy as
161does the default "poky" distribution. If so, you could update the
162``SDK_TITLE`` variable in the
163``~/meta-mydistro/conf/distro/mydistro.conf`` file using the following
Andrew Geisslerc926e172021-05-07 16:11:35 -0500164form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500165
166 SDK_TITLE = "your_title"
167
168Providing Updates to the Extensible SDK After Installation
169==========================================================
170
171When you make changes to your configuration or to the metadata and if
172you want those changes to be reflected in installed SDKs, you need to
173perform additional steps. These steps make it possible for anyone using
174the installed SDKs to update the installed SDKs by using the
175``devtool sdk-update`` command:
176
1771. Create a directory that can be shared over HTTP or HTTPS. You can do
178 this by setting up a web server such as an `Apache HTTP
179 Server <https://en.wikipedia.org/wiki/Apache_HTTP_Server>`__ or
180 `Nginx <https://en.wikipedia.org/wiki/Nginx>`__ server in the cloud
181 to host the directory. This directory must contain the published SDK.
182
1832. Set the
184 :term:`SDK_UPDATE_URL`
185 variable to point to the corresponding HTTP or HTTPS URL. Setting
186 this variable causes any SDK built to default to that URL and thus,
187 the user does not have to pass the URL to the ``devtool sdk-update``
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500188 command as described in the
189 ":ref:`sdk-manual/extensible:applying updates to an installed extensible sdk`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500190 section.
191
1923. Build the extensible SDK normally (i.e., use the
193 ``bitbake -c populate_sdk_ext`` imagename command).
194
Andrew Geisslerc926e172021-05-07 16:11:35 -05001954. Publish the SDK using the following command::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500196
197 $ oe-publish-sdk some_path/sdk-installer.sh path_to_shared_http_directory
198
199 You must
200 repeat this step each time you rebuild the SDK with changes that you
201 want to make available through the update mechanism.
202
203Completing the above steps allows users of the existing installed SDKs
204to simply run ``devtool sdk-update`` to retrieve and apply the latest
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500205updates. See the
206":ref:`sdk-manual/extensible:applying updates to an installed extensible sdk`"
207section for further information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500208
209Changing the Default SDK Installation Directory
210===============================================
211
212When you build the installer for the Extensible SDK, the default
213installation directory for the SDK is based on the
214:term:`DISTRO` and
215:term:`SDKEXTPATH` variables from
216within the
217:ref:`populate_sdk_base <ref-classes-populate-sdk-*>`
Andrew Geisslerc926e172021-05-07 16:11:35 -0500218class as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500219
220 SDKEXTPATH ??= "~/${@d.getVar('DISTRO')}_sdk"
221
222You can
223change this default installation directory by specifically setting the
224``SDKEXTPATH`` variable.
225
226While a number of ways exist through which you can set this variable,
227the method that makes the most sense is to set the variable in your
228distribution's configuration file. Doing so creates an SDK installer
229default directory that applies across your distribution. As an example,
230assume you have your own layer for your distribution named
231"meta-mydistro" and you are using the same type of file hierarchy as
232does the default "poky" distribution. If so, you could update the
233``SDKEXTPATH`` variable in the
234``~/meta-mydistro/conf/distro/mydistro.conf`` file using the following
Andrew Geisslerc926e172021-05-07 16:11:35 -0500235form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500236
237 SDKEXTPATH = "some_path_for_your_installed_sdk"
238
239After building your installer, running it prompts the user for
240acceptance of the some_path_for_your_installed_sdk directory as the
241default location to install the Extensible SDK.
242
243Providing Additional Installable Extensible SDK Content
244=======================================================
245
246If you want the users of an extensible SDK you build to be able to add
247items to the SDK without requiring the users to build the items from
248source, you need to do a number of things:
249
2501. Ensure the additional items you want the user to be able to install
251 are already built:
252
253 - Build the items explicitly. You could use one or more "meta"
254 recipes that depend on lists of other recipes.
255
256 - Build the "world" target and set
257 ``EXCLUDE_FROM_WORLD_pn-``\ recipename for the recipes you do not
258 want built. See the
259 :term:`EXCLUDE_FROM_WORLD`
260 variable for additional information.
261
2622. Expose the ``sstate-cache`` directory produced by the build.
263 Typically, you expose this directory by making it available through
264 an `Apache HTTP
265 Server <https://en.wikipedia.org/wiki/Apache_HTTP_Server>`__ or
266 `Nginx <https://en.wikipedia.org/wiki/Nginx>`__ server.
267
2683. Set the appropriate configuration so that the produced SDK knows how
269 to find the configuration. The variable you need to set is
Andrew Geisslerc926e172021-05-07 16:11:35 -0500270 :term:`SSTATE_MIRRORS`::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500271
272 SSTATE_MIRRORS = "file://.* http://example.com/some_path/sstate-cache/PATH"
273
274 You can set the
275 ``SSTATE_MIRRORS`` variable in two different places:
276
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
283 configuration file. You can then "whitelist" the variable through
Andrew Geisslerc926e172021-05-07 16:11:35 -0500284 to the SDK by adding the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500285
286 SDK_LOCAL_CONF_WHITELIST = "SSTATE_MIRRORS"
287
288 - Alternatively, if you just want to set the ``SSTATE_MIRRORS``
289 variable's value for the SDK alone, create a
290 ``conf/sdk-extra.conf`` file either in your
291 :term:`Build Directory` or within any
292 layer and put your ``SSTATE_MIRRORS`` setting within that file.
293
294 .. note::
295
296 This second option is the safest option should you have any
297 doubts as to which method to use when setting
298 SSTATE_MIRRORS
299 .
300
301Minimizing the Size of the Extensible SDK Installer Download
302============================================================
303
304By default, the extensible SDK bundles the shared state artifacts for
305everything needed to reconstruct the image for which the SDK was built.
306This bundling can lead to an SDK installer file that is a Gigabyte or
307more in size. If the size of this file causes a problem, you can build
308an SDK that has just enough in it to install and provide access to the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500309``devtool command`` by setting the following in your configuration::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500310
311 SDK_EXT_TYPE = "minimal"
312
313Setting
314:term:`SDK_EXT_TYPE` to
315"minimal" produces an SDK installer that is around 35 Mbytes in size,
316which downloads and installs quickly. You need to realize, though, that
317the minimal installer does not install any libraries or tools out of the
318box. These libraries and tools must be installed either "on the fly" or
319through actions you perform using ``devtool`` or explicitly with the
320``devtool sdk-install`` command.
321
322In most cases, when building a minimal SDK you need to also enable
323bringing in the information on a wider range of packages produced by the
324system. Requiring this wider range of information is particularly true
325so that ``devtool add`` is able to effectively map dependencies it
326discovers in a source tree to the appropriate recipes. Additionally, the
327information enables the ``devtool search`` command to return useful
328results.
329
330To facilitate this wider range of information, you would need to set the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500331following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500332
333 SDK_INCLUDE_PKGDATA = "1"
334
335See the :term:`SDK_INCLUDE_PKGDATA` variable for additional information.
336
337Setting the ``SDK_INCLUDE_PKGDATA`` variable as shown causes the "world"
338target to be built so that information for all of the recipes included
339within it are available. Having these recipes available increases build
340time significantly and increases the size of the SDK installer by 30-80
341Mbytes depending on how many recipes are included in your configuration.
342
343You can use ``EXCLUDE_FROM_WORLD_pn-``\ recipename for recipes you want
344to exclude. However, it is assumed that you would need to be building
345the "world" target if you want to provide additional items to the SDK.
346Consequently, building for "world" should not represent undue overhead
347in most cases.
348
349.. note::
350
351 If you set
352 SDK_EXT_TYPE
353 to "minimal", then providing a shared state mirror is mandatory so
354 that items can be installed as needed. See the "
355 Providing Additional Installable Extensible SDK Content
356 " section for more information.
357
358You can explicitly control whether or not to include the toolchain when
359you build an SDK by setting the
360:term:`SDK_INCLUDE_TOOLCHAIN`
361variable to "1". In particular, it is useful to include the toolchain
362when you have set ``SDK_EXT_TYPE`` to "minimal", which by default,
363excludes the toolchain. Also, it is helpful if you are building a small
364SDK for use with an IDE or some other tool where you do not want to take
365extra steps to install a toolchain.