blob: e7551149a1fb85506ef23c69460bf5c1df83e243 [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**********************
4Yocto Project Concepts
5**********************
6
7This chapter provides explanations for Yocto Project concepts that go
8beyond the surface of "how-to" information and reference (or look-up)
9material. Concepts such as components, the :term:`OpenEmbedded Build System`
10workflow,
11cross-development toolchains, shared state cache, and so forth are
12explained.
13
14Yocto Project Components
15========================
16
17The :term:`BitBake` task executor
18together with various types of configuration files form the
19:term:`OpenEmbedded-Core (OE-Core)`. This section
20overviews these components by describing their use and how they
21interact.
22
23BitBake handles the parsing and execution of the data files. The data
24itself is of various types:
25
26- *Recipes:* Provides details about particular pieces of software.
27
28- *Class Data:* Abstracts common build information (e.g. how to build a
29 Linux kernel).
30
31- *Configuration Data:* Defines machine-specific settings, policy
32 decisions, and so forth. Configuration data acts as the glue to bind
33 everything together.
34
35BitBake knows how to combine multiple data sources together and refers
36to each data source as a layer. For information on layers, see the
Andrew Geissler517393d2023-01-13 08:55:19 -060037":ref:`dev-manual/layers:understanding and creating layers`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050038section of the Yocto Project Development Tasks Manual.
39
40Following are some brief details on these core components. For
41additional information on how these components interact during a build,
42see the
Andrew Geissler09209ee2020-12-13 08:44:15 -060043":ref:`overview-manual/concepts:openembedded build system concepts`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050044section.
45
Andrew Geisslerc9f78652020-09-18 14:11:35 -050046BitBake
47-------
48
49BitBake is the tool at the heart of the :term:`OpenEmbedded Build System`
50and is responsible
51for parsing the :term:`Metadata`, generating
52a list of tasks from it, and then executing those tasks.
53
54This section briefly introduces BitBake. If you want more information on
55BitBake, see the :doc:`BitBake User Manual <bitbake:index>`.
56
57To see a list of the options BitBake supports, use either of the
Andrew Geisslerc926e172021-05-07 16:11:35 -050058following commands::
Andrew Geisslerc9f78652020-09-18 14:11:35 -050059
60 $ bitbake -h
61 $ bitbake --help
62
63The most common usage for BitBake is ``bitbake recipename``, where
64``recipename`` is the name of the recipe you want to build (referred
65to as the "target"). The target often equates to the first part of a
66recipe's filename (e.g. "foo" for a recipe named ``foo_1.3.0-r0.bb``).
67So, to process the ``matchbox-desktop_1.2.3.bb`` recipe file, you might
Andrew Geisslerc926e172021-05-07 16:11:35 -050068type the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -050069
70 $ bitbake matchbox-desktop
71
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050072Several different versions of ``matchbox-desktop`` might exist. BitBake chooses
73the one selected by the distribution configuration. You can get more details
74about how BitBake chooses between different target versions and providers in the
75":ref:`bitbake-user-manual/bitbake-user-manual-execution:preferences`" section
Andrew Geisslerc9f78652020-09-18 14:11:35 -050076of the BitBake User Manual.
77
78BitBake also tries to execute any dependent tasks first. So for example,
79before building ``matchbox-desktop``, BitBake would build a cross
80compiler and ``glibc`` if they had not already been built.
81
82A useful BitBake option to consider is the ``-k`` or ``--continue``
83option. This option instructs BitBake to try and continue processing the
84job as long as possible even after encountering an error. When an error
85occurs, the target that failed and those that depend on it cannot be
86remade. However, when you use this option other dependencies can still
87be processed.
88
Andrew Geisslerc9f78652020-09-18 14:11:35 -050089Recipes
90-------
91
92Files that have the ``.bb`` suffix are "recipes" files. In general, a
93recipe contains information about a single piece of software. This
94information includes the location from which to download the unaltered
95source, any source patches to be applied to that source (if needed),
96which special configuration options to apply, how to compile the source
97files, and how to package the compiled output.
98
99The term "package" is sometimes used to refer to recipes. However, since
100the word "package" is used for the packaged output from the OpenEmbedded
101build system (i.e. ``.ipk`` or ``.deb`` files), this document avoids
102using the term "package" when referring to recipes.
103
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500104Classes
105-------
106
107Class files (``.bbclass``) contain information that is useful to share
Andrew Geissler517393d2023-01-13 08:55:19 -0600108between recipes files. An example is the :ref:`ref-classes-autotools` class,
Patrick Williams03907ee2022-05-01 06:28:52 -0500109which contains common settings for any application that is built with
Patrick Williams7784c422022-11-17 07:29:11 -0600110the :wikipedia:`GNU Autotools <GNU_Autotools>`.
Patrick Williams03907ee2022-05-01 06:28:52 -0500111The ":ref:`ref-manual/classes:Classes`" chapter in the Yocto Project
112Reference Manual provides details about classes and how to use them.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500113
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500114Configurations
115--------------
116
117The configuration files (``.conf``) define various configuration
118variables that govern the OpenEmbedded build process. These files fall
119into several areas that define machine configuration options,
120distribution configuration options, compiler tuning options, general
121common configuration options, and user configuration options in
122``conf/local.conf``, which is found in the :term:`Build Directory`.
123
124
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500125Layers
126======
127
128Layers are repositories that contain related metadata (i.e. sets of
129instructions) that tell the OpenEmbedded build system how to build a
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500130target. :ref:`overview-manual/yp-intro:the yocto project layer model`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500131facilitates collaboration, sharing, customization, and reuse within the
132Yocto Project development environment. Layers logically separate
133information for your project. For example, you can use a layer to hold
134all the configurations for a particular piece of hardware. Isolating
135hardware-specific configurations allows you to share other metadata by
136using a different layer where that metadata might be common across
137several pieces of hardware.
138
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700139There are many layers working in the Yocto Project development environment. The
Patrick Williams03907ee2022-05-01 06:28:52 -0500140:yocto_home:`Yocto Project Compatible Layer Index </software-overview/layers/>`
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600141and :oe_layerindex:`OpenEmbedded Layer Index <>` both contain layers from
142which you can use or leverage.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500143
144By convention, layers in the Yocto Project follow a specific form.
145Conforming to a known structure allows BitBake to make assumptions
146during builds on where to find types of metadata. You can find
147procedures and learn about tools (i.e. ``bitbake-layers``) for creating
148layers suitable for the Yocto Project in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600149":ref:`dev-manual/layers:understanding and creating layers`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500150section of the Yocto Project Development Tasks Manual.
151
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500152OpenEmbedded Build System Concepts
153==================================
154
155This section takes a more detailed look inside the build process used by
156the :term:`OpenEmbedded Build System`,
157which is the build
158system specific to the Yocto Project. At the heart of the build system
159is BitBake, the task executor.
160
161The following diagram represents the high-level workflow of a build. The
162remainder of this section expands on the fundamental input, output,
163process, and metadata logical blocks that make up the workflow.
164
165.. image:: figures/YP-flow-diagram.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500166 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500167
168In general, the build's workflow consists of several functional areas:
169
170- *User Configuration:* metadata you can use to control the build
171 process.
172
173- *Metadata Layers:* Various layers that provide software, machine, and
174 distro metadata.
175
176- *Source Files:* Upstream releases, local projects, and SCMs.
177
178- *Build System:* Processes under the control of
179 :term:`BitBake`. This block expands
180 on how BitBake fetches source, applies patches, completes
181 compilation, analyzes output for package generation, creates and
182 tests packages, generates images, and generates cross-development
183 tools.
184
185- *Package Feeds:* Directories containing output packages (RPM, DEB or
186 IPK), which are subsequently used in the construction of an image or
187 Software Development Kit (SDK), produced by the build system. These
188 feeds can also be copied and shared using a web server or other means
189 to facilitate extending or updating existing images on devices at
190 runtime if runtime package management is enabled.
191
192- *Images:* Images produced by the workflow.
193
194- *Application Development SDK:* Cross-development tools that are
195 produced along with an image or separately with BitBake.
196
197User Configuration
198------------------
199
200User configuration helps define the build. Through user configuration,
201you can tell BitBake the target architecture for which you are building
202the image, where to store downloaded source, and other build properties.
203
204The following figure shows an expanded representation of the "User
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500205Configuration" box of the :ref:`general workflow
206figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500207
208.. image:: figures/user-configuration.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500209 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500210
211BitBake needs some basic configuration files in order to complete a
212build. These files are ``*.conf`` files. The minimally necessary ones
213reside as example files in the ``build/conf`` directory of the
214:term:`Source Directory`. For simplicity,
215this section refers to the Source Directory as the "Poky Directory."
216
217When you clone the :term:`Poky` Git repository
218or you download and unpack a Yocto Project release, you can set up the
219Source Directory to be named anything you want. For this discussion, the
220cloned repository uses the default name ``poky``.
221
222.. note::
223
224 The Poky repository is primarily an aggregation of existing
225 repositories. It is not a canonical upstream source.
226
227The ``meta-poky`` layer inside Poky contains a ``conf`` directory that
228has example configuration files. These example files are used as a basis
229for creating actual configuration files when you source
230:ref:`structure-core-script`, which is the
231build environment script.
232
Patrick Williams2390b1b2022-11-03 13:47:49 -0500233Sourcing the build environment script creates a :term:`Build Directory`
234if one does not already exist. BitBake uses the :term:`Build Directory`
235for all its work during builds. The Build Directory has a ``conf`` directory
236that contains default versions of your ``local.conf`` and ``bblayers.conf``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500237configuration files. These default configuration files are created only
Patrick Williams2390b1b2022-11-03 13:47:49 -0500238if versions do not already exist in the :term:`Build Directory` at the time you
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500239source the build environment setup script.
240
241Because the Poky repository is fundamentally an aggregation of existing
242repositories, some users might be familiar with running the
243:ref:`structure-core-script` script in the context of separate
244:term:`OpenEmbedded-Core (OE-Core)` and BitBake
245repositories rather than a single Poky repository. This discussion
246assumes the script is executed from within a cloned or unpacked version
247of Poky.
248
249Depending on where the script is sourced, different sub-scripts are
Patrick Williams2390b1b2022-11-03 13:47:49 -0500250called to set up the :term:`Build Directory` (Yocto or OpenEmbedded).
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500251Specifically, the script ``scripts/oe-setup-builddir`` inside the poky
Patrick Williams2390b1b2022-11-03 13:47:49 -0500252directory sets up the :term:`Build Directory` and seeds the directory (if
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500253necessary) with configuration files appropriate for the Yocto Project
254development environment.
255
256.. note::
257
258 The
259 scripts/oe-setup-builddir
260 script uses the
261 ``$TEMPLATECONF``
262 variable to determine which sample configuration files to locate.
263
264The ``local.conf`` file provides many basic variables that define a
265build environment. Here is a list of a few. To see the default
266configurations in a ``local.conf`` file created by the build environment
267script, see the
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500268:yocto_git:`local.conf.sample </poky/tree/meta-poky/conf/templates/default/local.conf.sample>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500269in the ``meta-poky`` layer:
270
271- *Target Machine Selection:* Controlled by the
272 :term:`MACHINE` variable.
273
274- *Download Directory:* Controlled by the
275 :term:`DL_DIR` variable.
276
277- *Shared State Directory:* Controlled by the
278 :term:`SSTATE_DIR` variable.
279
280- *Build Output:* Controlled by the
281 :term:`TMPDIR` variable.
282
283- *Distribution Policy:* Controlled by the
284 :term:`DISTRO` variable.
285
286- *Packaging Format:* Controlled by the
287 :term:`PACKAGE_CLASSES`
288 variable.
289
290- *SDK Target Architecture:* Controlled by the
291 :term:`SDKMACHINE` variable.
292
293- *Extra Image Packages:* Controlled by the
294 :term:`EXTRA_IMAGE_FEATURES`
295 variable.
296
297.. note::
298
Andrew Geissler9aee5002022-03-30 16:27:02 +0000299 Configurations set in the ``conf/local.conf`` file can also be set
300 in the ``conf/site.conf`` and ``conf/auto.conf`` configuration files.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500301
302The ``bblayers.conf`` file tells BitBake what layers you want considered
303during the build. By default, the layers listed in this file include
304layers minimally needed by the build system. However, you must manually
305add any custom layers you have created. You can find more information on
306working with the ``bblayers.conf`` file in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600307":ref:`dev-manual/layers:enabling your layer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500308section in the Yocto Project Development Tasks Manual.
309
310The files ``site.conf`` and ``auto.conf`` are not created by the
311environment initialization script. If you want the ``site.conf`` file,
Andrew Geisslerd5838332022-05-27 11:33:10 -0500312you need to create it yourself. The ``auto.conf`` file is typically
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500313created by an autobuilder:
314
315- *site.conf:* You can use the ``conf/site.conf`` configuration
316 file to configure multiple build directories. For example, suppose
317 you had several build environments and they shared some common
318 features. You can set these default build properties here. A good
319 example is perhaps the packaging format to use through the
Andrew Geisslerd5838332022-05-27 11:33:10 -0500320 :term:`PACKAGE_CLASSES` variable.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500321
322- *auto.conf:* The file is usually created and written to by an
323 autobuilder. The settings put into the file are typically the same as
324 you would find in the ``conf/local.conf`` or the ``conf/site.conf``
325 files.
326
327You can edit all configuration files to further define any particular
328build environment. This process is represented by the "User
329Configuration Edits" box in the figure.
330
331When you launch your build with the ``bitbake target`` command, BitBake
332sorts out the configurations to ultimately define your build
333environment. It is important to understand that the
334:term:`OpenEmbedded Build System` reads the
335configuration files in a specific order: ``site.conf``, ``auto.conf``,
336and ``local.conf``. And, the build system applies the normal assignment
337statement rules as described in the
338":doc:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata`" chapter
339of the BitBake User Manual. Because the files are parsed in a specific
340order, variable assignments for the same variable could be affected. For
341example, if the ``auto.conf`` file and the ``local.conf`` set variable1
342to different values, because the build system parses ``local.conf``
343after ``auto.conf``, variable1 is assigned the value from the
344``local.conf`` file.
345
346Metadata, Machine Configuration, and Policy Configuration
347---------------------------------------------------------
348
349The previous section described the user configurations that define
350BitBake's global behavior. This section takes a closer look at the
351layers the build system uses to further control the build. These layers
352provide Metadata for the software, machine, and policies.
353
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700354In general, there are three types of layer input. You can see them below
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500355the "User Configuration" box in the `general workflow
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500356figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500357
358- *Metadata (.bb + Patches):* Software layers containing
359 user-supplied recipe files, patches, and append files. A good example
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600360 of a software layer might be the :oe_layer:`meta-qt5 layer </meta-qt5>`
361 from the :oe_layerindex:`OpenEmbedded Layer Index <>`. This layer is for
362 version 5.0 of the popular `Qt <https://wiki.qt.io/About_Qt>`__
363 cross-platform application development framework for desktop, embedded and
364 mobile.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500365
366- *Machine BSP Configuration:* Board Support Package (BSP) layers (i.e.
367 "BSP Layer" in the following figure) providing machine-specific
368 configurations. This type of information is specific to a particular
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500369 target architecture. A good example of a BSP layer from the
370 :ref:`overview-manual/yp-intro:reference distribution (poky)` is the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600371 :yocto_git:`meta-yocto-bsp </poky/tree/meta-yocto-bsp>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500372 layer.
373
374- *Policy Configuration:* Distribution Layers (i.e. "Distro Layer" in
375 the following figure) providing top-level or general policies for the
376 images or SDKs being built for a particular distribution. For
377 example, in the Poky Reference Distribution the distro layer is the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600378 :yocto_git:`meta-poky </poky/tree/meta-poky>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500379 layer. Within the distro layer is a ``conf/distro`` directory that
380 contains distro configuration files (e.g.
Andrew Geissler09209ee2020-12-13 08:44:15 -0600381 :yocto_git:`poky.conf </poky/tree/meta-poky/conf/distro/poky.conf>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500382 that contain many policy configurations for the Poky distribution.
383
384The following figure shows an expanded representation of these three
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500385layers from the :ref:`general workflow figure
386<overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500387
388.. image:: figures/layer-input.png
389 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -0500390 :width: 70%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500391
392In general, all layers have a similar structure. They all contain a
393licensing file (e.g. ``COPYING.MIT``) if the layer is to be distributed,
394a ``README`` file as good practice and especially if the layer is to be
395distributed, a configuration directory, and recipe directories. You can
396learn about the general structure for layers used with the Yocto Project
397in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600398":ref:`dev-manual/layers:creating your own layer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500399section in the
400Yocto Project Development Tasks Manual. For a general discussion on
401layers and the many layers from which you can draw, see the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500402":ref:`overview-manual/concepts:layers`" and
403":ref:`overview-manual/yp-intro:the yocto project layer model`" sections both
404earlier in this manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500405
406If you explored the previous links, you discovered some areas where many
Andrew Geissler09209ee2020-12-13 08:44:15 -0600407layers that work with the Yocto Project exist. The :yocto_git:`Source
408Repositories <>` also shows layers categorized under "Yocto Metadata Layers."
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500409
410.. note::
411
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700412 There are layers in the Yocto Project Source Repositories that cannot be
413 found in the OpenEmbedded Layer Index. Such layers are either
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500414 deprecated or experimental in nature.
415
416BitBake uses the ``conf/bblayers.conf`` file, which is part of the user
417configuration, to find what layers it should be using as part of the
418build.
419
420Distro Layer
421~~~~~~~~~~~~
422
423The distribution layer provides policy configurations for your
424distribution. Best practices dictate that you isolate these types of
425configurations into their own layer. Settings you provide in
426``conf/distro/distro.conf`` override similar settings that BitBake finds
Patrick Williams2390b1b2022-11-03 13:47:49 -0500427in your ``conf/local.conf`` file in the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500428
429The following list provides some explanation and references for what you
430typically find in the distribution layer:
431
432- *classes:* Class files (``.bbclass``) hold common functionality that
433 can be shared among recipes in the distribution. When your recipes
434 inherit a class, they take on the settings and functions for that
435 class. You can read more about class files in the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600436 ":ref:`ref-manual/classes:Classes`" chapter of the Yocto
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500437 Reference Manual.
438
439- *conf:* This area holds configuration files for the layer
440 (``conf/layer.conf``), the distribution
441 (``conf/distro/distro.conf``), and any distribution-wide include
442 files.
443
444- *recipes-*:* Recipes and append files that affect common
445 functionality across the distribution. This area could include
446 recipes and append files to add distribution-specific configuration,
447 initialization scripts, custom image recipes, and so forth. Examples
448 of ``recipes-*`` directories are ``recipes-core`` and
449 ``recipes-extra``. Hierarchy and contents within a ``recipes-*``
450 directory can vary. Generally, these directories contain recipe files
451 (``*.bb``), recipe append files (``*.bbappend``), directories that
452 are distro-specific for configuration files, and so forth.
453
454BSP Layer
455~~~~~~~~~
456
457The BSP Layer provides machine configurations that target specific
458hardware. Everything in this layer is specific to the machine for which
459you are building the image or the SDK. A common structure or form is
460defined for BSP layers. You can learn more about this structure in the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600461:doc:`/bsp-guide/index`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500462
463.. note::
464
465 In order for a BSP layer to be considered compliant with the Yocto
466 Project, it must meet some structural requirements.
467
468The BSP Layer's configuration directory contains configuration files for
469the machine (``conf/machine/machine.conf``) and, of course, the layer
470(``conf/layer.conf``).
471
472The remainder of the layer is dedicated to specific recipes by function:
473``recipes-bsp``, ``recipes-core``, ``recipes-graphics``,
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700474``recipes-kernel``, and so forth. There can be metadata for multiple
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500475formfactors, graphics support systems, and so forth.
476
477.. note::
478
479 While the figure shows several
480 recipes-\*
481 directories, not all these directories appear in all BSP layers.
482
483Software Layer
484~~~~~~~~~~~~~~
485
486The software layer provides the Metadata for additional software
487packages used during the build. This layer does not include Metadata
488that is specific to the distribution or the machine, which are found in
489their respective layers.
490
491This layer contains any recipes, append files, and patches, that your
492project needs.
493
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500494Sources
495-------
496
497In order for the OpenEmbedded build system to create an image or any
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500498target, it must be able to access source files. The :ref:`general workflow
499figure <overview-manual/concepts:openembedded build system concepts>`
500represents source files using the "Upstream Project Releases", "Local
501Projects", and "SCMs (optional)" boxes. The figure represents mirrors,
502which also play a role in locating source files, with the "Source
503Materials" box.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500504
505The method by which source files are ultimately organized is a function
506of the project. For example, for released software, projects tend to use
507tarballs or other archived files that can capture the state of a release
508guaranteeing that it is statically represented. On the other hand, for a
509project that is more dynamic or experimental in nature, a project might
510keep source files in a repository controlled by a Source Control Manager
511(SCM) such as Git. Pulling source from a repository allows you to
512control the point in the repository (the revision) from which you want
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700513to build software. A combination of the two is also possible.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500514
515BitBake uses the :term:`SRC_URI`
516variable to point to source files regardless of their location. Each
Andrew Geissler09036742021-06-25 14:25:14 -0500517recipe must have a :term:`SRC_URI` variable that points to the source.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500518
519Another area that plays a significant role in where source files come
520from is pointed to by the
521:term:`DL_DIR` variable. This area is
522a cache that can hold previously downloaded source. You can also
523instruct the OpenEmbedded build system to create tarballs from Git
524repositories, which is not the default behavior, and store them in the
Andrew Geissler09036742021-06-25 14:25:14 -0500525:term:`DL_DIR` by using the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500526:term:`BB_GENERATE_MIRROR_TARBALLS`
527variable.
528
Andrew Geissler09036742021-06-25 14:25:14 -0500529Judicious use of a :term:`DL_DIR` directory can save the build system a trip
Patrick Williams2390b1b2022-11-03 13:47:49 -0500530across the Internet when looking for files. A good method for using a download
531directory is to have :term:`DL_DIR` point to an area outside of your
532:term:`Build Directory`. Doing so allows you to safely delete the
533:term:`Build Directory` if needed without fear of removing any downloaded
534source file.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500535
536The remainder of this section provides a deeper look into the source
537files and the mirrors. Here is a more detailed look at the source file
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500538area of the :ref:`general workflow figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500539
540.. image:: figures/source-input.png
541 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -0500542 :width: 70%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500543
544Upstream Project Releases
545~~~~~~~~~~~~~~~~~~~~~~~~~
546
547Upstream project releases exist anywhere in the form of an archived file
548(e.g. tarball or zip file). These files correspond to individual
549recipes. For example, the figure uses specific releases each for
550BusyBox, Qt, and Dbus. An archive file can be for any released product
551that can be built using a recipe.
552
553Local Projects
554~~~~~~~~~~~~~~
555
556Local projects are custom bits of software the user provides. These bits
Andrew Geissler615f2f12022-07-15 14:00:58 -0500557reside somewhere local to a project --- perhaps a directory into which the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500558user checks in items (e.g. a local directory containing a development
559source tree used by the group).
560
Andrew Geissler517393d2023-01-13 08:55:19 -0600561The canonical method through which to include a local project is to use the
562:ref:`ref-classes-externalsrc` class to include that local project. You use
563either the ``local.conf`` or a recipe's append file to override or set the
564recipe to point to the local directory on your disk to pull in the whole
565source tree.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500566
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500567Source Control Managers (Optional)
568~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
569
570Another place from which the build system can get source files is with
Andrew Geisslerfc113ea2023-03-31 09:59:46 -0500571:ref:`bitbake-user-manual/bitbake-user-manual-fetching:fetchers` employing
572various Source Control Managers (SCMs) such as Git or Subversion. In such
573cases, a repository is cloned or checked out. The :ref:`ref-tasks-fetch` task
574inside BitBake uses the :term:`SRC_URI` variable and the argument's prefix to
575determine the correct fetcher module.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500576
577.. note::
578
579 For information on how to have the OpenEmbedded build system generate
Andrew Geissler517393d2023-01-13 08:55:19 -0600580 tarballs for Git repositories and place them in the :term:`DL_DIR`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500581 directory, see the :term:`BB_GENERATE_MIRROR_TARBALLS`
582 variable in the Yocto Project Reference Manual.
583
584When fetching a repository, BitBake uses the
585:term:`SRCREV` variable to determine
586the specific revision from which to build.
587
588Source Mirror(s)
589~~~~~~~~~~~~~~~~
590
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700591There are two kinds of mirrors: pre-mirrors and regular mirrors. The
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500592:term:`PREMIRRORS` and
593:term:`MIRRORS` variables point to
594these, respectively. BitBake checks pre-mirrors before looking upstream
595for any source files. Pre-mirrors are appropriate when you have a shared
596directory that is not a directory defined by the
597:term:`DL_DIR` variable. A Pre-mirror
598typically points to a shared directory that is local to your
599organization.
600
601Regular mirrors can be any site across the Internet that is used as an
602alternative location for source code should the primary site not be
603functioning for some reason or another.
604
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500605Package Feeds
606-------------
607
608When the OpenEmbedded build system generates an image or an SDK, it gets
609the packages from a package feed area located in the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500610:term:`Build Directory`. The :ref:`general workflow figure
611<overview-manual/concepts:openembedded build system concepts>`
612shows this package feeds area in the upper-right corner.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500613
614This section looks a little closer into the package feeds area used by
615the build system. Here is a more detailed look at the area:
616
617.. image:: figures/package-feeds.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500618 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500619
620Package feeds are an intermediary step in the build process. The
621OpenEmbedded build system provides classes to generate different package
622types, and you specify which classes to enable through the
623:term:`PACKAGE_CLASSES`
624variable. Before placing the packages into package feeds, the build
625process validates them with generated output quality assurance checks
Andrew Geissler517393d2023-01-13 08:55:19 -0600626through the :ref:`ref-classes-insane` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500627
Patrick Williams2390b1b2022-11-03 13:47:49 -0500628The package feed area resides in the :term:`Build Directory`. The directory the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500629build system uses to temporarily store packages is determined by a
630combination of variables and the particular package manager in use. See
631the "Package Feeds" box in the illustration and note the information to
632the right of that area. In particular, the following defines where
633package files are kept:
634
Patrick Williams2390b1b2022-11-03 13:47:49 -0500635- :term:`DEPLOY_DIR`: Defined as ``tmp/deploy`` in the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500636
637- ``DEPLOY_DIR_*``: Depending on the package manager used, the package
638 type sub-folder. Given RPM, IPK, or DEB packaging and tarball
639 creation, the
640 :term:`DEPLOY_DIR_RPM`,
641 :term:`DEPLOY_DIR_IPK`,
642 :term:`DEPLOY_DIR_DEB`, or
643 :term:`DEPLOY_DIR_TAR`,
644 variables are used, respectively.
645
646- :term:`PACKAGE_ARCH`: Defines
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700647 architecture-specific sub-folders. For example, packages could be
648 available for the i586 or qemux86 architectures.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500649
650BitBake uses the
651:ref:`do_package_write_* <ref-tasks-package_write_deb>`
652tasks to generate packages and place them into the package holding area
653(e.g. ``do_package_write_ipk`` for IPK packages). See the
654":ref:`ref-tasks-package_write_deb`",
655":ref:`ref-tasks-package_write_ipk`",
656":ref:`ref-tasks-package_write_rpm`",
657and
658":ref:`ref-tasks-package_write_tar`"
659sections in the Yocto Project Reference Manual for additional
660information. As an example, consider a scenario where an IPK packaging
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700661manager is being used and there is package architecture support for both
662i586 and qemux86. Packages for the i586 architecture are placed in
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500663``build/tmp/deploy/ipk/i586``, while packages for the qemux86
664architecture are placed in ``build/tmp/deploy/ipk/qemux86``.
665
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500666BitBake Tool
667------------
668
669The OpenEmbedded build system uses
670:term:`BitBake` to produce images and
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500671Software Development Kits (SDKs). You can see from the :ref:`general workflow
672figure <overview-manual/concepts:openembedded build system concepts>`,
673the BitBake area consists of several functional areas. This section takes a
674closer look at each of those areas.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500675
676.. note::
677
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700678 Documentation for the BitBake tool is available separately. See the
Andrew Geisslerfc113ea2023-03-31 09:59:46 -0500679 :doc:`BitBake User Manual <bitbake:index>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500680 for reference material on BitBake.
681
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500682Source Fetching
683~~~~~~~~~~~~~~~
684
685The first stages of building a recipe are to fetch and unpack the source
686code:
687
688.. image:: figures/source-fetching.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500689 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500690
Patrick Williams2390b1b2022-11-03 13:47:49 -0500691The :ref:`ref-tasks-fetch` and :ref:`ref-tasks-unpack` tasks fetch
692the source files and unpack them into the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500693
694.. note::
695
Patrick Williams2194f502022-10-16 14:26:09 -0500696 For every local file (e.g. ``file://``) that is part of a recipe's
697 :term:`SRC_URI` statement, the OpenEmbedded build system takes a
698 checksum of the file for the recipe and inserts the checksum into
699 the signature for the :ref:`ref-tasks-fetch` task. If any local
700 file has been modified, the :ref:`ref-tasks-fetch` task and all
701 tasks that depend on it are re-executed.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500702
Patrick Williams2390b1b2022-11-03 13:47:49 -0500703By default, everything is accomplished in the :term:`Build Directory`, which has
704a defined structure. For additional general information on the
705:term:`Build Directory`, see the ":ref:`structure-core-build`" section in
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500706the Yocto Project Reference Manual.
707
Patrick Williams2390b1b2022-11-03 13:47:49 -0500708Each recipe has an area in the :term:`Build Directory` where the unpacked
709source code resides. The :term:`S` variable points to this area for a recipe's
710unpacked source code. The name of that directory for any given recipe is
711defined from several different variables. The preceding figure and the
712following list describe the :term:`Build Directory`'s hierarchy:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500713
714- :term:`TMPDIR`: The base directory
715 where the OpenEmbedded build system performs all its work during the
716 build. The default base directory is the ``tmp`` directory.
717
718- :term:`PACKAGE_ARCH`: The
719 architecture of the built package or packages. Depending on the
720 eventual destination of the package or packages (i.e. machine
721 architecture, :term:`Build Host`, SDK, or
Andrew Geissler09036742021-06-25 14:25:14 -0500722 specific machine), :term:`PACKAGE_ARCH` varies. See the variable's
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500723 description for details.
724
725- :term:`TARGET_OS`: The operating
726 system of the target device. A typical value would be "linux" (e.g.
727 "qemux86-poky-linux").
728
729- :term:`PN`: The name of the recipe used
730 to build the package. This variable can have multiple meanings.
Andrew Geissler09036742021-06-25 14:25:14 -0500731 However, when used in the context of input files, :term:`PN` represents
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500732 the name of the recipe.
733
734- :term:`WORKDIR`: The location
735 where the OpenEmbedded build system builds a recipe (i.e. does the
736 work to create the package).
737
738 - :term:`PV`: The version of the
739 recipe used to build the package.
740
741 - :term:`PR`: The revision of the
742 recipe used to build the package.
743
744- :term:`S`: Contains the unpacked source
745 files for a given recipe.
746
747 - :term:`BPN`: The name of the recipe
Andrew Geissler09036742021-06-25 14:25:14 -0500748 used to build the package. The :term:`BPN` variable is a version of
Andrew Geissler5f350902021-07-23 13:09:54 -0400749 the :term:`PN` variable but with common prefixes and suffixes removed.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500750
751 - :term:`PV`: The version of the
752 recipe used to build the package.
753
754.. note::
755
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700756 In the previous figure, notice that there are two sample hierarchies:
757 one based on package architecture (i.e. :term:`PACKAGE_ARCH`)
758 and one based on a machine (i.e. :term:`MACHINE`).
759 The underlying structures are identical. The differentiator being
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500760 what the OpenEmbedded build system is using as a build target (e.g.
761 general architecture, a build host, an SDK, or a specific machine).
762
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500763Patching
764~~~~~~~~
765
766Once source code is fetched and unpacked, BitBake locates patch files
767and applies them to the source files:
768
769.. image:: figures/patching.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500770 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500771
772The :ref:`ref-tasks-patch` task uses a
773recipe's :term:`SRC_URI` statements
774and the :term:`FILESPATH` variable
775to locate applicable patch files.
776
777Default processing for patch files assumes the files have either
Andrew Geissler09036742021-06-25 14:25:14 -0500778``*.patch`` or ``*.diff`` file types. You can use :term:`SRC_URI` parameters
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500779to change the way the build system recognizes patch files. See the
780:ref:`ref-tasks-patch` task for more
781information.
782
783BitBake finds and applies multiple patches for a single recipe in the
Andrew Geissler09036742021-06-25 14:25:14 -0500784order in which it locates the patches. The :term:`FILESPATH` variable
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500785defines the default set of directories that the build system uses to
786search for patch files. Once found, patches are applied to the recipe's
787source files, which are located in the
788:term:`S` directory.
789
790For more information on how the source directories are created, see the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500791":ref:`overview-manual/concepts:source fetching`" section. For
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500792more information on how to create patches and how the build system
793processes patches, see the
Andrew Geissler517393d2023-01-13 08:55:19 -0600794":ref:`dev-manual/new-recipe:patching code`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500795section in the
796Yocto Project Development Tasks Manual. You can also see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600797":ref:`sdk-manual/extensible:use \`\`devtool modify\`\` to modify the source of an existing component`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500798section in the Yocto Project Application Development and the Extensible
799Software Development Kit (SDK) manual and the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600800":ref:`kernel-dev/common:using traditional kernel development to patch the kernel`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500801section in the Yocto Project Linux Kernel Development Manual.
802
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500803Configuration, Compilation, and Staging
804~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
805
806After source code is patched, BitBake executes tasks that configure and
807compile the source code. Once compilation occurs, the files are copied
808to a holding area (staged) in preparation for packaging:
809
810.. image:: figures/configuration-compile-autoreconf.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500811 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500812
813This step in the build process consists of the following tasks:
814
815- :ref:`ref-tasks-prepare_recipe_sysroot`:
816 This task sets up the two sysroots in
817 ``${``\ :term:`WORKDIR`\ ``}``
818 (i.e. ``recipe-sysroot`` and ``recipe-sysroot-native``) so that
819 during the packaging phase the sysroots can contain the contents of
820 the
821 :ref:`ref-tasks-populate_sysroot`
822 tasks of the recipes on which the recipe containing the tasks
823 depends. A sysroot exists for both the target and for the native
824 binaries, which run on the host system.
825
826- *do_configure*: This task configures the source by enabling and
827 disabling any build-time and configuration options for the software
828 being built. Configurations can come from the recipe itself as well
829 as from an inherited class. Additionally, the software itself might
830 configure itself depending on the target for which it is being built.
831
832 The configurations handled by the
833 :ref:`ref-tasks-configure` task
834 are specific to configurations for the source code being built by the
835 recipe.
836
Andrew Geissler517393d2023-01-13 08:55:19 -0600837 If you are using the :ref:`ref-classes-autotools` class,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500838 you can add additional configuration options by using the
839 :term:`EXTRA_OECONF` or
840 :term:`PACKAGECONFIG_CONFARGS`
841 variables. For information on how this variable works within that
Andrew Geissler517393d2023-01-13 08:55:19 -0600842 class, see the :ref:`ref-classes-autotools` class
Patrick Williams975a06f2022-10-21 14:42:47 -0500843 :yocto_git:`here </poky/tree/meta/classes-recipe/autotools.bbclass>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500844
845- *do_compile*: Once a configuration task has been satisfied,
846 BitBake compiles the source using the
847 :ref:`ref-tasks-compile` task.
848 Compilation occurs in the directory pointed to by the
849 :term:`B` variable. Realize that the
Andrew Geissler09036742021-06-25 14:25:14 -0500850 :term:`B` directory is, by default, the same as the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500851 :term:`S` directory.
852
853- *do_install*: After compilation completes, BitBake executes the
854 :ref:`ref-tasks-install` task.
Andrew Geissler09036742021-06-25 14:25:14 -0500855 This task copies files from the :term:`B` directory and places them in a
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500856 holding area pointed to by the :term:`D`
857 variable. Packaging occurs later using files from this holding
858 directory.
859
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500860Package Splitting
861~~~~~~~~~~~~~~~~~
862
863After source code is configured, compiled, and staged, the build system
864analyzes the results and splits the output into packages:
865
866.. image:: figures/analysis-for-package-splitting.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500867 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500868
869The :ref:`ref-tasks-package` and
870:ref:`ref-tasks-packagedata`
871tasks combine to analyze the files found in the
872:term:`D` directory and split them into
873subsets based on available packages and files. Analysis involves the
874following as well as other items: splitting out debugging symbols,
875looking at shared library dependencies between packages, and looking at
876package relationships.
877
Patrick Williams2194f502022-10-16 14:26:09 -0500878The :ref:`ref-tasks-packagedata` task creates package metadata based on the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500879analysis such that the build system can generate the final packages. The
880:ref:`ref-tasks-populate_sysroot`
881task stages (copies) a subset of the files installed by the
882:ref:`ref-tasks-install` task into
883the appropriate sysroot. Working, staged, and intermediate results of
884the analysis and package splitting process use several areas:
885
886- :term:`PKGD`: The destination
887 directory (i.e. ``package``) for packages before they are split into
888 individual packages.
889
890- :term:`PKGDESTWORK`: A
Patrick Williams2194f502022-10-16 14:26:09 -0500891 temporary work area (i.e. ``pkgdata``) used by the :ref:`ref-tasks-package`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500892 task to save package metadata.
893
894- :term:`PKGDEST`: The parent
895 directory (i.e. ``packages-split``) for packages after they have been
896 split.
897
898- :term:`PKGDATA_DIR`: A shared,
899 global-state directory that holds packaging metadata generated during
900 the packaging process. The packaging process copies metadata from
Andrew Geissler09036742021-06-25 14:25:14 -0500901 :term:`PKGDESTWORK` to the :term:`PKGDATA_DIR` area where it becomes globally
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500902 available.
903
904- :term:`STAGING_DIR_HOST`:
905 The path for the sysroot for the system on which a component is built
906 to run (i.e. ``recipe-sysroot``).
907
908- :term:`STAGING_DIR_NATIVE`:
909 The path for the sysroot used when building components for the build
910 host (i.e. ``recipe-sysroot-native``).
911
912- :term:`STAGING_DIR_TARGET`:
913 The path for the sysroot used when a component that is built to
914 execute on a system and it generates code for yet another machine
Andrew Geissler517393d2023-01-13 08:55:19 -0600915 (e.g. :ref:`ref-classes-cross-canadian` recipes).
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500916
917The :term:`FILES` variable defines the
918files that go into each package in
919:term:`PACKAGES`. If you want
920details on how this is accomplished, you can look at
Patrick Williams975a06f2022-10-21 14:42:47 -0500921:yocto_git:`package.bbclass </poky/tree/meta/classes-global/package.bbclass>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500922
923Depending on the type of packages being created (RPM, DEB, or IPK), the
924:ref:`do_package_write_* <ref-tasks-package_write_deb>`
925task creates the actual packages and places them in the Package Feed
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500926area, which is ``${TMPDIR}/deploy``. You can see the
927":ref:`overview-manual/concepts:package feeds`" section for more detail on
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500928that part of the build process.
929
930.. note::
931
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700932 Support for creating feeds directly from the ``deploy/*``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500933 directories does not exist. Creating such feeds usually requires some
934 kind of feed maintenance mechanism that would upload the new packages
935 into an official package feed (e.g. the Ångström distribution). This
936 functionality is highly distribution-specific and thus is not
937 provided out of the box.
938
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500939Image Generation
940~~~~~~~~~~~~~~~~
941
942Once packages are split and stored in the Package Feeds area, the build
943system uses BitBake to generate the root filesystem image:
944
945.. image:: figures/image-generation.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500946 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500947
948The image generation process consists of several stages and depends on
949several tasks and variables. The
950:ref:`ref-tasks-rootfs` task creates
951the root filesystem (file and directory structure) for an image. This
952task uses several key variables to help create the list of packages to
953actually install:
954
955- :term:`IMAGE_INSTALL`: Lists
956 out the base set of packages from which to install from the Package
957 Feeds area.
958
959- :term:`PACKAGE_EXCLUDE`:
960 Specifies packages that should not be installed into the image.
961
962- :term:`IMAGE_FEATURES`:
963 Specifies features to include in the image. Most of these features
964 map to additional packages for installation.
965
966- :term:`PACKAGE_CLASSES`:
967 Specifies the package backend (e.g. RPM, DEB, or IPK) to use and
968 consequently helps determine where to locate packages within the
969 Package Feeds area.
970
971- :term:`IMAGE_LINGUAS`:
972 Determines the language(s) for which additional language support
973 packages are installed.
974
975- :term:`PACKAGE_INSTALL`:
976 The final list of packages passed to the package manager for
977 installation into the image.
978
979With :term:`IMAGE_ROOTFS`
980pointing to the location of the filesystem under construction and the
Andrew Geissler09036742021-06-25 14:25:14 -0500981:term:`PACKAGE_INSTALL` variable providing the final list of packages to
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500982install, the root file system is created.
983
984Package installation is under control of the package manager (e.g.
985dnf/rpm, opkg, or apt/dpkg) regardless of whether or not package
986management is enabled for the target. At the end of the process, if
987package management is not enabled for the target, the package manager's
988data files are deleted from the root filesystem. As part of the final
989stage of package installation, post installation scripts that are part
990of the packages are run. Any scripts that fail to run on the build host
991are run on the target when the target system is first booted. If you are
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500992using a
Andrew Geissler517393d2023-01-13 08:55:19 -0600993:ref:`read-only root filesystem <dev-manual/read-only-rootfs:creating a read-only root filesystem>`,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500994all the post installation scripts must succeed on the build host during
995the package installation phase since the root filesystem on the target
996is read-only.
997
Patrick Williams2194f502022-10-16 14:26:09 -0500998The final stages of the :ref:`ref-tasks-rootfs` task handle post processing. Post
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500999processing includes creation of a manifest file and optimizations.
1000
Andrew Geissler517393d2023-01-13 08:55:19 -06001001The manifest file (``.manifest``) resides in the same directory as the root
1002filesystem image. This file lists out, line-by-line, the installed packages.
1003The manifest file is useful for the :ref:`ref-classes-testimage` class,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001004for example, to determine whether or not to run specific tests. See the
Andrew Geissler517393d2023-01-13 08:55:19 -06001005:term:`IMAGE_MANIFEST` variable for additional information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001006
Andrew Geissler9aee5002022-03-30 16:27:02 +00001007Optimizing processes that are run across the image include ``mklibs``
1008and any other post-processing commands as defined by the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001009:term:`ROOTFS_POSTPROCESS_COMMAND`
Andrew Geissler9aee5002022-03-30 16:27:02 +00001010variable. The ``mklibs`` process optimizes the size of the libraries.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001011
1012After the root filesystem is built, processing begins on the image
1013through the :ref:`ref-tasks-image`
1014task. The build system runs any pre-processing commands as defined by
1015the
1016:term:`IMAGE_PREPROCESS_COMMAND`
1017variable. This variable specifies a list of functions to call before the
1018build system creates the final image output files.
1019
Patrick Williams2194f502022-10-16 14:26:09 -05001020The build system dynamically creates :ref:`do_image_* <ref-tasks-image>` tasks as needed,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001021based on the image types specified in the
1022:term:`IMAGE_FSTYPES` variable.
1023The process turns everything into an image file or a set of image files
1024and can compress the root filesystem image to reduce the overall size of
1025the image. The formats used for the root filesystem depend on the
Andrew Geissler09036742021-06-25 14:25:14 -05001026:term:`IMAGE_FSTYPES` variable. Compression depends on whether the formats
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001027support compression.
1028
1029As an example, a dynamically created task when creating a particular
Andrew Geisslerc926e172021-05-07 16:11:35 -05001030image type would take the following form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001031
1032 do_image_type
1033
1034So, if the type
Andrew Geissler09036742021-06-25 14:25:14 -05001035as specified by the :term:`IMAGE_FSTYPES` were ``ext4``, the dynamically
Andrew Geisslerc926e172021-05-07 16:11:35 -05001036generated task would be as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001037
1038 do_image_ext4
1039
1040The final task involved in image creation is the
1041:ref:`do_image_complete <ref-tasks-image-complete>`
1042task. This task completes the image by applying any image post
1043processing as defined through the
1044:term:`IMAGE_POSTPROCESS_COMMAND`
1045variable. The variable specifies a list of functions to call once the
1046build system has created the final image output files.
1047
1048.. note::
1049
1050 The entire image generation process is run under
1051 Pseudo. Running under Pseudo ensures that the files in the root filesystem
1052 have correct ownership.
1053
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001054SDK Generation
1055~~~~~~~~~~~~~~
1056
1057The OpenEmbedded build system uses BitBake to generate the Software
1058Development Kit (SDK) installer scripts for both the standard SDK and
1059the extensible SDK (eSDK):
1060
1061.. image:: figures/sdk-generation.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001062 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001063
1064.. note::
1065
1066 For more information on the cross-development toolchain generation,
Andrew Geissler09209ee2020-12-13 08:44:15 -06001067 see the ":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001068 section. For information on advantages gained when building a
Patrick Williams2194f502022-10-16 14:26:09 -05001069 cross-development toolchain using the :ref:`ref-tasks-populate_sdk` task, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001070 ":ref:`sdk-manual/appendix-obtain:building an sdk installer`" section in
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001071 the Yocto Project Application Development and the Extensible Software
1072 Development Kit (eSDK) manual.
1073
1074Like image generation, the SDK script process consists of several stages
1075and depends on many variables. The
1076:ref:`ref-tasks-populate_sdk`
1077and
1078:ref:`ref-tasks-populate_sdk_ext`
1079tasks use these key variables to help create the list of packages to
1080actually install. For information on the variables listed in the figure,
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001081see the ":ref:`overview-manual/concepts:application development sdk`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001082section.
1083
Patrick Williams2194f502022-10-16 14:26:09 -05001084The :ref:`ref-tasks-populate_sdk` task helps create the standard SDK and handles
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001085two parts: a target part and a host part. The target part is the part
1086built for the target hardware and includes libraries and headers. The
1087host part is the part of the SDK that runs on the
1088:term:`SDKMACHINE`.
1089
Patrick Williams2194f502022-10-16 14:26:09 -05001090The :ref:`ref-tasks-populate_sdk_ext` task helps create the extensible SDK and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001091handles host and target parts differently than its counter part does for
1092the standard SDK. For the extensible SDK, the task encapsulates the
1093build system, which includes everything needed (host and target) for the
1094SDK.
1095
1096Regardless of the type of SDK being constructed, the tasks perform some
1097cleanup after which a cross-development environment setup script and any
1098needed configuration files are created. The final output is the
1099Cross-development toolchain installation script (``.sh`` file), which
1100includes the environment setup script.
1101
1102Stamp Files and the Rerunning of Tasks
1103~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1104
1105For each task that completes successfully, BitBake writes a stamp file
1106into the :term:`STAMPS_DIR`
1107directory. The beginning of the stamp file's filename is determined by
1108the :term:`STAMP` variable, and the end
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001109of the name consists of the task's name and current :ref:`input
1110checksum <overview-manual/concepts:checksums (signatures)>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001111
1112.. note::
1113
Andrew Geissler517393d2023-01-13 08:55:19 -06001114 This naming scheme assumes that :term:`BB_SIGNATURE_HANDLER`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001115 is "OEBasicHash", which is almost always the case in current
1116 OpenEmbedded.
1117
1118To determine if a task needs to be rerun, BitBake checks if a stamp file
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001119with a matching input checksum exists for the task. In this case,
1120the task's output is assumed to exist and still be valid. Otherwise,
1121the task is rerun.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001122
1123.. note::
1124
1125 The stamp mechanism is more general than the shared state (sstate)
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001126 cache mechanism described in the
1127 ":ref:`overview-manual/concepts:setscene tasks and shared state`" section.
1128 BitBake avoids rerunning any task that has a valid stamp file, not just
1129 tasks that can be accelerated through the sstate cache.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001130
1131 However, you should realize that stamp files only serve as a marker
1132 that some work has been done and that these files do not record task
1133 output. The actual task output would usually be somewhere in
1134 :term:`TMPDIR` (e.g. in some
1135 recipe's :term:`WORKDIR`.) What
1136 the sstate cache mechanism adds is a way to cache task output that
1137 can then be shared between build machines.
1138
Andrew Geissler09036742021-06-25 14:25:14 -05001139Since :term:`STAMPS_DIR` is usually a subdirectory of :term:`TMPDIR`, removing
1140:term:`TMPDIR` will also remove :term:`STAMPS_DIR`, which means tasks will
1141properly be rerun to repopulate :term:`TMPDIR`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001142
1143If you want some task to always be considered "out of date", you can
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05001144mark it with the :ref:`nostamp <bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001145varflag. If some other task depends on such a task, then that task will
1146also always be considered out of date, which might not be what you want.
1147
1148For details on how to view information about a task's signature, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001149":ref:`dev-manual/debugging:viewing task variable dependencies`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001150section in the Yocto Project Development Tasks Manual.
1151
1152Setscene Tasks and Shared State
1153~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1154
1155The description of tasks so far assumes that BitBake needs to build
1156everything and no available prebuilt objects exist. BitBake does support
1157skipping tasks if prebuilt objects are available. These objects are
1158usually made available in the form of a shared state (sstate) cache.
1159
1160.. note::
1161
1162 For information on variables affecting sstate, see the
1163 :term:`SSTATE_DIR`
1164 and
1165 :term:`SSTATE_MIRRORS`
1166 variables.
1167
Andrew Geisslereff27472021-10-29 15:35:00 -05001168The idea of a setscene task (i.e ``do_taskname_setscene``) is a
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001169version of the task where instead of building something, BitBake can
1170skip to the end result and simply place a set of files into specific
1171locations as needed. In some cases, it makes sense to have a setscene
1172task variant (e.g. generating package files in the
1173:ref:`do_package_write_* <ref-tasks-package_write_deb>`
1174task). In other cases, it does not make sense (e.g. a
1175:ref:`ref-tasks-patch` task or a
1176:ref:`ref-tasks-unpack` task) since
1177the work involved would be equal to or greater than the underlying task.
1178
1179In the build system, the common tasks that have setscene variants are
1180:ref:`ref-tasks-package`,
Patrick Williams2194f502022-10-16 14:26:09 -05001181:ref:`do_package_write_* <ref-tasks-package_write_deb>`,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001182:ref:`ref-tasks-deploy`,
1183:ref:`ref-tasks-packagedata`, and
1184:ref:`ref-tasks-populate_sysroot`.
1185Notice that these tasks represent most of the tasks whose output is an
1186end result.
1187
1188The build system has knowledge of the relationship between these tasks
1189and other preceding tasks. For example, if BitBake runs
1190``do_populate_sysroot_setscene`` for something, it does not make sense
Patrick Williams2194f502022-10-16 14:26:09 -05001191to run any of the :ref:`ref-tasks-fetch`, :ref:`ref-tasks-unpack`, :ref:`ref-tasks-patch`,
1192:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, and :ref:`ref-tasks-install` tasks. However, if
1193:ref:`ref-tasks-package` needs to be run, BitBake needs to run those other tasks.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001194
1195It becomes more complicated if everything can come from an sstate cache
1196because some objects are simply not required at all. For example, you do
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001197not need a compiler or native tools, such as quilt, if there isn't anything
Patrick Williams2194f502022-10-16 14:26:09 -05001198to compile or patch. If the :ref:`do_package_write_* <ref-tasks-package_write_deb>` packages are available
1199from sstate, BitBake does not need the :ref:`ref-tasks-package` task data.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001200
1201To handle all these complexities, BitBake runs in two phases. The first
1202is the "setscene" stage. During this stage, BitBake first checks the
1203sstate cache for any targets it is planning to build. BitBake does a
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001204fast check to see if the object exists rather than doing a complete download.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001205If nothing exists, the second phase, which is the setscene stage,
1206completes and the main build proceeds.
1207
1208If objects are found in the sstate cache, the build system works
1209backwards from the end targets specified by the user. For example, if an
1210image is being built, the build system first looks for the packages
1211needed for that image and the tools needed to construct an image. If
1212those are available, the compiler is not needed. Thus, the compiler is
1213not even downloaded. If something was found to be unavailable, or the
1214download or setscene task fails, the build system then tries to install
1215dependencies, such as the compiler, from the cache.
1216
1217The availability of objects in the sstate cache is handled by the
Patrick Williams213cb262021-08-07 19:21:33 -05001218function specified by the :term:`BB_HASHCHECK_FUNCTION`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001219variable and returns a list of available objects. The function specified
Patrick Williams213cb262021-08-07 19:21:33 -05001220by the :term:`BB_SETSCENE_DEPVALID`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001221variable is the function that determines whether a given dependency
1222needs to be followed, and whether for any given relationship the
1223function needs to be passed. The function returns a True or False value.
1224
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001225Images
1226------
1227
1228The images produced by the build system are compressed forms of the root
1229filesystem and are ready to boot on a target device. You can see from
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001230the :ref:`general workflow figure
1231<overview-manual/concepts:openembedded build system concepts>` that BitBake
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001232output, in part, consists of images. This section takes a closer look at
1233this output:
1234
1235.. image:: figures/images.png
1236 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -05001237 :width: 75%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001238
1239.. note::
1240
1241 For a list of example images that the Yocto Project provides, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001242 ":doc:`/ref-manual/images`" chapter in the Yocto Project Reference
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001243 Manual.
1244
Patrick Williams2390b1b2022-11-03 13:47:49 -05001245The build process writes images out to the :term:`Build Directory` inside
1246the ``tmp/deploy/images/machine/`` folder as shown in the figure. This
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001247folder contains any files expected to be loaded on the target device.
Patrick Williams2390b1b2022-11-03 13:47:49 -05001248The :term:`DEPLOY_DIR` variable points to the ``deploy`` directory, while the
1249:term:`DEPLOY_DIR_IMAGE` variable points to the appropriate directory
1250containing images for the current configuration.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001251
1252- kernel-image: A kernel binary file. The
1253 :term:`KERNEL_IMAGETYPE`
1254 variable determines the naming scheme for the kernel image file.
1255 Depending on this variable, the file could begin with a variety of
1256 naming strings. The ``deploy/images/``\ machine directory can contain
1257 multiple image files for the machine.
1258
1259- root-filesystem-image: Root filesystems for the target device (e.g.
1260 ``*.ext3`` or ``*.bz2`` files). The
1261 :term:`IMAGE_FSTYPES`
1262 variable determines the root filesystem image type. The
1263 ``deploy/images/``\ machine directory can contain multiple root
1264 filesystems for the machine.
1265
1266- kernel-modules: Tarballs that contain all the modules built for the
1267 kernel. Kernel module tarballs exist for legacy purposes and can be
1268 suppressed by setting the
1269 :term:`MODULE_TARBALL_DEPLOY`
1270 variable to "0". The ``deploy/images/``\ machine directory can
1271 contain multiple kernel module tarballs for the machine.
1272
1273- bootloaders: If applicable to the target machine, bootloaders
1274 supporting the image. The ``deploy/images/``\ machine directory can
1275 contain multiple bootloaders for the machine.
1276
1277- symlinks: The ``deploy/images/``\ machine folder contains a symbolic
1278 link that points to the most recently built file for each machine.
1279 These links might be useful for external scripts that need to obtain
1280 the latest version of each file.
1281
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001282Application Development SDK
1283---------------------------
1284
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001285In the :ref:`general workflow figure
1286<overview-manual/concepts:openembedded build system concepts>`, the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001287output labeled "Application Development SDK" represents an SDK. The SDK
1288generation process differs depending on whether you build an extensible
1289SDK (e.g. ``bitbake -c populate_sdk_ext`` imagename) or a standard SDK
1290(e.g. ``bitbake -c populate_sdk`` imagename). This section takes a
1291closer look at this output:
1292
1293.. image:: figures/sdk.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001294 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001295
1296The specific form of this output is a set of files that includes a
1297self-extracting SDK installer (``*.sh``), host and target manifest
1298files, and files used for SDK testing. When the SDK installer file is
1299run, it installs the SDK. The SDK consists of a cross-development
1300toolchain, a set of libraries and headers, and an SDK environment setup
1301script. Running this installer essentially sets up your
1302cross-development environment. You can think of the cross-toolchain as
1303the "host" part because it runs on the SDK machine. You can think of the
1304libraries and headers as the "target" part because they are built for
1305the target hardware. The environment setup script is added so that you
1306can initialize the environment before using the tools.
1307
1308.. note::
1309
1310 - The Yocto Project supports several methods by which you can set up
1311 this cross-development environment. These methods include
1312 downloading pre-built SDK installers or building and installing
1313 your own SDK installer.
1314
1315 - For background information on cross-development toolchains in the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001316 Yocto Project development environment, see the
1317 ":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001318 section.
1319
1320 - For information on setting up a cross-development environment, see
Andrew Geissler09209ee2020-12-13 08:44:15 -06001321 the :doc:`/sdk-manual/index` manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001322
1323All the output files for an SDK are written to the ``deploy/sdk`` folder
Patrick Williams2390b1b2022-11-03 13:47:49 -05001324inside the :term:`Build Directory` as shown in the previous figure. Depending
1325on the type of SDK, there are several variables to configure these files.
1326Here are the variables associated with an extensible SDK:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001327
1328- :term:`DEPLOY_DIR`: Points to
1329 the ``deploy`` directory.
1330
1331- :term:`SDK_EXT_TYPE`:
1332 Controls whether or not shared state artifacts are copied into the
1333 extensible SDK. By default, all required shared state artifacts are
1334 copied into the SDK.
1335
1336- :term:`SDK_INCLUDE_PKGDATA`:
1337 Specifies whether or not packagedata is included in the extensible
1338 SDK for all recipes in the "world" target.
1339
1340- :term:`SDK_INCLUDE_TOOLCHAIN`:
1341 Specifies whether or not the toolchain is included when building the
1342 extensible SDK.
1343
Andrew Geissler9aee5002022-03-30 16:27:02 +00001344- :term:`ESDK_LOCALCONF_ALLOW`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001345 A list of variables allowed through from the build system
1346 configuration into the extensible SDK configuration.
1347
Andrew Geissler9aee5002022-03-30 16:27:02 +00001348- :term:`ESDK_LOCALCONF_REMOVE`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001349 A list of variables not allowed through from the build system
1350 configuration into the extensible SDK configuration.
1351
Andrew Geissler9aee5002022-03-30 16:27:02 +00001352- :term:`ESDK_CLASS_INHERIT_DISABLE`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001353 A list of classes to remove from the
1354 :term:`INHERIT` value globally
1355 within the extensible SDK configuration.
1356
1357This next list, shows the variables associated with a standard SDK:
1358
1359- :term:`DEPLOY_DIR`: Points to
1360 the ``deploy`` directory.
1361
1362- :term:`SDKMACHINE`: Specifies
1363 the architecture of the machine on which the cross-development tools
1364 are run to create packages for the target hardware.
1365
1366- :term:`SDKIMAGE_FEATURES`:
1367 Lists the features to include in the "target" part of the SDK.
1368
1369- :term:`TOOLCHAIN_HOST_TASK`:
1370 Lists packages that make up the host part of the SDK (i.e. the part
Andrew Geissler09036742021-06-25 14:25:14 -05001371 that runs on the :term:`SDKMACHINE`). When you use
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001372 ``bitbake -c populate_sdk imagename`` to create the SDK, a set of
1373 default packages apply. This variable allows you to add more
1374 packages.
1375
1376- :term:`TOOLCHAIN_TARGET_TASK`:
1377 Lists packages that make up the target part of the SDK (i.e. the part
1378 built for the target hardware).
1379
1380- :term:`SDKPATH`: Defines the
1381 default SDK installation path offered by the installation script.
1382
1383- :term:`SDK_HOST_MANIFEST`:
1384 Lists all the installed packages that make up the host part of the
1385 SDK. This variable also plays a minor role for extensible SDK
1386 development as well. However, it is mainly used for the standard SDK.
1387
1388- :term:`SDK_TARGET_MANIFEST`:
1389 Lists all the installed packages that make up the target part of the
1390 SDK. This variable also plays a minor role for extensible SDK
1391 development as well. However, it is mainly used for the standard SDK.
1392
1393Cross-Development Toolchain Generation
1394======================================
1395
1396The Yocto Project does most of the work for you when it comes to
Andrew Geissler09209ee2020-12-13 08:44:15 -06001397creating :ref:`sdk-manual/intro:the cross-development toolchain`. This
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001398section provides some technical background on how cross-development
1399toolchains are created and used. For more information on toolchains, you
Andrew Geissler09209ee2020-12-13 08:44:15 -06001400can also see the :doc:`/sdk-manual/index` manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001401
1402In the Yocto Project development environment, cross-development
1403toolchains are used to build images and applications that run on the
1404target hardware. With just a few commands, the OpenEmbedded build system
1405creates these necessary toolchains for you.
1406
1407The following figure shows a high-level build environment regarding
1408toolchain construction and use.
1409
1410.. image:: figures/cross-development-toolchains.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001411 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001412
1413Most of the work occurs on the Build Host. This is the machine used to
Patrick Williams975a06f2022-10-21 14:42:47 -05001414build images and generally work within the Yocto Project
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001415environment. When you run
1416:term:`BitBake` to create an image, the
1417OpenEmbedded build system uses the host ``gcc`` compiler to bootstrap a
1418cross-compiler named ``gcc-cross``. The ``gcc-cross`` compiler is what
1419BitBake uses to compile source files when creating the target image. You
1420can think of ``gcc-cross`` simply as an automatically generated
1421cross-compiler that is used internally within BitBake only.
1422
1423.. note::
1424
Andrew Geissler09036742021-06-25 14:25:14 -05001425 The extensible SDK does not use ``gcc-cross-canadian``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001426 since this SDK ships a copy of the OpenEmbedded build system and the
Andrew Geissler09036742021-06-25 14:25:14 -05001427 sysroot within it contains ``gcc-cross``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001428
Andrew Geisslerc926e172021-05-07 16:11:35 -05001429The chain of events that occurs when the standard toolchain is bootstrapped::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001430
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001431 binutils-cross -> linux-libc-headers -> gcc-cross -> libgcc-initial -> glibc -> libgcc -> gcc-runtime
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001432
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001433- ``gcc``: The compiler, GNU Compiler Collection (GCC).
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001434
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001435- ``binutils-cross``: The binary utilities needed in order
1436 to run the ``gcc-cross`` phase of the bootstrap operation and build the
1437 headers for the C library.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001438
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001439- ``linux-libc-headers``: Headers needed for the cross-compiler and C library build.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001440
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001441- ``libgcc-initial``: An initial version of the gcc support library needed
1442 to bootstrap ``glibc``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001443
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001444- ``libgcc``: The final version of the gcc support library which
1445 can only be built once there is a C library to link against.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001446
1447- ``glibc``: The GNU C Library.
1448
1449- ``gcc-cross``: The final stage of the bootstrap process for the
1450 cross-compiler. This stage results in the actual cross-compiler that
1451 BitBake uses when it builds an image for a targeted device.
1452
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001453 This tool is a "native" tool (i.e. it is designed to run on
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001454 the build host).
1455
1456- ``gcc-runtime``: Runtime libraries resulting from the toolchain
1457 bootstrapping process. This tool produces a binary that consists of
1458 the runtime libraries need for the targeted device.
1459
1460You can use the OpenEmbedded build system to build an installer for the
1461relocatable SDK used to develop applications. When you run the
1462installer, it installs the toolchain, which contains the development
1463tools (e.g., ``gcc-cross-canadian``, ``binutils-cross-canadian``, and
1464other ``nativesdk-*`` tools), which are tools native to the SDK (i.e.
Patrick Williams2390b1b2022-11-03 13:47:49 -05001465native to :term:`SDK_ARCH`), you need to cross-compile and test your
1466software. The figure shows the commands you use to easily build out
1467this toolchain. This cross-development toolchain is built to execute on the
1468:term:`SDKMACHINE`, which might or might not be the same machine as
1469the Build Host.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001470
1471.. note::
1472
1473 If your target architecture is supported by the Yocto Project, you
1474 can take advantage of pre-built images that ship with the Yocto
1475 Project and already contain cross-development toolchain installers.
1476
Andrew Geisslerc926e172021-05-07 16:11:35 -05001477Here is the bootstrap process for the relocatable toolchain::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001478
1479 gcc -> binutils-crosssdk -> gcc-crosssdk-initial -> linux-libc-headers -> glibc-initial -> nativesdk-glibc -> gcc-crosssdk -> gcc-cross-canadian
1480
1481- ``gcc``: The build host's GNU Compiler Collection (GCC).
1482
1483- ``binutils-crosssdk``: The bare minimum binary utilities needed in
1484 order to run the ``gcc-crosssdk-initial`` phase of the bootstrap
1485 operation.
1486
1487- ``gcc-crosssdk-initial``: An early stage of the bootstrap process for
1488 creating the cross-compiler. This stage builds enough of the
1489 ``gcc-crosssdk`` and supporting pieces so that the final stage of the
1490 bootstrap process can produce the finished cross-compiler. This tool
1491 is a "native" binary that runs on the build host.
1492
1493- ``linux-libc-headers``: Headers needed for the cross-compiler.
1494
1495- ``glibc-initial``: An initial version of the Embedded GLIBC needed to
1496 bootstrap ``nativesdk-glibc``.
1497
1498- ``nativesdk-glibc``: The Embedded GLIBC needed to bootstrap the
1499 ``gcc-crosssdk``.
1500
1501- ``gcc-crosssdk``: The final stage of the bootstrap process for the
1502 relocatable cross-compiler. The ``gcc-crosssdk`` is a transitory
1503 compiler and never leaves the build host. Its purpose is to help in
1504 the bootstrap process to create the eventual ``gcc-cross-canadian``
1505 compiler, which is relocatable. This tool is also a "native" package
1506 (i.e. it is designed to run on the build host).
1507
1508- ``gcc-cross-canadian``: The final relocatable cross-compiler. When
1509 run on the :term:`SDKMACHINE`,
1510 this tool produces executable code that runs on the target device.
1511 Only one cross-canadian compiler is produced per architecture since
1512 they can be targeted at different processor optimizations using
1513 configurations passed to the compiler through the compile commands.
1514 This circumvents the need for multiple compilers and thus reduces the
1515 size of the toolchains.
1516
1517.. note::
1518
1519 For information on advantages gained when building a
1520 cross-development toolchain installer, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001521 ":ref:`sdk-manual/appendix-obtain:building an sdk installer`" appendix
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001522 in the Yocto Project Application Development and the
1523 Extensible Software Development Kit (eSDK) manual.
1524
1525Shared State Cache
1526==================
1527
1528By design, the OpenEmbedded build system builds everything from scratch
1529unless :term:`BitBake` can determine
1530that parts do not need to be rebuilt. Fundamentally, building from
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001531scratch is attractive as it means all parts are built fresh and there is
1532no possibility of stale data that can cause problems. When
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001533developers hit problems, they typically default back to building from
Andrew Geissler595f6302022-01-24 19:11:47 +00001534scratch so they have a known state from the start.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001535
1536Building an image from scratch is both an advantage and a disadvantage
1537to the process. As mentioned in the previous paragraph, building from
1538scratch ensures that everything is current and starts from a known
1539state. However, building from scratch also takes much longer as it
1540generally means rebuilding things that do not necessarily need to be
1541rebuilt.
1542
1543The Yocto Project implements shared state code that supports incremental
1544builds. The implementation of the shared state code answers the
1545following questions that were fundamental roadblocks within the
1546OpenEmbedded incremental build support system:
1547
1548- What pieces of the system have changed and what pieces have not
1549 changed?
1550
1551- How are changed pieces of software removed and replaced?
1552
1553- How are pre-built components that do not need to be rebuilt from
1554 scratch used when they are available?
1555
1556For the first question, the build system detects changes in the "inputs"
1557to a given task by creating a checksum (or signature) of the task's
1558inputs. If the checksum changes, the system assumes the inputs have
1559changed and the task needs to be rerun. For the second question, the
1560shared state (sstate) code tracks which tasks add which output to the
1561build process. This means the output from a given task can be removed,
1562upgraded or otherwise manipulated. The third question is partly
1563addressed by the solution for the second question assuming the build
1564system can fetch the sstate objects from remote locations and install
1565them if they are deemed to be valid.
1566
1567.. note::
1568
1569 - The build system does not maintain
1570 :term:`PR` information as part of
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001571 the shared state packages. Consequently, there are considerations that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001572 affect maintaining shared state feeds. For information on how the
Andrew Geissler09036742021-06-25 14:25:14 -05001573 build system works with packages and can track incrementing :term:`PR`
Andrew Geissler517393d2023-01-13 08:55:19 -06001574 information, see the ":ref:`dev-manual/packages:automatically incrementing a package version number`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001575 section in the Yocto Project Development Tasks Manual.
1576
1577 - The code in the build system that supports incremental builds is
Andrew Geisslereff27472021-10-29 15:35:00 -05001578 complex. For techniques that help you work around issues
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001579 related to shared state code, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001580 ":ref:`dev-manual/debugging:viewing metadata used to create the input signature of a shared state task`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001581 and
Andrew Geissler517393d2023-01-13 08:55:19 -06001582 ":ref:`dev-manual/debugging:invalidating shared state to force a task to run`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001583 sections both in the Yocto Project Development Tasks Manual.
1584
1585The rest of this section goes into detail about the overall incremental
1586build architecture, the checksums (signatures), and shared state.
1587
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001588Overall Architecture
1589--------------------
1590
1591When determining what parts of the system need to be built, BitBake
1592works on a per-task basis rather than a per-recipe basis. You might
1593wonder why using a per-task basis is preferred over a per-recipe basis.
1594To help explain, consider having the IPK packaging backend enabled and
1595then switching to DEB. In this case, the
1596:ref:`ref-tasks-install` and
1597:ref:`ref-tasks-package` task outputs
1598are still valid. However, with a per-recipe approach, the build would
1599not include the ``.deb`` files. Consequently, you would have to
1600invalidate the whole build and rerun it. Rerunning everything is not the
1601best solution. Also, in this case, the core must be "taught" much about
1602specific tasks. This methodology does not scale well and does not allow
1603users to easily add new tasks in layers or as external recipes without
1604touching the packaged-staging core.
1605
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001606Checksums (Signatures)
1607----------------------
1608
1609The shared state code uses a checksum, which is a unique signature of a
1610task's inputs, to determine if a task needs to be run again. Because it
1611is a change in a task's inputs that triggers a rerun, the process needs
1612to detect all the inputs to a given task. For shell tasks, this turns
1613out to be fairly easy because the build process generates a "run" shell
1614script for each task and it is possible to create a checksum that gives
1615you a good idea of when the task's data changes.
1616
1617To complicate the problem, there are things that should not be included
1618in the checksum. First, there is the actual specific build path of a
Andrew Geissler615f2f12022-07-15 14:00:58 -05001619given task --- the :term:`WORKDIR`. It
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001620does not matter if the work directory changes because it should not
1621affect the output for target packages. Also, the build process has the
1622objective of making native or cross packages relocatable.
1623
1624.. note::
1625
1626 Both native and cross packages run on the
1627 build host. However, cross packages generate output for the target
1628 architecture.
1629
Andrew Geissler09036742021-06-25 14:25:14 -05001630The checksum therefore needs to exclude :term:`WORKDIR`. The simplistic
1631approach for excluding the work directory is to set :term:`WORKDIR` to some
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001632fixed value and create the checksum for the "run" script.
1633
1634Another problem results from the "run" scripts containing functions that
1635might or might not get called. The incremental build solution contains
1636code that figures out dependencies between shell functions. This code is
1637used to prune the "run" scripts down to the minimum set, thereby
1638alleviating this problem and making the "run" scripts much more readable
1639as a bonus.
1640
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001641So far, there are solutions for shell scripts. What about Python tasks? The
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001642same approach applies even though these tasks are more difficult. The
1643process needs to figure out what variables a Python function accesses
1644and what functions it calls. Again, the incremental build solution
1645contains code that first figures out the variable and function
1646dependencies, and then creates a checksum for the data used as the input
1647to the task.
1648
Andrew Geissler09036742021-06-25 14:25:14 -05001649Like the :term:`WORKDIR` case, there can be situations where dependencies should be
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001650ignored. For these situations, you can instruct the build process to
Andrew Geisslerc926e172021-05-07 16:11:35 -05001651ignore a dependency by using a line like the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001652
1653 PACKAGE_ARCHS[vardepsexclude] = "MACHINE"
1654
1655This example ensures that the :term:`PACKAGE_ARCHS` variable
1656does not depend on the value of :term:`MACHINE`, even if it does
1657reference it.
1658
1659Equally, there are cases where you need to add dependencies BitBake is
1660not able to find. You can accomplish this by using a line like the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001661following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001662
1663 PACKAGE_ARCHS[vardeps] = "MACHINE"
1664
1665This example explicitly
Andrew Geissler09036742021-06-25 14:25:14 -05001666adds the :term:`MACHINE` variable as a dependency for :term:`PACKAGE_ARCHS`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001667
1668As an example, consider a case with in-line Python where BitBake is not
1669able to figure out dependencies. When running in debug mode (i.e. using
1670``-DDD``), BitBake produces output when it discovers something for which
1671it cannot figure out dependencies. The Yocto Project team has currently
1672not managed to cover those dependencies in detail and is aware of the
1673need to fix this situation.
1674
1675Thus far, this section has limited discussion to the direct inputs into
1676a task. Information based on direct inputs is referred to as the
1677"basehash" in the code. However, the question of a task's indirect
Andrew Geissler615f2f12022-07-15 14:00:58 -05001678inputs still exits --- items already built and present in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001679:term:`Build Directory`. The checksum (or
1680signature) for a particular task needs to add the hashes of all the
1681tasks on which the particular task depends. Choosing which dependencies
Andrew Geissler595f6302022-01-24 19:11:47 +00001682to add is a policy decision. However, the effect is to generate a
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001683checksum that combines the basehash and the hashes of the task's
1684dependencies.
1685
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001686At the code level, there are multiple ways by which both the basehash
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001687and the dependent task hashes can be influenced. Within the BitBake
1688configuration file, you can give BitBake some extra information to help
1689it construct the basehash. The following statement effectively results
1690in a list of global variable dependency excludes (i.e. variables never
Andrew Geisslerc926e172021-05-07 16:11:35 -05001691included in any checksum)::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001692
Andrew Geissler9aee5002022-03-30 16:27:02 +00001693 BB_BASEHASH_IGNORE_VARS ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR \\
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001694 SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL TERM \\
1695 USER FILESPATH STAGING_DIR_HOST STAGING_DIR_TARGET COREBASE PRSERV_HOST \\
1696 PRSERV_DUMPDIR PRSERV_DUMPFILE PRSERV_LOCKDOWN PARALLEL_MAKE \\
1697 CCACHE_DIR EXTERNAL_TOOLCHAIN CCACHE CCACHE_DISABLE LICENSE_PATH SDKPKGSUFFIX"
1698
Andrew Geissler595f6302022-01-24 19:11:47 +00001699The previous example does not include :term:`WORKDIR` since that variable is
1700actually constructed as a path within :term:`TMPDIR`, which is included above.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001701
1702The rules for deciding which hashes of dependent tasks to include
1703through dependency chains are more complex and are generally
1704accomplished with a Python function. The code in
1705``meta/lib/oe/sstatesig.py`` shows two examples of this and also
1706illustrates how you can insert your own policy into the system if so
1707desired. This file defines the two basic signature generators
1708:term:`OpenEmbedded-Core (OE-Core)` uses: "OEBasic" and
1709"OEBasicHash". By default, a dummy "noop" signature handler is enabled
1710in BitBake. This means that behavior is unchanged from previous
1711versions. OE-Core uses the "OEBasicHash" signature handler by default
Andrew Geisslerc926e172021-05-07 16:11:35 -05001712through this setting in the ``bitbake.conf`` file::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001713
1714 BB_SIGNATURE_HANDLER ?= "OEBasicHash"
1715
Andrew Geissler09036742021-06-25 14:25:14 -05001716The "OEBasicHash" :term:`BB_SIGNATURE_HANDLER` is the same
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001717as the "OEBasic" version but adds the task hash to the :ref:`stamp
1718files <overview-manual/concepts:stamp files and the rerunning of tasks>`. This
1719results in any metadata change that changes the task hash, automatically causing
1720the task to be run again. This removes the need to bump
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001721:term:`PR` values, and changes to metadata
1722automatically ripple across the build.
1723
1724It is also worth noting that the end result of these signature
1725generators is to make some dependency and hash information available to
1726the build. This information includes:
1727
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001728- ``BB_BASEHASH:task-``\ taskname: The base hashes for each task in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001729 recipe.
1730
1731- ``BB_BASEHASH_``\ filename\ ``:``\ taskname: The base hashes for each
1732 dependent task.
1733
Andrew Geissler09036742021-06-25 14:25:14 -05001734- :term:`BB_TASKHASH`: The hash of the currently running task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001735
1736Shared State
1737------------
1738
1739Checksums and dependencies, as discussed in the previous section, solve
1740half the problem of supporting a shared state. The other half of the
1741problem is being able to use checksum information during the build and
1742being able to reuse or rebuild specific components.
1743
Andrew Geissler517393d2023-01-13 08:55:19 -06001744The :ref:`ref-classes-sstate` class is a relatively generic implementation of
1745how to "capture" a snapshot of a given task. The idea is that the build process
1746does not care about the source of a task's output. Output could be freshly
1747built or it could be downloaded and unpacked from somewhere. In other words,
1748the build process does not need to worry about its origin.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001749
1750Two types of output exist. One type is just about creating a directory
1751in :term:`WORKDIR`. A good example is
1752the output of either
1753:ref:`ref-tasks-install` or
1754:ref:`ref-tasks-package`. The other
1755type of output occurs when a set of data is merged into a shared
1756directory tree such as the sysroot.
1757
1758The Yocto Project team has tried to keep the details of the
Andrew Geissler517393d2023-01-13 08:55:19 -06001759implementation hidden in the :ref:`ref-classes-sstate` class. From a user's perspective,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001760adding shared state wrapping to a task is as simple as this
Andrew Geissler517393d2023-01-13 08:55:19 -06001761:ref:`ref-tasks-deploy` example taken from the :ref:`ref-classes-deploy` class::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001762
1763 DEPLOYDIR = "${WORKDIR}/deploy-${PN}"
1764 SSTATETASKS += "do_deploy"
1765 do_deploy[sstate-inputdirs] = "${DEPLOYDIR}"
1766 do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"
1767
1768 python do_deploy_setscene () {
1769 sstate_setscene(d)
1770 }
1771 addtask do_deploy_setscene
1772 do_deploy[dirs] = "${DEPLOYDIR} ${B}"
1773 do_deploy[stamp-extra-info] = "${MACHINE_ARCH}"
1774
1775The following list explains the previous example:
1776
Andrew Geissler517393d2023-01-13 08:55:19 -06001777- Adding ``do_deploy`` to ``SSTATETASKS`` adds some required sstate-related
1778 processing, which is implemented in the :ref:`ref-classes-sstate` class, to
1779 before and after the :ref:`ref-tasks-deploy` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001780
1781- The ``do_deploy[sstate-inputdirs] = "${DEPLOYDIR}"`` declares that
Patrick Williams2194f502022-10-16 14:26:09 -05001782 :ref:`ref-tasks-deploy` places its output in ``${DEPLOYDIR}`` when run normally
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001783 (i.e. when not using the sstate cache). This output becomes the input
1784 to the shared state cache.
1785
1786- The ``do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"`` line
1787 causes the contents of the shared state cache to be copied to
1788 ``${DEPLOY_DIR_IMAGE}``.
1789
1790 .. note::
1791
Patrick Williams2194f502022-10-16 14:26:09 -05001792 If :ref:`ref-tasks-deploy` is not already in the shared state cache or if its input
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001793 checksum (signature) has changed from when the output was cached, the task
1794 runs to populate the shared state cache, after which the contents of the
1795 shared state cache is copied to ${:term:`DEPLOY_DIR_IMAGE`}. If
Patrick Williams2194f502022-10-16 14:26:09 -05001796 :ref:`ref-tasks-deploy` is in the shared state cache and its signature indicates
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001797 that the cached output is still valid (i.e. if no relevant task inputs
1798 have changed), then the contents of the shared state cache copies
Andrew Geissler09036742021-06-25 14:25:14 -05001799 directly to ${:term:`DEPLOY_DIR_IMAGE`} by the ``do_deploy_setscene`` task
Patrick Williams2194f502022-10-16 14:26:09 -05001800 instead, skipping the :ref:`ref-tasks-deploy` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001801
1802- The following task definition is glue logic needed to make the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001803 previous settings effective::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001804
1805 python do_deploy_setscene () {
1806 sstate_setscene(d)
1807 }
1808 addtask do_deploy_setscene
1809
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05001810 ``sstate_setscene()`` takes the flags above as input and accelerates the
1811 :ref:`ref-tasks-deploy` task through the shared state cache if possible. If
1812 the task was accelerated, ``sstate_setscene()`` returns True. Otherwise, it
1813 returns False, and the normal :ref:`ref-tasks-deploy` task runs. For more
1814 information, see the ":ref:`bitbake-user-manual/bitbake-user-manual-execution:setscene`"
1815 section in the BitBake User Manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001816
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05001817- The ``do_deploy[dirs] = "${DEPLOYDIR} ${B}"`` line creates ``${DEPLOYDIR}``
1818 and ``${B}`` before the :ref:`ref-tasks-deploy` task runs, and also sets the
1819 current working directory of :ref:`ref-tasks-deploy` to ``${B}``. For more
1820 information, see the ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:variable flags`"
1821 section in the BitBake User Manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001822
1823 .. note::
1824
1825 In cases where ``sstate-inputdirs`` and ``sstate-outputdirs`` would be
1826 the same, you can use ``sstate-plaindirs``. For example, to preserve the
Patrick Williams2194f502022-10-16 14:26:09 -05001827 ${:term:`PKGD`} and ${:term:`PKGDEST`} output from the :ref:`ref-tasks-package`
Andrew Geisslerc926e172021-05-07 16:11:35 -05001828 task, use the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001829
1830 do_package[sstate-plaindirs] = "${PKGD} ${PKGDEST}"
1831
1832
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05001833- The ``do_deploy[stamp-extra-info] = "${MACHINE_ARCH}"`` line appends extra
1834 metadata to the :ref:`stamp file <overview-manual/concepts:stamp files and the rerunning of tasks>`.
1835 In this case, the metadata makes the task specific to a machine's architecture.
1836 See the ":ref:`bitbake-user-manual/bitbake-user-manual-execution:the task list`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001837 section in the BitBake User Manual for more information on the
1838 ``stamp-extra-info`` flag.
1839
1840- ``sstate-inputdirs`` and ``sstate-outputdirs`` can also be used with
1841 multiple directories. For example, the following declares
Andrew Geissler09036742021-06-25 14:25:14 -05001842 :term:`PKGDESTWORK` and ``SHLIBWORK`` as shared state input directories,
1843 which populates the shared state cache, and :term:`PKGDATA_DIR` and
Andrew Geisslerc926e172021-05-07 16:11:35 -05001844 ``SHLIBSDIR`` as the corresponding shared state output directories::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001845
1846 do_package[sstate-inputdirs] = "${PKGDESTWORK} ${SHLIBSWORKDIR}"
1847 do_package[sstate-outputdirs] = "${PKGDATA_DIR} ${SHLIBSDIR}"
1848
1849- These methods also include the ability to take a lockfile when
1850 manipulating shared state directory structures, for cases where file
Andrew Geisslerc926e172021-05-07 16:11:35 -05001851 additions or removals are sensitive::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001852
1853 do_package[sstate-lockfile] = "${PACKAGELOCK}"
1854
1855Behind the scenes, the shared state code works by looking in
1856:term:`SSTATE_DIR` and
1857:term:`SSTATE_MIRRORS` for
Andrew Geisslerc926e172021-05-07 16:11:35 -05001858shared state files. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001859
1860 SSTATE_MIRRORS ?= "\
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001861 file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \
Patrick Williams93c203f2021-10-06 16:15:23 -05001862 file://.* file:///some/local/dir/sstate/PATH"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001863
1864.. note::
1865
Andrew Geissler5f350902021-07-23 13:09:54 -04001866 The shared state directory (:term:`SSTATE_DIR`) is organized into two-character
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001867 subdirectories, where the subdirectory names are based on the first two
1868 characters of the hash.
1869 If the shared state directory structure for a mirror has the same structure
Andrew Geissler09036742021-06-25 14:25:14 -05001870 as :term:`SSTATE_DIR`, you must specify "PATH" as part of the URI to enable the build
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001871 system to map to the appropriate subdirectory.
1872
1873The shared state package validity can be detected just by looking at the
1874filename since the filename contains the task checksum (or signature) as
1875described earlier in this section. If a valid shared state package is
1876found, the build process downloads it and uses it to accelerate the
1877task.
1878
1879The build processes use the ``*_setscene`` tasks for the task
1880acceleration phase. BitBake goes through this phase before the main
1881execution code and tries to accelerate any tasks for which it can find
1882shared state packages. If a shared state package for a task is
1883available, the shared state package is used. This means the task and any
1884tasks on which it is dependent are not executed.
1885
1886As a real world example, the aim is when building an IPK-based image,
1887only the
1888:ref:`ref-tasks-package_write_ipk`
1889tasks would have their shared state packages fetched and extracted.
1890Since the sysroot is not used, it would never get extracted. This is
1891another reason why a task-based approach is preferred over a
1892recipe-based approach, which would have to install the output from every
1893task.
1894
Andrew Geissler595f6302022-01-24 19:11:47 +00001895Hash Equivalence
1896----------------
1897
1898The above section explained how BitBake skips the execution of tasks
1899whose output can already be found in the Shared State cache.
1900
1901During a build, it may often be the case that the output / result of a task might
1902be unchanged despite changes in the task's input values. An example might be
1903whitespace changes in some input C code. In project terms, this is what we define
1904as "equivalence".
1905
1906To keep track of such equivalence, BitBake has to manage three hashes
1907for each task:
1908
1909- The *task hash* explained earlier: computed from the recipe metadata,
1910 the task code and the task hash values from its dependencies.
1911 When changes are made, these task hashes are therefore modified,
1912 causing the task to re-execute. The task hashes of tasks depending on this
1913 task are therefore modified too, causing the whole dependency
1914 chain to re-execute.
1915
1916- The *output hash*, a new hash computed from the output of Shared State tasks,
1917 tasks that save their resulting output to a Shared State tarball.
1918 The mapping between the task hash and its output hash is reported
1919 to a new *Hash Equivalence* server. This mapping is stored in a database
1920 by the server for future reference.
1921
1922- The *unihash*, a new hash, initially set to the task hash for the task.
1923 This is used to track the *unicity* of task output, and we will explain
1924 how its value is maintained.
1925
1926When Hash Equivalence is enabled, BitBake computes the task hash
1927for each task by using the unihash of its dependencies, instead
1928of their task hash.
1929
1930Now, imagine that a Shared State task is modified because of a change in
1931its code or metadata, or because of a change in its dependencies.
1932Since this modifies its task hash, this task will need re-executing.
1933Its output hash will therefore be computed again.
1934
1935Then, the new mapping between the new task hash and its output hash
1936will be reported to the Hash Equivalence server. The server will
1937let BitBake know whether this output hash is the same as a previously
1938reported output hash, for a different task hash.
1939
1940If the output hash is already known, BitBake will update the task's
1941unihash to match the original task hash that generated that output.
1942Thanks to this, the depending tasks will keep a previously recorded
1943task hash, and BitBake will be able to retrieve their output from
1944the Shared State cache, instead of re-executing them. Similarly, the
1945output of further downstream tasks can also be retrieved from Shared
1946Shate.
1947
1948If the output hash is unknown, a new entry will be created on the Hash
1949Equivalence server, matching the task hash to that output.
1950The depending tasks, still having a new task hash because of the
1951change, will need to re-execute as expected. The change propagates
1952to the depending tasks.
1953
1954To summarize, when Hash Equivalence is enabled, a change in one of the
1955tasks in BitBake's run queue doesn't have to propagate to all the
1956downstream tasks that depend on the output of this task, causing a
1957full rebuild of such tasks, and so on with the next depending tasks.
1958Instead, when the output of this task remains identical to previously
1959recorded output, BitBake can safely retrieve all the downstream
1960task output from the Shared State cache.
1961
1962.. note::
1963
1964 Having :doc:`/test-manual/reproducible-builds` is a key ingredient for
1965 the stability of the task's output hash. Therefore, the effectiveness
1966 of Hash Equivalence strongly depends on it.
1967
1968This applies to multiple scenarios:
1969
1970- A "trivial" change to a recipe that doesn't impact its generated output,
1971 such as whitespace changes, modifications to unused code paths or
1972 in the ordering of variables.
1973
1974- Shared library updates, for example to fix a security vulnerability.
1975 For sure, the programs using such a library should be rebuilt, but
1976 their new binaries should remain identical. The corresponding tasks should
1977 have a different output hash because of the change in the hash of their
1978 library dependency, but thanks to their output being identical, Hash
1979 Equivalence will stop the propagation down the dependency chain.
1980
1981- Native tool updates. Though the depending tasks should be rebuilt,
1982 it's likely that they will generate the same output and be marked
1983 as equivalent.
1984
1985This mechanism is enabled by default in Poky, and is controlled by three
1986variables:
1987
1988- :term:`bitbake:BB_HASHSERVE`, specifying a local or remote Hash
1989 Equivalence server to use.
1990
1991- :term:`BB_HASHSERVE_UPSTREAM`, when ``BB_HASHSERVE = "auto"``,
1992 allowing to connect the local server to an upstream one.
1993
1994- :term:`bitbake:BB_SIGNATURE_HANDLER`, which must be set to ``OEEquivHash``.
1995
1996Therefore, the default configuration in Poky corresponds to the
1997below settings::
1998
1999 BB_HASHSERVE = "auto"
2000 BB_SIGNATURE_HANDLER = "OEEquivHash"
2001
2002Rather than starting a local server, another possibility is to rely
2003on a Hash Equivalence server on a network, by setting::
2004
2005 BB_HASHSERVE = "<HOSTNAME>:<PORT>"
2006
2007.. note::
2008
2009 The shared Hash Equivalence server needs to be maintained together with the
2010 Shared State cache. Otherwise, the server could report Shared State hashes
2011 that only exist on specific clients.
2012
2013 We therefore recommend that one Hash Equivalence server be set up to
2014 correspond with a given Shared State cache, and to start this server
2015 in *read-only mode*, so that it doesn't store equivalences for
2016 Shared State caches that are local to clients.
2017
2018 See the :term:`BB_HASHSERVE` reference for details about starting
2019 a Hash Equivalence server.
2020
2021See the `video <https://www.youtube.com/watch?v=zXEdqGS62Wc>`__
2022of Joshua Watt's `Hash Equivalence and Reproducible Builds
2023<https://elinux.org/images/3/37/Hash_Equivalence_and_Reproducible_Builds.pdf>`__
2024presentation at ELC 2020 for a very synthetic introduction to the
2025Hash Equivalence implementation in the Yocto Project.
2026
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002027Automatically Added Runtime Dependencies
2028========================================
2029
2030The OpenEmbedded build system automatically adds common types of runtime
2031dependencies between packages, which means that you do not need to
2032explicitly declare the packages using
William A. Kennington IIIac69b482021-06-02 12:28:27 -07002033:term:`RDEPENDS`. There are three automatic
2034mechanisms (``shlibdeps``, ``pcdeps``, and ``depchains``) that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002035handle shared libraries, package configuration (pkg-config) modules, and
2036``-dev`` and ``-dbg`` packages, respectively. For other types of runtime
2037dependencies, you must manually declare the dependencies.
2038
2039- ``shlibdeps``: During the
2040 :ref:`ref-tasks-package` task of
2041 each recipe, all shared libraries installed by the recipe are
2042 located. For each shared library, the package that contains the
2043 shared library is registered as providing the shared library. More
2044 specifically, the package is registered as providing the
Patrick Williams7784c422022-11-17 07:29:11 -06002045 :wikipedia:`soname <Soname>` of the library. The
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002046 resulting shared-library-to-package mapping is saved globally in
2047 :term:`PKGDATA_DIR` by the
2048 :ref:`ref-tasks-packagedata`
2049 task.
2050
2051 Simultaneously, all executables and shared libraries installed by the
2052 recipe are inspected to see what shared libraries they link against.
Andrew Geissler09036742021-06-25 14:25:14 -05002053 For each shared library dependency that is found, :term:`PKGDATA_DIR` is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002054 queried to see if some package (likely from a different recipe)
2055 contains the shared library. If such a package is found, a runtime
2056 dependency is added from the package that depends on the shared
2057 library to the package that contains the library.
2058
2059 The automatically added runtime dependency also includes a version
2060 restriction. This version restriction specifies that at least the
2061 current version of the package that provides the shared library must
Andrew Geissler09036742021-06-25 14:25:14 -05002062 be used, as if "package (>= version)" had been added to :term:`RDEPENDS`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002063 This forces an upgrade of the package containing the shared library
2064 when installing the package that depends on the library, if needed.
2065
2066 If you want to avoid a package being registered as providing a
2067 particular shared library (e.g. because the library is for internal
2068 use only), then add the library to
2069 :term:`PRIVATE_LIBS` inside
2070 the package's recipe.
2071
Patrick Williams2194f502022-10-16 14:26:09 -05002072- ``pcdeps``: During the :ref:`ref-tasks-package` task of each recipe, all
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002073 pkg-config modules (``*.pc`` files) installed by the recipe are
2074 located. For each module, the package that contains the module is
2075 registered as providing the module. The resulting module-to-package
Andrew Geissler09036742021-06-25 14:25:14 -05002076 mapping is saved globally in :term:`PKGDATA_DIR` by the
Patrick Williams2194f502022-10-16 14:26:09 -05002077 :ref:`ref-tasks-packagedata` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002078
2079 Simultaneously, all pkg-config modules installed by the recipe are
2080 inspected to see what other pkg-config modules they depend on. A
2081 module is seen as depending on another module if it contains a
2082 "Requires:" line that specifies the other module. For each module
Andrew Geissler09036742021-06-25 14:25:14 -05002083 dependency, :term:`PKGDATA_DIR` is queried to see if some package
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002084 contains the module. If such a package is found, a runtime dependency
2085 is added from the package that depends on the module to the package
2086 that contains the module.
2087
2088 .. note::
2089
2090 The
2091 pcdeps
2092 mechanism most often infers dependencies between
2093 -dev
2094 packages.
2095
2096- ``depchains``: If a package ``foo`` depends on a package ``bar``,
2097 then ``foo-dev`` and ``foo-dbg`` are also made to depend on
2098 ``bar-dev`` and ``bar-dbg``, respectively. Taking the ``-dev``
2099 packages as an example, the ``bar-dev`` package might provide headers
2100 and shared library symlinks needed by ``foo-dev``, which shows the
2101 need for a dependency between the packages.
2102
2103 The dependencies added by ``depchains`` are in the form of
2104 :term:`RRECOMMENDS`.
2105
2106 .. note::
2107
Andrew Geissler5f350902021-07-23 13:09:54 -04002108 By default, ``foo-dev`` also has an :term:`RDEPENDS`-style dependency on
Patrick Williams0ca19cc2021-08-16 14:03:13 -05002109 ``foo``, because the default value of ``RDEPENDS:${PN}-dev`` (set in
Andrew Geisslerd5838332022-05-27 11:33:10 -05002110 ``bitbake.conf``) includes "${PN}".
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002111
2112 To ensure that the dependency chain is never broken, ``-dev`` and
2113 ``-dbg`` packages are always generated by default, even if the
2114 packages turn out to be empty. See the
2115 :term:`ALLOW_EMPTY` variable
2116 for more information.
2117
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05002118The :ref:`ref-tasks-package` task depends on the :ref:`ref-tasks-packagedata`
2119task of each recipe in :term:`DEPENDS` through use of a
2120``[``\ :ref:`deptask <bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`\ ``]``
2121declaration, which guarantees that the required shared-library /
2122module-to-package mapping information will be available when needed as long as
2123:term:`DEPENDS` has been correctly set.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002124
2125Fakeroot and Pseudo
2126===================
2127
2128Some tasks are easier to implement when allowed to perform certain
2129operations that are normally reserved for the root user (e.g.
2130:ref:`ref-tasks-install`,
2131:ref:`do_package_write* <ref-tasks-package_write_deb>`,
2132:ref:`ref-tasks-rootfs`, and
Patrick Williams2194f502022-10-16 14:26:09 -05002133:ref:`do_image_* <ref-tasks-image>`). For example,
2134the :ref:`ref-tasks-install` task benefits from being able to set the UID and GID
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002135of installed files to arbitrary values.
2136
2137One approach to allowing tasks to perform root-only operations would be
2138to require :term:`BitBake` to run as
2139root. However, this method is cumbersome and has security issues. The
2140approach that is actually used is to run tasks that benefit from root
2141privileges in a "fake" root environment. Within this environment, the
2142task and its child processes believe that they are running as the root
2143user, and see an internally consistent view of the filesystem. As long
2144as generating the final output (e.g. a package or an image) does not
2145require root privileges, the fact that some earlier steps ran in a fake
2146root environment does not cause problems.
2147
2148The capability to run tasks in a fake root environment is known as
2149"`fakeroot <http://man.he.net/man1/fakeroot>`__", which is derived from
2150the BitBake keyword/variable flag that requests a fake root environment
2151for a task.
2152
Andrew Geisslerd1e89492021-02-12 15:35:20 -06002153In the :term:`OpenEmbedded Build System`, the program that implements
2154fakeroot is known as :yocto_home:`Pseudo </software-item/pseudo/>`. Pseudo
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002155overrides system calls by using the environment variable ``LD_PRELOAD``,
2156which results in the illusion of running as root. To keep track of
2157"fake" file ownership and permissions resulting from operations that
2158require root permissions, Pseudo uses an SQLite 3 database. This
2159database is stored in
2160``${``\ :term:`WORKDIR`\ ``}/pseudo/files.db``
2161for individual recipes. Storing the database in a file as opposed to in
2162memory gives persistence between tasks and builds, which is not
2163accomplished using fakeroot.
2164
2165.. note::
2166
2167 If you add your own task that manipulates the same files or
2168 directories as a fakeroot task, then that task also needs to run
2169 under fakeroot. Otherwise, the task cannot run root-only operations,
2170 and cannot see the fake file ownership and permissions set by the
2171 other task. You need to also add a dependency on
Andrew Geisslerc926e172021-05-07 16:11:35 -05002172 ``virtual/fakeroot-native:do_populate_sysroot``, giving the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002173
2174 fakeroot do_mytask () {
2175 ...
2176 }
2177 do_mytask[depends] += "virtual/fakeroot-native:do_populate_sysroot"
2178
2179
2180For more information, see the
2181:term:`FAKEROOT* <bitbake:FAKEROOT>` variables in the
2182BitBake User Manual. You can also reference the "`Why Not
2183Fakeroot? <https://github.com/wrpseudo/pseudo/wiki/WhyNotFakeroot>`__"
2184article for background information on Fakeroot and Pseudo.