blob: 4cee4bb169a8674b6dd4b47f961ae26601503bc7 [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
72Several different
73versions of ``matchbox-desktop`` might exist. BitBake chooses the one
74selected by the distribution configuration. You can get more details
75about how BitBake chooses between different target versions and
76providers in the
Patrick Williams213cb262021-08-07 19:21:33 -050077":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-execution:preferences`" section
Andrew Geisslerc9f78652020-09-18 14:11:35 -050078of the BitBake User Manual.
79
80BitBake also tries to execute any dependent tasks first. So for example,
81before building ``matchbox-desktop``, BitBake would build a cross
82compiler and ``glibc`` if they had not already been built.
83
84A useful BitBake option to consider is the ``-k`` or ``--continue``
85option. This option instructs BitBake to try and continue processing the
86job as long as possible even after encountering an error. When an error
87occurs, the target that failed and those that depend on it cannot be
88remade. However, when you use this option other dependencies can still
89be processed.
90
Andrew Geisslerc9f78652020-09-18 14:11:35 -050091Recipes
92-------
93
94Files that have the ``.bb`` suffix are "recipes" files. In general, a
95recipe contains information about a single piece of software. This
96information includes the location from which to download the unaltered
97source, any source patches to be applied to that source (if needed),
98which special configuration options to apply, how to compile the source
99files, and how to package the compiled output.
100
101The term "package" is sometimes used to refer to recipes. However, since
102the word "package" is used for the packaged output from the OpenEmbedded
103build system (i.e. ``.ipk`` or ``.deb`` files), this document avoids
104using the term "package" when referring to recipes.
105
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500106Classes
107-------
108
109Class files (``.bbclass``) contain information that is useful to share
Andrew Geissler517393d2023-01-13 08:55:19 -0600110between recipes files. An example is the :ref:`ref-classes-autotools` class,
Patrick Williams03907ee2022-05-01 06:28:52 -0500111which contains common settings for any application that is built with
Patrick Williams7784c422022-11-17 07:29:11 -0600112the :wikipedia:`GNU Autotools <GNU_Autotools>`.
Patrick Williams03907ee2022-05-01 06:28:52 -0500113The ":ref:`ref-manual/classes:Classes`" chapter in the Yocto Project
114Reference Manual provides details about classes and how to use them.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500115
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500116Configurations
117--------------
118
119The configuration files (``.conf``) define various configuration
120variables that govern the OpenEmbedded build process. These files fall
121into several areas that define machine configuration options,
122distribution configuration options, compiler tuning options, general
123common configuration options, and user configuration options in
124``conf/local.conf``, which is found in the :term:`Build Directory`.
125
126
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500127Layers
128======
129
130Layers are repositories that contain related metadata (i.e. sets of
131instructions) that tell the OpenEmbedded build system how to build a
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500132target. :ref:`overview-manual/yp-intro:the yocto project layer model`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500133facilitates collaboration, sharing, customization, and reuse within the
134Yocto Project development environment. Layers logically separate
135information for your project. For example, you can use a layer to hold
136all the configurations for a particular piece of hardware. Isolating
137hardware-specific configurations allows you to share other metadata by
138using a different layer where that metadata might be common across
139several pieces of hardware.
140
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700141There are many layers working in the Yocto Project development environment. The
Patrick Williams03907ee2022-05-01 06:28:52 -0500142:yocto_home:`Yocto Project Compatible Layer Index </software-overview/layers/>`
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600143and :oe_layerindex:`OpenEmbedded Layer Index <>` both contain layers from
144which you can use or leverage.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500145
146By convention, layers in the Yocto Project follow a specific form.
147Conforming to a known structure allows BitBake to make assumptions
148during builds on where to find types of metadata. You can find
149procedures and learn about tools (i.e. ``bitbake-layers``) for creating
150layers suitable for the Yocto Project in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600151":ref:`dev-manual/layers:understanding and creating layers`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500152section of the Yocto Project Development Tasks Manual.
153
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500154OpenEmbedded Build System Concepts
155==================================
156
157This section takes a more detailed look inside the build process used by
158the :term:`OpenEmbedded Build System`,
159which is the build
160system specific to the Yocto Project. At the heart of the build system
161is BitBake, the task executor.
162
163The following diagram represents the high-level workflow of a build. The
164remainder of this section expands on the fundamental input, output,
165process, and metadata logical blocks that make up the workflow.
166
167.. image:: figures/YP-flow-diagram.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500168 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500169
170In general, the build's workflow consists of several functional areas:
171
172- *User Configuration:* metadata you can use to control the build
173 process.
174
175- *Metadata Layers:* Various layers that provide software, machine, and
176 distro metadata.
177
178- *Source Files:* Upstream releases, local projects, and SCMs.
179
180- *Build System:* Processes under the control of
181 :term:`BitBake`. This block expands
182 on how BitBake fetches source, applies patches, completes
183 compilation, analyzes output for package generation, creates and
184 tests packages, generates images, and generates cross-development
185 tools.
186
187- *Package Feeds:* Directories containing output packages (RPM, DEB or
188 IPK), which are subsequently used in the construction of an image or
189 Software Development Kit (SDK), produced by the build system. These
190 feeds can also be copied and shared using a web server or other means
191 to facilitate extending or updating existing images on devices at
192 runtime if runtime package management is enabled.
193
194- *Images:* Images produced by the workflow.
195
196- *Application Development SDK:* Cross-development tools that are
197 produced along with an image or separately with BitBake.
198
199User Configuration
200------------------
201
202User configuration helps define the build. Through user configuration,
203you can tell BitBake the target architecture for which you are building
204the image, where to store downloaded source, and other build properties.
205
206The following figure shows an expanded representation of the "User
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500207Configuration" box of the :ref:`general workflow
208figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500209
210.. image:: figures/user-configuration.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500211 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500212
213BitBake needs some basic configuration files in order to complete a
214build. These files are ``*.conf`` files. The minimally necessary ones
215reside as example files in the ``build/conf`` directory of the
216:term:`Source Directory`. For simplicity,
217this section refers to the Source Directory as the "Poky Directory."
218
219When you clone the :term:`Poky` Git repository
220or you download and unpack a Yocto Project release, you can set up the
221Source Directory to be named anything you want. For this discussion, the
222cloned repository uses the default name ``poky``.
223
224.. note::
225
226 The Poky repository is primarily an aggregation of existing
227 repositories. It is not a canonical upstream source.
228
229The ``meta-poky`` layer inside Poky contains a ``conf`` directory that
230has example configuration files. These example files are used as a basis
231for creating actual configuration files when you source
232:ref:`structure-core-script`, which is the
233build environment script.
234
Patrick Williams2390b1b2022-11-03 13:47:49 -0500235Sourcing the build environment script creates a :term:`Build Directory`
236if one does not already exist. BitBake uses the :term:`Build Directory`
237for all its work during builds. The Build Directory has a ``conf`` directory
238that contains default versions of your ``local.conf`` and ``bblayers.conf``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500239configuration files. These default configuration files are created only
Patrick Williams2390b1b2022-11-03 13:47:49 -0500240if versions do not already exist in the :term:`Build Directory` at the time you
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500241source the build environment setup script.
242
243Because the Poky repository is fundamentally an aggregation of existing
244repositories, some users might be familiar with running the
245:ref:`structure-core-script` script in the context of separate
246:term:`OpenEmbedded-Core (OE-Core)` and BitBake
247repositories rather than a single Poky repository. This discussion
248assumes the script is executed from within a cloned or unpacked version
249of Poky.
250
251Depending on where the script is sourced, different sub-scripts are
Patrick Williams2390b1b2022-11-03 13:47:49 -0500252called to set up the :term:`Build Directory` (Yocto or OpenEmbedded).
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500253Specifically, the script ``scripts/oe-setup-builddir`` inside the poky
Patrick Williams2390b1b2022-11-03 13:47:49 -0500254directory sets up the :term:`Build Directory` and seeds the directory (if
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500255necessary) with configuration files appropriate for the Yocto Project
256development environment.
257
258.. note::
259
260 The
261 scripts/oe-setup-builddir
262 script uses the
263 ``$TEMPLATECONF``
264 variable to determine which sample configuration files to locate.
265
266The ``local.conf`` file provides many basic variables that define a
267build environment. Here is a list of a few. To see the default
268configurations in a ``local.conf`` file created by the build environment
269script, see the
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500270:yocto_git:`local.conf.sample </poky/tree/meta-poky/conf/templates/default/local.conf.sample>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500271in the ``meta-poky`` layer:
272
273- *Target Machine Selection:* Controlled by the
274 :term:`MACHINE` variable.
275
276- *Download Directory:* Controlled by the
277 :term:`DL_DIR` variable.
278
279- *Shared State Directory:* Controlled by the
280 :term:`SSTATE_DIR` variable.
281
282- *Build Output:* Controlled by the
283 :term:`TMPDIR` variable.
284
285- *Distribution Policy:* Controlled by the
286 :term:`DISTRO` variable.
287
288- *Packaging Format:* Controlled by the
289 :term:`PACKAGE_CLASSES`
290 variable.
291
292- *SDK Target Architecture:* Controlled by the
293 :term:`SDKMACHINE` variable.
294
295- *Extra Image Packages:* Controlled by the
296 :term:`EXTRA_IMAGE_FEATURES`
297 variable.
298
299.. note::
300
Andrew Geissler9aee5002022-03-30 16:27:02 +0000301 Configurations set in the ``conf/local.conf`` file can also be set
302 in the ``conf/site.conf`` and ``conf/auto.conf`` configuration files.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500303
304The ``bblayers.conf`` file tells BitBake what layers you want considered
305during the build. By default, the layers listed in this file include
306layers minimally needed by the build system. However, you must manually
307add any custom layers you have created. You can find more information on
308working with the ``bblayers.conf`` file in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600309":ref:`dev-manual/layers:enabling your layer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500310section in the Yocto Project Development Tasks Manual.
311
312The files ``site.conf`` and ``auto.conf`` are not created by the
313environment initialization script. If you want the ``site.conf`` file,
Andrew Geisslerd5838332022-05-27 11:33:10 -0500314you need to create it yourself. The ``auto.conf`` file is typically
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500315created by an autobuilder:
316
317- *site.conf:* You can use the ``conf/site.conf`` configuration
318 file to configure multiple build directories. For example, suppose
319 you had several build environments and they shared some common
320 features. You can set these default build properties here. A good
321 example is perhaps the packaging format to use through the
Andrew Geisslerd5838332022-05-27 11:33:10 -0500322 :term:`PACKAGE_CLASSES` variable.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500323
324- *auto.conf:* The file is usually created and written to by an
325 autobuilder. The settings put into the file are typically the same as
326 you would find in the ``conf/local.conf`` or the ``conf/site.conf``
327 files.
328
329You can edit all configuration files to further define any particular
330build environment. This process is represented by the "User
331Configuration Edits" box in the figure.
332
333When you launch your build with the ``bitbake target`` command, BitBake
334sorts out the configurations to ultimately define your build
335environment. It is important to understand that the
336:term:`OpenEmbedded Build System` reads the
337configuration files in a specific order: ``site.conf``, ``auto.conf``,
338and ``local.conf``. And, the build system applies the normal assignment
339statement rules as described in the
340":doc:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata`" chapter
341of the BitBake User Manual. Because the files are parsed in a specific
342order, variable assignments for the same variable could be affected. For
343example, if the ``auto.conf`` file and the ``local.conf`` set variable1
344to different values, because the build system parses ``local.conf``
345after ``auto.conf``, variable1 is assigned the value from the
346``local.conf`` file.
347
348Metadata, Machine Configuration, and Policy Configuration
349---------------------------------------------------------
350
351The previous section described the user configurations that define
352BitBake's global behavior. This section takes a closer look at the
353layers the build system uses to further control the build. These layers
354provide Metadata for the software, machine, and policies.
355
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700356In general, there are three types of layer input. You can see them below
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500357the "User Configuration" box in the `general workflow
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500358figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500359
360- *Metadata (.bb + Patches):* Software layers containing
361 user-supplied recipe files, patches, and append files. A good example
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600362 of a software layer might be the :oe_layer:`meta-qt5 layer </meta-qt5>`
363 from the :oe_layerindex:`OpenEmbedded Layer Index <>`. This layer is for
364 version 5.0 of the popular `Qt <https://wiki.qt.io/About_Qt>`__
365 cross-platform application development framework for desktop, embedded and
366 mobile.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500367
368- *Machine BSP Configuration:* Board Support Package (BSP) layers (i.e.
369 "BSP Layer" in the following figure) providing machine-specific
370 configurations. This type of information is specific to a particular
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500371 target architecture. A good example of a BSP layer from the
372 :ref:`overview-manual/yp-intro:reference distribution (poky)` is the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600373 :yocto_git:`meta-yocto-bsp </poky/tree/meta-yocto-bsp>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500374 layer.
375
376- *Policy Configuration:* Distribution Layers (i.e. "Distro Layer" in
377 the following figure) providing top-level or general policies for the
378 images or SDKs being built for a particular distribution. For
379 example, in the Poky Reference Distribution the distro layer is the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600380 :yocto_git:`meta-poky </poky/tree/meta-poky>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500381 layer. Within the distro layer is a ``conf/distro`` directory that
382 contains distro configuration files (e.g.
Andrew Geissler09209ee2020-12-13 08:44:15 -0600383 :yocto_git:`poky.conf </poky/tree/meta-poky/conf/distro/poky.conf>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500384 that contain many policy configurations for the Poky distribution.
385
386The following figure shows an expanded representation of these three
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500387layers from the :ref:`general workflow figure
388<overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500389
390.. image:: figures/layer-input.png
391 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -0500392 :width: 70%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500393
394In general, all layers have a similar structure. They all contain a
395licensing file (e.g. ``COPYING.MIT``) if the layer is to be distributed,
396a ``README`` file as good practice and especially if the layer is to be
397distributed, a configuration directory, and recipe directories. You can
398learn about the general structure for layers used with the Yocto Project
399in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600400":ref:`dev-manual/layers:creating your own layer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500401section in the
402Yocto Project Development Tasks Manual. For a general discussion on
403layers and the many layers from which you can draw, see the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500404":ref:`overview-manual/concepts:layers`" and
405":ref:`overview-manual/yp-intro:the yocto project layer model`" sections both
406earlier in this manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500407
408If you explored the previous links, you discovered some areas where many
Andrew Geissler09209ee2020-12-13 08:44:15 -0600409layers that work with the Yocto Project exist. The :yocto_git:`Source
410Repositories <>` also shows layers categorized under "Yocto Metadata Layers."
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500411
412.. note::
413
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700414 There are layers in the Yocto Project Source Repositories that cannot be
415 found in the OpenEmbedded Layer Index. Such layers are either
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500416 deprecated or experimental in nature.
417
418BitBake uses the ``conf/bblayers.conf`` file, which is part of the user
419configuration, to find what layers it should be using as part of the
420build.
421
422Distro Layer
423~~~~~~~~~~~~
424
425The distribution layer provides policy configurations for your
426distribution. Best practices dictate that you isolate these types of
427configurations into their own layer. Settings you provide in
428``conf/distro/distro.conf`` override similar settings that BitBake finds
Patrick Williams2390b1b2022-11-03 13:47:49 -0500429in your ``conf/local.conf`` file in the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500430
431The following list provides some explanation and references for what you
432typically find in the distribution layer:
433
434- *classes:* Class files (``.bbclass``) hold common functionality that
435 can be shared among recipes in the distribution. When your recipes
436 inherit a class, they take on the settings and functions for that
437 class. You can read more about class files in the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600438 ":ref:`ref-manual/classes:Classes`" chapter of the Yocto
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500439 Reference Manual.
440
441- *conf:* This area holds configuration files for the layer
442 (``conf/layer.conf``), the distribution
443 (``conf/distro/distro.conf``), and any distribution-wide include
444 files.
445
446- *recipes-*:* Recipes and append files that affect common
447 functionality across the distribution. This area could include
448 recipes and append files to add distribution-specific configuration,
449 initialization scripts, custom image recipes, and so forth. Examples
450 of ``recipes-*`` directories are ``recipes-core`` and
451 ``recipes-extra``. Hierarchy and contents within a ``recipes-*``
452 directory can vary. Generally, these directories contain recipe files
453 (``*.bb``), recipe append files (``*.bbappend``), directories that
454 are distro-specific for configuration files, and so forth.
455
456BSP Layer
457~~~~~~~~~
458
459The BSP Layer provides machine configurations that target specific
460hardware. Everything in this layer is specific to the machine for which
461you are building the image or the SDK. A common structure or form is
462defined for BSP layers. You can learn more about this structure in the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600463:doc:`/bsp-guide/index`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500464
465.. note::
466
467 In order for a BSP layer to be considered compliant with the Yocto
468 Project, it must meet some structural requirements.
469
470The BSP Layer's configuration directory contains configuration files for
471the machine (``conf/machine/machine.conf``) and, of course, the layer
472(``conf/layer.conf``).
473
474The remainder of the layer is dedicated to specific recipes by function:
475``recipes-bsp``, ``recipes-core``, ``recipes-graphics``,
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700476``recipes-kernel``, and so forth. There can be metadata for multiple
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500477formfactors, graphics support systems, and so forth.
478
479.. note::
480
481 While the figure shows several
482 recipes-\*
483 directories, not all these directories appear in all BSP layers.
484
485Software Layer
486~~~~~~~~~~~~~~
487
488The software layer provides the Metadata for additional software
489packages used during the build. This layer does not include Metadata
490that is specific to the distribution or the machine, which are found in
491their respective layers.
492
493This layer contains any recipes, append files, and patches, that your
494project needs.
495
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500496Sources
497-------
498
499In order for the OpenEmbedded build system to create an image or any
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500500target, it must be able to access source files. The :ref:`general workflow
501figure <overview-manual/concepts:openembedded build system concepts>`
502represents source files using the "Upstream Project Releases", "Local
503Projects", and "SCMs (optional)" boxes. The figure represents mirrors,
504which also play a role in locating source files, with the "Source
505Materials" box.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500506
507The method by which source files are ultimately organized is a function
508of the project. For example, for released software, projects tend to use
509tarballs or other archived files that can capture the state of a release
510guaranteeing that it is statically represented. On the other hand, for a
511project that is more dynamic or experimental in nature, a project might
512keep source files in a repository controlled by a Source Control Manager
513(SCM) such as Git. Pulling source from a repository allows you to
514control the point in the repository (the revision) from which you want
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700515to build software. A combination of the two is also possible.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500516
517BitBake uses the :term:`SRC_URI`
518variable to point to source files regardless of their location. Each
Andrew Geissler09036742021-06-25 14:25:14 -0500519recipe must have a :term:`SRC_URI` variable that points to the source.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500520
521Another area that plays a significant role in where source files come
522from is pointed to by the
523:term:`DL_DIR` variable. This area is
524a cache that can hold previously downloaded source. You can also
525instruct the OpenEmbedded build system to create tarballs from Git
526repositories, which is not the default behavior, and store them in the
Andrew Geissler09036742021-06-25 14:25:14 -0500527:term:`DL_DIR` by using the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500528:term:`BB_GENERATE_MIRROR_TARBALLS`
529variable.
530
Andrew Geissler09036742021-06-25 14:25:14 -0500531Judicious use of a :term:`DL_DIR` directory can save the build system a trip
Patrick Williams2390b1b2022-11-03 13:47:49 -0500532across the Internet when looking for files. A good method for using a download
533directory is to have :term:`DL_DIR` point to an area outside of your
534:term:`Build Directory`. Doing so allows you to safely delete the
535:term:`Build Directory` if needed without fear of removing any downloaded
536source file.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500537
538The remainder of this section provides a deeper look into the source
539files and the mirrors. Here is a more detailed look at the source file
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500540area of the :ref:`general workflow figure <overview-manual/concepts:openembedded build system concepts>`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500541
542.. image:: figures/source-input.png
543 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -0500544 :width: 70%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500545
546Upstream Project Releases
547~~~~~~~~~~~~~~~~~~~~~~~~~
548
549Upstream project releases exist anywhere in the form of an archived file
550(e.g. tarball or zip file). These files correspond to individual
551recipes. For example, the figure uses specific releases each for
552BusyBox, Qt, and Dbus. An archive file can be for any released product
553that can be built using a recipe.
554
555Local Projects
556~~~~~~~~~~~~~~
557
558Local projects are custom bits of software the user provides. These bits
Andrew Geissler615f2f12022-07-15 14:00:58 -0500559reside somewhere local to a project --- perhaps a directory into which the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500560user checks in items (e.g. a local directory containing a development
561source tree used by the group).
562
Andrew Geissler517393d2023-01-13 08:55:19 -0600563The canonical method through which to include a local project is to use the
564:ref:`ref-classes-externalsrc` class to include that local project. You use
565either the ``local.conf`` or a recipe's append file to override or set the
566recipe to point to the local directory on your disk to pull in the whole
567source tree.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500568
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500569Source Control Managers (Optional)
570~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
571
572Another place from which the build system can get source files is with
Patrick Williams213cb262021-08-07 19:21:33 -0500573:ref:`bitbake:bitbake-user-manual/bitbake-user-manual-fetching:fetchers` employing various Source
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500574Control Managers (SCMs) such as Git or Subversion. In such cases, a
575repository is cloned or checked out. The
576:ref:`ref-tasks-fetch` task inside
577BitBake uses the :term:`SRC_URI`
578variable and the argument's prefix to determine the correct fetcher
579module.
580
581.. note::
582
583 For information on how to have the OpenEmbedded build system generate
Andrew Geissler517393d2023-01-13 08:55:19 -0600584 tarballs for Git repositories and place them in the :term:`DL_DIR`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500585 directory, see the :term:`BB_GENERATE_MIRROR_TARBALLS`
586 variable in the Yocto Project Reference Manual.
587
588When fetching a repository, BitBake uses the
589:term:`SRCREV` variable to determine
590the specific revision from which to build.
591
592Source Mirror(s)
593~~~~~~~~~~~~~~~~
594
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700595There are two kinds of mirrors: pre-mirrors and regular mirrors. The
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500596:term:`PREMIRRORS` and
597:term:`MIRRORS` variables point to
598these, respectively. BitBake checks pre-mirrors before looking upstream
599for any source files. Pre-mirrors are appropriate when you have a shared
600directory that is not a directory defined by the
601:term:`DL_DIR` variable. A Pre-mirror
602typically points to a shared directory that is local to your
603organization.
604
605Regular mirrors can be any site across the Internet that is used as an
606alternative location for source code should the primary site not be
607functioning for some reason or another.
608
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500609Package Feeds
610-------------
611
612When the OpenEmbedded build system generates an image or an SDK, it gets
613the packages from a package feed area located in the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500614:term:`Build Directory`. The :ref:`general workflow figure
615<overview-manual/concepts:openembedded build system concepts>`
616shows this package feeds area in the upper-right corner.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500617
618This section looks a little closer into the package feeds area used by
619the build system. Here is a more detailed look at the area:
620
621.. image:: figures/package-feeds.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500622 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500623
624Package feeds are an intermediary step in the build process. The
625OpenEmbedded build system provides classes to generate different package
626types, and you specify which classes to enable through the
627:term:`PACKAGE_CLASSES`
628variable. Before placing the packages into package feeds, the build
629process validates them with generated output quality assurance checks
Andrew Geissler517393d2023-01-13 08:55:19 -0600630through the :ref:`ref-classes-insane` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500631
Patrick Williams2390b1b2022-11-03 13:47:49 -0500632The package feed area resides in the :term:`Build Directory`. The directory the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500633build system uses to temporarily store packages is determined by a
634combination of variables and the particular package manager in use. See
635the "Package Feeds" box in the illustration and note the information to
636the right of that area. In particular, the following defines where
637package files are kept:
638
Patrick Williams2390b1b2022-11-03 13:47:49 -0500639- :term:`DEPLOY_DIR`: Defined as ``tmp/deploy`` in the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500640
641- ``DEPLOY_DIR_*``: Depending on the package manager used, the package
642 type sub-folder. Given RPM, IPK, or DEB packaging and tarball
643 creation, the
644 :term:`DEPLOY_DIR_RPM`,
645 :term:`DEPLOY_DIR_IPK`,
646 :term:`DEPLOY_DIR_DEB`, or
647 :term:`DEPLOY_DIR_TAR`,
648 variables are used, respectively.
649
650- :term:`PACKAGE_ARCH`: Defines
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700651 architecture-specific sub-folders. For example, packages could be
652 available for the i586 or qemux86 architectures.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500653
654BitBake uses the
655:ref:`do_package_write_* <ref-tasks-package_write_deb>`
656tasks to generate packages and place them into the package holding area
657(e.g. ``do_package_write_ipk`` for IPK packages). See the
658":ref:`ref-tasks-package_write_deb`",
659":ref:`ref-tasks-package_write_ipk`",
660":ref:`ref-tasks-package_write_rpm`",
661and
662":ref:`ref-tasks-package_write_tar`"
663sections in the Yocto Project Reference Manual for additional
664information. As an example, consider a scenario where an IPK packaging
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700665manager is being used and there is package architecture support for both
666i586 and qemux86. Packages for the i586 architecture are placed in
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500667``build/tmp/deploy/ipk/i586``, while packages for the qemux86
668architecture are placed in ``build/tmp/deploy/ipk/qemux86``.
669
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500670BitBake Tool
671------------
672
673The OpenEmbedded build system uses
674:term:`BitBake` to produce images and
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500675Software Development Kits (SDKs). You can see from the :ref:`general workflow
676figure <overview-manual/concepts:openembedded build system concepts>`,
677the BitBake area consists of several functional areas. This section takes a
678closer look at each of those areas.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500679
680.. note::
681
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700682 Documentation for the BitBake tool is available separately. See the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500683 BitBake User Manual
684 for reference material on BitBake.
685
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500686Source Fetching
687~~~~~~~~~~~~~~~
688
689The first stages of building a recipe are to fetch and unpack the source
690code:
691
692.. image:: figures/source-fetching.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500693 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500694
Patrick Williams2390b1b2022-11-03 13:47:49 -0500695The :ref:`ref-tasks-fetch` and :ref:`ref-tasks-unpack` tasks fetch
696the source files and unpack them into the :term:`Build Directory`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500697
698.. note::
699
Patrick Williams2194f502022-10-16 14:26:09 -0500700 For every local file (e.g. ``file://``) that is part of a recipe's
701 :term:`SRC_URI` statement, the OpenEmbedded build system takes a
702 checksum of the file for the recipe and inserts the checksum into
703 the signature for the :ref:`ref-tasks-fetch` task. If any local
704 file has been modified, the :ref:`ref-tasks-fetch` task and all
705 tasks that depend on it are re-executed.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500706
Patrick Williams2390b1b2022-11-03 13:47:49 -0500707By default, everything is accomplished in the :term:`Build Directory`, which has
708a defined structure. For additional general information on the
709:term:`Build Directory`, see the ":ref:`structure-core-build`" section in
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500710the Yocto Project Reference Manual.
711
Patrick Williams2390b1b2022-11-03 13:47:49 -0500712Each recipe has an area in the :term:`Build Directory` where the unpacked
713source code resides. The :term:`S` variable points to this area for a recipe's
714unpacked source code. The name of that directory for any given recipe is
715defined from several different variables. The preceding figure and the
716following list describe the :term:`Build Directory`'s hierarchy:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500717
718- :term:`TMPDIR`: The base directory
719 where the OpenEmbedded build system performs all its work during the
720 build. The default base directory is the ``tmp`` directory.
721
722- :term:`PACKAGE_ARCH`: The
723 architecture of the built package or packages. Depending on the
724 eventual destination of the package or packages (i.e. machine
725 architecture, :term:`Build Host`, SDK, or
Andrew Geissler09036742021-06-25 14:25:14 -0500726 specific machine), :term:`PACKAGE_ARCH` varies. See the variable's
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500727 description for details.
728
729- :term:`TARGET_OS`: The operating
730 system of the target device. A typical value would be "linux" (e.g.
731 "qemux86-poky-linux").
732
733- :term:`PN`: The name of the recipe used
734 to build the package. This variable can have multiple meanings.
Andrew Geissler09036742021-06-25 14:25:14 -0500735 However, when used in the context of input files, :term:`PN` represents
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500736 the name of the recipe.
737
738- :term:`WORKDIR`: The location
739 where the OpenEmbedded build system builds a recipe (i.e. does the
740 work to create the package).
741
742 - :term:`PV`: The version of the
743 recipe used to build the package.
744
745 - :term:`PR`: The revision of the
746 recipe used to build the package.
747
748- :term:`S`: Contains the unpacked source
749 files for a given recipe.
750
751 - :term:`BPN`: The name of the recipe
Andrew Geissler09036742021-06-25 14:25:14 -0500752 used to build the package. The :term:`BPN` variable is a version of
Andrew Geissler5f350902021-07-23 13:09:54 -0400753 the :term:`PN` variable but with common prefixes and suffixes removed.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500754
755 - :term:`PV`: The version of the
756 recipe used to build the package.
757
758.. note::
759
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700760 In the previous figure, notice that there are two sample hierarchies:
761 one based on package architecture (i.e. :term:`PACKAGE_ARCH`)
762 and one based on a machine (i.e. :term:`MACHINE`).
763 The underlying structures are identical. The differentiator being
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500764 what the OpenEmbedded build system is using as a build target (e.g.
765 general architecture, a build host, an SDK, or a specific machine).
766
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500767Patching
768~~~~~~~~
769
770Once source code is fetched and unpacked, BitBake locates patch files
771and applies them to the source files:
772
773.. image:: figures/patching.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500774 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500775
776The :ref:`ref-tasks-patch` task uses a
777recipe's :term:`SRC_URI` statements
778and the :term:`FILESPATH` variable
779to locate applicable patch files.
780
781Default processing for patch files assumes the files have either
Andrew Geissler09036742021-06-25 14:25:14 -0500782``*.patch`` or ``*.diff`` file types. You can use :term:`SRC_URI` parameters
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500783to change the way the build system recognizes patch files. See the
784:ref:`ref-tasks-patch` task for more
785information.
786
787BitBake finds and applies multiple patches for a single recipe in the
Andrew Geissler09036742021-06-25 14:25:14 -0500788order in which it locates the patches. The :term:`FILESPATH` variable
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500789defines the default set of directories that the build system uses to
790search for patch files. Once found, patches are applied to the recipe's
791source files, which are located in the
792:term:`S` directory.
793
794For more information on how the source directories are created, see the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500795":ref:`overview-manual/concepts:source fetching`" section. For
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500796more information on how to create patches and how the build system
797processes patches, see the
Andrew Geissler517393d2023-01-13 08:55:19 -0600798":ref:`dev-manual/new-recipe:patching code`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500799section in the
800Yocto Project Development Tasks Manual. You can also see the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600801":ref:`sdk-manual/extensible:use \`\`devtool modify\`\` to modify the source of an existing component`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500802section in the Yocto Project Application Development and the Extensible
803Software Development Kit (SDK) manual and the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600804":ref:`kernel-dev/common:using traditional kernel development to patch the kernel`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500805section in the Yocto Project Linux Kernel Development Manual.
806
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500807Configuration, Compilation, and Staging
808~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
809
810After source code is patched, BitBake executes tasks that configure and
811compile the source code. Once compilation occurs, the files are copied
812to a holding area (staged) in preparation for packaging:
813
814.. image:: figures/configuration-compile-autoreconf.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500815 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500816
817This step in the build process consists of the following tasks:
818
819- :ref:`ref-tasks-prepare_recipe_sysroot`:
820 This task sets up the two sysroots in
821 ``${``\ :term:`WORKDIR`\ ``}``
822 (i.e. ``recipe-sysroot`` and ``recipe-sysroot-native``) so that
823 during the packaging phase the sysroots can contain the contents of
824 the
825 :ref:`ref-tasks-populate_sysroot`
826 tasks of the recipes on which the recipe containing the tasks
827 depends. A sysroot exists for both the target and for the native
828 binaries, which run on the host system.
829
830- *do_configure*: This task configures the source by enabling and
831 disabling any build-time and configuration options for the software
832 being built. Configurations can come from the recipe itself as well
833 as from an inherited class. Additionally, the software itself might
834 configure itself depending on the target for which it is being built.
835
836 The configurations handled by the
837 :ref:`ref-tasks-configure` task
838 are specific to configurations for the source code being built by the
839 recipe.
840
Andrew Geissler517393d2023-01-13 08:55:19 -0600841 If you are using the :ref:`ref-classes-autotools` class,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500842 you can add additional configuration options by using the
843 :term:`EXTRA_OECONF` or
844 :term:`PACKAGECONFIG_CONFARGS`
845 variables. For information on how this variable works within that
Andrew Geissler517393d2023-01-13 08:55:19 -0600846 class, see the :ref:`ref-classes-autotools` class
Patrick Williams975a06f2022-10-21 14:42:47 -0500847 :yocto_git:`here </poky/tree/meta/classes-recipe/autotools.bbclass>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500848
849- *do_compile*: Once a configuration task has been satisfied,
850 BitBake compiles the source using the
851 :ref:`ref-tasks-compile` task.
852 Compilation occurs in the directory pointed to by the
853 :term:`B` variable. Realize that the
Andrew Geissler09036742021-06-25 14:25:14 -0500854 :term:`B` directory is, by default, the same as the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500855 :term:`S` directory.
856
857- *do_install*: After compilation completes, BitBake executes the
858 :ref:`ref-tasks-install` task.
Andrew Geissler09036742021-06-25 14:25:14 -0500859 This task copies files from the :term:`B` directory and places them in a
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500860 holding area pointed to by the :term:`D`
861 variable. Packaging occurs later using files from this holding
862 directory.
863
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500864Package Splitting
865~~~~~~~~~~~~~~~~~
866
867After source code is configured, compiled, and staged, the build system
868analyzes the results and splits the output into packages:
869
870.. image:: figures/analysis-for-package-splitting.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500871 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500872
873The :ref:`ref-tasks-package` and
874:ref:`ref-tasks-packagedata`
875tasks combine to analyze the files found in the
876:term:`D` directory and split them into
877subsets based on available packages and files. Analysis involves the
878following as well as other items: splitting out debugging symbols,
879looking at shared library dependencies between packages, and looking at
880package relationships.
881
Patrick Williams2194f502022-10-16 14:26:09 -0500882The :ref:`ref-tasks-packagedata` task creates package metadata based on the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500883analysis such that the build system can generate the final packages. The
884:ref:`ref-tasks-populate_sysroot`
885task stages (copies) a subset of the files installed by the
886:ref:`ref-tasks-install` task into
887the appropriate sysroot. Working, staged, and intermediate results of
888the analysis and package splitting process use several areas:
889
890- :term:`PKGD`: The destination
891 directory (i.e. ``package``) for packages before they are split into
892 individual packages.
893
894- :term:`PKGDESTWORK`: A
Patrick Williams2194f502022-10-16 14:26:09 -0500895 temporary work area (i.e. ``pkgdata``) used by the :ref:`ref-tasks-package`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500896 task to save package metadata.
897
898- :term:`PKGDEST`: The parent
899 directory (i.e. ``packages-split``) for packages after they have been
900 split.
901
902- :term:`PKGDATA_DIR`: A shared,
903 global-state directory that holds packaging metadata generated during
904 the packaging process. The packaging process copies metadata from
Andrew Geissler09036742021-06-25 14:25:14 -0500905 :term:`PKGDESTWORK` to the :term:`PKGDATA_DIR` area where it becomes globally
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500906 available.
907
908- :term:`STAGING_DIR_HOST`:
909 The path for the sysroot for the system on which a component is built
910 to run (i.e. ``recipe-sysroot``).
911
912- :term:`STAGING_DIR_NATIVE`:
913 The path for the sysroot used when building components for the build
914 host (i.e. ``recipe-sysroot-native``).
915
916- :term:`STAGING_DIR_TARGET`:
917 The path for the sysroot used when a component that is built to
918 execute on a system and it generates code for yet another machine
Andrew Geissler517393d2023-01-13 08:55:19 -0600919 (e.g. :ref:`ref-classes-cross-canadian` recipes).
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500920
921The :term:`FILES` variable defines the
922files that go into each package in
923:term:`PACKAGES`. If you want
924details on how this is accomplished, you can look at
Patrick Williams975a06f2022-10-21 14:42:47 -0500925:yocto_git:`package.bbclass </poky/tree/meta/classes-global/package.bbclass>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500926
927Depending on the type of packages being created (RPM, DEB, or IPK), the
928:ref:`do_package_write_* <ref-tasks-package_write_deb>`
929task creates the actual packages and places them in the Package Feed
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500930area, which is ``${TMPDIR}/deploy``. You can see the
931":ref:`overview-manual/concepts:package feeds`" section for more detail on
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500932that part of the build process.
933
934.. note::
935
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700936 Support for creating feeds directly from the ``deploy/*``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500937 directories does not exist. Creating such feeds usually requires some
938 kind of feed maintenance mechanism that would upload the new packages
939 into an official package feed (e.g. the Ångström distribution). This
940 functionality is highly distribution-specific and thus is not
941 provided out of the box.
942
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500943Image Generation
944~~~~~~~~~~~~~~~~
945
946Once packages are split and stored in the Package Feeds area, the build
947system uses BitBake to generate the root filesystem image:
948
949.. image:: figures/image-generation.png
Andrew Geisslerd5838332022-05-27 11:33:10 -0500950 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500951
952The image generation process consists of several stages and depends on
953several tasks and variables. The
954:ref:`ref-tasks-rootfs` task creates
955the root filesystem (file and directory structure) for an image. This
956task uses several key variables to help create the list of packages to
957actually install:
958
959- :term:`IMAGE_INSTALL`: Lists
960 out the base set of packages from which to install from the Package
961 Feeds area.
962
963- :term:`PACKAGE_EXCLUDE`:
964 Specifies packages that should not be installed into the image.
965
966- :term:`IMAGE_FEATURES`:
967 Specifies features to include in the image. Most of these features
968 map to additional packages for installation.
969
970- :term:`PACKAGE_CLASSES`:
971 Specifies the package backend (e.g. RPM, DEB, or IPK) to use and
972 consequently helps determine where to locate packages within the
973 Package Feeds area.
974
975- :term:`IMAGE_LINGUAS`:
976 Determines the language(s) for which additional language support
977 packages are installed.
978
979- :term:`PACKAGE_INSTALL`:
980 The final list of packages passed to the package manager for
981 installation into the image.
982
983With :term:`IMAGE_ROOTFS`
984pointing to the location of the filesystem under construction and the
Andrew Geissler09036742021-06-25 14:25:14 -0500985:term:`PACKAGE_INSTALL` variable providing the final list of packages to
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500986install, the root file system is created.
987
988Package installation is under control of the package manager (e.g.
989dnf/rpm, opkg, or apt/dpkg) regardless of whether or not package
990management is enabled for the target. At the end of the process, if
991package management is not enabled for the target, the package manager's
992data files are deleted from the root filesystem. As part of the final
993stage of package installation, post installation scripts that are part
994of the packages are run. Any scripts that fail to run on the build host
995are run on the target when the target system is first booted. If you are
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500996using a
Andrew Geissler517393d2023-01-13 08:55:19 -0600997:ref:`read-only root filesystem <dev-manual/read-only-rootfs:creating a read-only root filesystem>`,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500998all the post installation scripts must succeed on the build host during
999the package installation phase since the root filesystem on the target
1000is read-only.
1001
Patrick Williams2194f502022-10-16 14:26:09 -05001002The final stages of the :ref:`ref-tasks-rootfs` task handle post processing. Post
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001003processing includes creation of a manifest file and optimizations.
1004
Andrew Geissler517393d2023-01-13 08:55:19 -06001005The manifest file (``.manifest``) resides in the same directory as the root
1006filesystem image. This file lists out, line-by-line, the installed packages.
1007The manifest file is useful for the :ref:`ref-classes-testimage` class,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001008for example, to determine whether or not to run specific tests. See the
Andrew Geissler517393d2023-01-13 08:55:19 -06001009:term:`IMAGE_MANIFEST` variable for additional information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001010
Andrew Geissler9aee5002022-03-30 16:27:02 +00001011Optimizing processes that are run across the image include ``mklibs``
1012and any other post-processing commands as defined by the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001013:term:`ROOTFS_POSTPROCESS_COMMAND`
Andrew Geissler9aee5002022-03-30 16:27:02 +00001014variable. The ``mklibs`` process optimizes the size of the libraries.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001015
1016After the root filesystem is built, processing begins on the image
1017through the :ref:`ref-tasks-image`
1018task. The build system runs any pre-processing commands as defined by
1019the
1020:term:`IMAGE_PREPROCESS_COMMAND`
1021variable. This variable specifies a list of functions to call before the
1022build system creates the final image output files.
1023
Patrick Williams2194f502022-10-16 14:26:09 -05001024The build system dynamically creates :ref:`do_image_* <ref-tasks-image>` tasks as needed,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001025based on the image types specified in the
1026:term:`IMAGE_FSTYPES` variable.
1027The process turns everything into an image file or a set of image files
1028and can compress the root filesystem image to reduce the overall size of
1029the image. The formats used for the root filesystem depend on the
Andrew Geissler09036742021-06-25 14:25:14 -05001030:term:`IMAGE_FSTYPES` variable. Compression depends on whether the formats
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001031support compression.
1032
1033As an example, a dynamically created task when creating a particular
Andrew Geisslerc926e172021-05-07 16:11:35 -05001034image type would take the following form::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001035
1036 do_image_type
1037
1038So, if the type
Andrew Geissler09036742021-06-25 14:25:14 -05001039as specified by the :term:`IMAGE_FSTYPES` were ``ext4``, the dynamically
Andrew Geisslerc926e172021-05-07 16:11:35 -05001040generated task would be as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001041
1042 do_image_ext4
1043
1044The final task involved in image creation is the
1045:ref:`do_image_complete <ref-tasks-image-complete>`
1046task. This task completes the image by applying any image post
1047processing as defined through the
1048:term:`IMAGE_POSTPROCESS_COMMAND`
1049variable. The variable specifies a list of functions to call once the
1050build system has created the final image output files.
1051
1052.. note::
1053
1054 The entire image generation process is run under
1055 Pseudo. Running under Pseudo ensures that the files in the root filesystem
1056 have correct ownership.
1057
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001058SDK Generation
1059~~~~~~~~~~~~~~
1060
1061The OpenEmbedded build system uses BitBake to generate the Software
1062Development Kit (SDK) installer scripts for both the standard SDK and
1063the extensible SDK (eSDK):
1064
1065.. image:: figures/sdk-generation.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001066 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001067
1068.. note::
1069
1070 For more information on the cross-development toolchain generation,
Andrew Geissler09209ee2020-12-13 08:44:15 -06001071 see the ":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001072 section. For information on advantages gained when building a
Patrick Williams2194f502022-10-16 14:26:09 -05001073 cross-development toolchain using the :ref:`ref-tasks-populate_sdk` task, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001074 ":ref:`sdk-manual/appendix-obtain:building an sdk installer`" section in
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001075 the Yocto Project Application Development and the Extensible Software
1076 Development Kit (eSDK) manual.
1077
1078Like image generation, the SDK script process consists of several stages
1079and depends on many variables. The
1080:ref:`ref-tasks-populate_sdk`
1081and
1082:ref:`ref-tasks-populate_sdk_ext`
1083tasks use these key variables to help create the list of packages to
1084actually install. For information on the variables listed in the figure,
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001085see the ":ref:`overview-manual/concepts:application development sdk`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001086section.
1087
Patrick Williams2194f502022-10-16 14:26:09 -05001088The :ref:`ref-tasks-populate_sdk` task helps create the standard SDK and handles
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001089two parts: a target part and a host part. The target part is the part
1090built for the target hardware and includes libraries and headers. The
1091host part is the part of the SDK that runs on the
1092:term:`SDKMACHINE`.
1093
Patrick Williams2194f502022-10-16 14:26:09 -05001094The :ref:`ref-tasks-populate_sdk_ext` task helps create the extensible SDK and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001095handles host and target parts differently than its counter part does for
1096the standard SDK. For the extensible SDK, the task encapsulates the
1097build system, which includes everything needed (host and target) for the
1098SDK.
1099
1100Regardless of the type of SDK being constructed, the tasks perform some
1101cleanup after which a cross-development environment setup script and any
1102needed configuration files are created. The final output is the
1103Cross-development toolchain installation script (``.sh`` file), which
1104includes the environment setup script.
1105
1106Stamp Files and the Rerunning of Tasks
1107~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1108
1109For each task that completes successfully, BitBake writes a stamp file
1110into the :term:`STAMPS_DIR`
1111directory. The beginning of the stamp file's filename is determined by
1112the :term:`STAMP` variable, and the end
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001113of the name consists of the task's name and current :ref:`input
1114checksum <overview-manual/concepts:checksums (signatures)>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001115
1116.. note::
1117
Andrew Geissler517393d2023-01-13 08:55:19 -06001118 This naming scheme assumes that :term:`BB_SIGNATURE_HANDLER`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001119 is "OEBasicHash", which is almost always the case in current
1120 OpenEmbedded.
1121
1122To determine if a task needs to be rerun, BitBake checks if a stamp file
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001123with a matching input checksum exists for the task. In this case,
1124the task's output is assumed to exist and still be valid. Otherwise,
1125the task is rerun.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001126
1127.. note::
1128
1129 The stamp mechanism is more general than the shared state (sstate)
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001130 cache mechanism described in the
1131 ":ref:`overview-manual/concepts:setscene tasks and shared state`" section.
1132 BitBake avoids rerunning any task that has a valid stamp file, not just
1133 tasks that can be accelerated through the sstate cache.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001134
1135 However, you should realize that stamp files only serve as a marker
1136 that some work has been done and that these files do not record task
1137 output. The actual task output would usually be somewhere in
1138 :term:`TMPDIR` (e.g. in some
1139 recipe's :term:`WORKDIR`.) What
1140 the sstate cache mechanism adds is a way to cache task output that
1141 can then be shared between build machines.
1142
Andrew Geissler09036742021-06-25 14:25:14 -05001143Since :term:`STAMPS_DIR` is usually a subdirectory of :term:`TMPDIR`, removing
1144:term:`TMPDIR` will also remove :term:`STAMPS_DIR`, which means tasks will
1145properly be rerun to repopulate :term:`TMPDIR`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001146
1147If you want some task to always be considered "out of date", you can
1148mark it with the :ref:`nostamp <bitbake:bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`
1149varflag. If some other task depends on such a task, then that task will
1150also always be considered out of date, which might not be what you want.
1151
1152For details on how to view information about a task's signature, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001153":ref:`dev-manual/debugging:viewing task variable dependencies`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001154section in the Yocto Project Development Tasks Manual.
1155
1156Setscene Tasks and Shared State
1157~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1158
1159The description of tasks so far assumes that BitBake needs to build
1160everything and no available prebuilt objects exist. BitBake does support
1161skipping tasks if prebuilt objects are available. These objects are
1162usually made available in the form of a shared state (sstate) cache.
1163
1164.. note::
1165
1166 For information on variables affecting sstate, see the
1167 :term:`SSTATE_DIR`
1168 and
1169 :term:`SSTATE_MIRRORS`
1170 variables.
1171
Andrew Geisslereff27472021-10-29 15:35:00 -05001172The idea of a setscene task (i.e ``do_taskname_setscene``) is a
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001173version of the task where instead of building something, BitBake can
1174skip to the end result and simply place a set of files into specific
1175locations as needed. In some cases, it makes sense to have a setscene
1176task variant (e.g. generating package files in the
1177:ref:`do_package_write_* <ref-tasks-package_write_deb>`
1178task). In other cases, it does not make sense (e.g. a
1179:ref:`ref-tasks-patch` task or a
1180:ref:`ref-tasks-unpack` task) since
1181the work involved would be equal to or greater than the underlying task.
1182
1183In the build system, the common tasks that have setscene variants are
1184:ref:`ref-tasks-package`,
Patrick Williams2194f502022-10-16 14:26:09 -05001185:ref:`do_package_write_* <ref-tasks-package_write_deb>`,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001186:ref:`ref-tasks-deploy`,
1187:ref:`ref-tasks-packagedata`, and
1188:ref:`ref-tasks-populate_sysroot`.
1189Notice that these tasks represent most of the tasks whose output is an
1190end result.
1191
1192The build system has knowledge of the relationship between these tasks
1193and other preceding tasks. For example, if BitBake runs
1194``do_populate_sysroot_setscene`` for something, it does not make sense
Patrick Williams2194f502022-10-16 14:26:09 -05001195to run any of the :ref:`ref-tasks-fetch`, :ref:`ref-tasks-unpack`, :ref:`ref-tasks-patch`,
1196:ref:`ref-tasks-configure`, :ref:`ref-tasks-compile`, and :ref:`ref-tasks-install` tasks. However, if
1197:ref:`ref-tasks-package` needs to be run, BitBake needs to run those other tasks.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001198
1199It becomes more complicated if everything can come from an sstate cache
1200because some objects are simply not required at all. For example, you do
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001201not need a compiler or native tools, such as quilt, if there isn't anything
Patrick Williams2194f502022-10-16 14:26:09 -05001202to compile or patch. If the :ref:`do_package_write_* <ref-tasks-package_write_deb>` packages are available
1203from sstate, BitBake does not need the :ref:`ref-tasks-package` task data.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001204
1205To handle all these complexities, BitBake runs in two phases. The first
1206is the "setscene" stage. During this stage, BitBake first checks the
1207sstate cache for any targets it is planning to build. BitBake does a
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001208fast check to see if the object exists rather than doing a complete download.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001209If nothing exists, the second phase, which is the setscene stage,
1210completes and the main build proceeds.
1211
1212If objects are found in the sstate cache, the build system works
1213backwards from the end targets specified by the user. For example, if an
1214image is being built, the build system first looks for the packages
1215needed for that image and the tools needed to construct an image. If
1216those are available, the compiler is not needed. Thus, the compiler is
1217not even downloaded. If something was found to be unavailable, or the
1218download or setscene task fails, the build system then tries to install
1219dependencies, such as the compiler, from the cache.
1220
1221The availability of objects in the sstate cache is handled by the
Patrick Williams213cb262021-08-07 19:21:33 -05001222function specified by the :term:`BB_HASHCHECK_FUNCTION`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001223variable and returns a list of available objects. The function specified
Patrick Williams213cb262021-08-07 19:21:33 -05001224by the :term:`BB_SETSCENE_DEPVALID`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001225variable is the function that determines whether a given dependency
1226needs to be followed, and whether for any given relationship the
1227function needs to be passed. The function returns a True or False value.
1228
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001229Images
1230------
1231
1232The images produced by the build system are compressed forms of the root
1233filesystem and are ready to boot on a target device. You can see from
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001234the :ref:`general workflow figure
1235<overview-manual/concepts:openembedded build system concepts>` that BitBake
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001236output, in part, consists of images. This section takes a closer look at
1237this output:
1238
1239.. image:: figures/images.png
1240 :align: center
Andrew Geisslerd5838332022-05-27 11:33:10 -05001241 :width: 75%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001242
1243.. note::
1244
1245 For a list of example images that the Yocto Project provides, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001246 ":doc:`/ref-manual/images`" chapter in the Yocto Project Reference
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001247 Manual.
1248
Patrick Williams2390b1b2022-11-03 13:47:49 -05001249The build process writes images out to the :term:`Build Directory` inside
1250the ``tmp/deploy/images/machine/`` folder as shown in the figure. This
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001251folder contains any files expected to be loaded on the target device.
Patrick Williams2390b1b2022-11-03 13:47:49 -05001252The :term:`DEPLOY_DIR` variable points to the ``deploy`` directory, while the
1253:term:`DEPLOY_DIR_IMAGE` variable points to the appropriate directory
1254containing images for the current configuration.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001255
1256- kernel-image: A kernel binary file. The
1257 :term:`KERNEL_IMAGETYPE`
1258 variable determines the naming scheme for the kernel image file.
1259 Depending on this variable, the file could begin with a variety of
1260 naming strings. The ``deploy/images/``\ machine directory can contain
1261 multiple image files for the machine.
1262
1263- root-filesystem-image: Root filesystems for the target device (e.g.
1264 ``*.ext3`` or ``*.bz2`` files). The
1265 :term:`IMAGE_FSTYPES`
1266 variable determines the root filesystem image type. The
1267 ``deploy/images/``\ machine directory can contain multiple root
1268 filesystems for the machine.
1269
1270- kernel-modules: Tarballs that contain all the modules built for the
1271 kernel. Kernel module tarballs exist for legacy purposes and can be
1272 suppressed by setting the
1273 :term:`MODULE_TARBALL_DEPLOY`
1274 variable to "0". The ``deploy/images/``\ machine directory can
1275 contain multiple kernel module tarballs for the machine.
1276
1277- bootloaders: If applicable to the target machine, bootloaders
1278 supporting the image. The ``deploy/images/``\ machine directory can
1279 contain multiple bootloaders for the machine.
1280
1281- symlinks: The ``deploy/images/``\ machine folder contains a symbolic
1282 link that points to the most recently built file for each machine.
1283 These links might be useful for external scripts that need to obtain
1284 the latest version of each file.
1285
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001286Application Development SDK
1287---------------------------
1288
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001289In the :ref:`general workflow figure
1290<overview-manual/concepts:openembedded build system concepts>`, the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001291output labeled "Application Development SDK" represents an SDK. The SDK
1292generation process differs depending on whether you build an extensible
1293SDK (e.g. ``bitbake -c populate_sdk_ext`` imagename) or a standard SDK
1294(e.g. ``bitbake -c populate_sdk`` imagename). This section takes a
1295closer look at this output:
1296
1297.. image:: figures/sdk.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001298 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001299
1300The specific form of this output is a set of files that includes a
1301self-extracting SDK installer (``*.sh``), host and target manifest
1302files, and files used for SDK testing. When the SDK installer file is
1303run, it installs the SDK. The SDK consists of a cross-development
1304toolchain, a set of libraries and headers, and an SDK environment setup
1305script. Running this installer essentially sets up your
1306cross-development environment. You can think of the cross-toolchain as
1307the "host" part because it runs on the SDK machine. You can think of the
1308libraries and headers as the "target" part because they are built for
1309the target hardware. The environment setup script is added so that you
1310can initialize the environment before using the tools.
1311
1312.. note::
1313
1314 - The Yocto Project supports several methods by which you can set up
1315 this cross-development environment. These methods include
1316 downloading pre-built SDK installers or building and installing
1317 your own SDK installer.
1318
1319 - For background information on cross-development toolchains in the
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001320 Yocto Project development environment, see the
1321 ":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001322 section.
1323
1324 - For information on setting up a cross-development environment, see
Andrew Geissler09209ee2020-12-13 08:44:15 -06001325 the :doc:`/sdk-manual/index` manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001326
1327All the output files for an SDK are written to the ``deploy/sdk`` folder
Patrick Williams2390b1b2022-11-03 13:47:49 -05001328inside the :term:`Build Directory` as shown in the previous figure. Depending
1329on the type of SDK, there are several variables to configure these files.
1330Here are the variables associated with an extensible SDK:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001331
1332- :term:`DEPLOY_DIR`: Points to
1333 the ``deploy`` directory.
1334
1335- :term:`SDK_EXT_TYPE`:
1336 Controls whether or not shared state artifacts are copied into the
1337 extensible SDK. By default, all required shared state artifacts are
1338 copied into the SDK.
1339
1340- :term:`SDK_INCLUDE_PKGDATA`:
1341 Specifies whether or not packagedata is included in the extensible
1342 SDK for all recipes in the "world" target.
1343
1344- :term:`SDK_INCLUDE_TOOLCHAIN`:
1345 Specifies whether or not the toolchain is included when building the
1346 extensible SDK.
1347
Andrew Geissler9aee5002022-03-30 16:27:02 +00001348- :term:`ESDK_LOCALCONF_ALLOW`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001349 A list of variables allowed through from the build system
1350 configuration into the extensible SDK configuration.
1351
Andrew Geissler9aee5002022-03-30 16:27:02 +00001352- :term:`ESDK_LOCALCONF_REMOVE`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001353 A list of variables not allowed through from the build system
1354 configuration into the extensible SDK configuration.
1355
Andrew Geissler9aee5002022-03-30 16:27:02 +00001356- :term:`ESDK_CLASS_INHERIT_DISABLE`:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001357 A list of classes to remove from the
1358 :term:`INHERIT` value globally
1359 within the extensible SDK configuration.
1360
1361This next list, shows the variables associated with a standard SDK:
1362
1363- :term:`DEPLOY_DIR`: Points to
1364 the ``deploy`` directory.
1365
1366- :term:`SDKMACHINE`: Specifies
1367 the architecture of the machine on which the cross-development tools
1368 are run to create packages for the target hardware.
1369
1370- :term:`SDKIMAGE_FEATURES`:
1371 Lists the features to include in the "target" part of the SDK.
1372
1373- :term:`TOOLCHAIN_HOST_TASK`:
1374 Lists packages that make up the host part of the SDK (i.e. the part
Andrew Geissler09036742021-06-25 14:25:14 -05001375 that runs on the :term:`SDKMACHINE`). When you use
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001376 ``bitbake -c populate_sdk imagename`` to create the SDK, a set of
1377 default packages apply. This variable allows you to add more
1378 packages.
1379
1380- :term:`TOOLCHAIN_TARGET_TASK`:
1381 Lists packages that make up the target part of the SDK (i.e. the part
1382 built for the target hardware).
1383
1384- :term:`SDKPATH`: Defines the
1385 default SDK installation path offered by the installation script.
1386
1387- :term:`SDK_HOST_MANIFEST`:
1388 Lists all the installed packages that make up the host part of the
1389 SDK. This variable also plays a minor role for extensible SDK
1390 development as well. However, it is mainly used for the standard SDK.
1391
1392- :term:`SDK_TARGET_MANIFEST`:
1393 Lists all the installed packages that make up the target part of the
1394 SDK. This variable also plays a minor role for extensible SDK
1395 development as well. However, it is mainly used for the standard SDK.
1396
1397Cross-Development Toolchain Generation
1398======================================
1399
1400The Yocto Project does most of the work for you when it comes to
Andrew Geissler09209ee2020-12-13 08:44:15 -06001401creating :ref:`sdk-manual/intro:the cross-development toolchain`. This
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001402section provides some technical background on how cross-development
1403toolchains are created and used. For more information on toolchains, you
Andrew Geissler09209ee2020-12-13 08:44:15 -06001404can also see the :doc:`/sdk-manual/index` manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001405
1406In the Yocto Project development environment, cross-development
1407toolchains are used to build images and applications that run on the
1408target hardware. With just a few commands, the OpenEmbedded build system
1409creates these necessary toolchains for you.
1410
1411The following figure shows a high-level build environment regarding
1412toolchain construction and use.
1413
1414.. image:: figures/cross-development-toolchains.png
Andrew Geisslerd5838332022-05-27 11:33:10 -05001415 :width: 100%
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001416
1417Most of the work occurs on the Build Host. This is the machine used to
Patrick Williams975a06f2022-10-21 14:42:47 -05001418build images and generally work within the Yocto Project
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001419environment. When you run
1420:term:`BitBake` to create an image, the
1421OpenEmbedded build system uses the host ``gcc`` compiler to bootstrap a
1422cross-compiler named ``gcc-cross``. The ``gcc-cross`` compiler is what
1423BitBake uses to compile source files when creating the target image. You
1424can think of ``gcc-cross`` simply as an automatically generated
1425cross-compiler that is used internally within BitBake only.
1426
1427.. note::
1428
Andrew Geissler09036742021-06-25 14:25:14 -05001429 The extensible SDK does not use ``gcc-cross-canadian``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001430 since this SDK ships a copy of the OpenEmbedded build system and the
Andrew Geissler09036742021-06-25 14:25:14 -05001431 sysroot within it contains ``gcc-cross``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001432
Andrew Geisslerc926e172021-05-07 16:11:35 -05001433The chain of events that occurs when the standard toolchain is bootstrapped::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001434
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001435 binutils-cross -> linux-libc-headers -> gcc-cross -> libgcc-initial -> glibc -> libgcc -> gcc-runtime
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001436
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001437- ``gcc``: The compiler, GNU Compiler Collection (GCC).
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001438
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001439- ``binutils-cross``: The binary utilities needed in order
1440 to run the ``gcc-cross`` phase of the bootstrap operation and build the
1441 headers for the C library.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001442
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001443- ``linux-libc-headers``: Headers needed for the cross-compiler and C library build.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001444
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001445- ``libgcc-initial``: An initial version of the gcc support library needed
1446 to bootstrap ``glibc``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001447
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001448- ``libgcc``: The final version of the gcc support library which
1449 can only be built once there is a C library to link against.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001450
1451- ``glibc``: The GNU C Library.
1452
1453- ``gcc-cross``: The final stage of the bootstrap process for the
1454 cross-compiler. This stage results in the actual cross-compiler that
1455 BitBake uses when it builds an image for a targeted device.
1456
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001457 This tool is a "native" tool (i.e. it is designed to run on
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001458 the build host).
1459
1460- ``gcc-runtime``: Runtime libraries resulting from the toolchain
1461 bootstrapping process. This tool produces a binary that consists of
1462 the runtime libraries need for the targeted device.
1463
1464You can use the OpenEmbedded build system to build an installer for the
1465relocatable SDK used to develop applications. When you run the
1466installer, it installs the toolchain, which contains the development
1467tools (e.g., ``gcc-cross-canadian``, ``binutils-cross-canadian``, and
1468other ``nativesdk-*`` tools), which are tools native to the SDK (i.e.
Patrick Williams2390b1b2022-11-03 13:47:49 -05001469native to :term:`SDK_ARCH`), you need to cross-compile and test your
1470software. The figure shows the commands you use to easily build out
1471this toolchain. This cross-development toolchain is built to execute on the
1472:term:`SDKMACHINE`, which might or might not be the same machine as
1473the Build Host.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001474
1475.. note::
1476
1477 If your target architecture is supported by the Yocto Project, you
1478 can take advantage of pre-built images that ship with the Yocto
1479 Project and already contain cross-development toolchain installers.
1480
Andrew Geisslerc926e172021-05-07 16:11:35 -05001481Here is the bootstrap process for the relocatable toolchain::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001482
1483 gcc -> binutils-crosssdk -> gcc-crosssdk-initial -> linux-libc-headers -> glibc-initial -> nativesdk-glibc -> gcc-crosssdk -> gcc-cross-canadian
1484
1485- ``gcc``: The build host's GNU Compiler Collection (GCC).
1486
1487- ``binutils-crosssdk``: The bare minimum binary utilities needed in
1488 order to run the ``gcc-crosssdk-initial`` phase of the bootstrap
1489 operation.
1490
1491- ``gcc-crosssdk-initial``: An early stage of the bootstrap process for
1492 creating the cross-compiler. This stage builds enough of the
1493 ``gcc-crosssdk`` and supporting pieces so that the final stage of the
1494 bootstrap process can produce the finished cross-compiler. This tool
1495 is a "native" binary that runs on the build host.
1496
1497- ``linux-libc-headers``: Headers needed for the cross-compiler.
1498
1499- ``glibc-initial``: An initial version of the Embedded GLIBC needed to
1500 bootstrap ``nativesdk-glibc``.
1501
1502- ``nativesdk-glibc``: The Embedded GLIBC needed to bootstrap the
1503 ``gcc-crosssdk``.
1504
1505- ``gcc-crosssdk``: The final stage of the bootstrap process for the
1506 relocatable cross-compiler. The ``gcc-crosssdk`` is a transitory
1507 compiler and never leaves the build host. Its purpose is to help in
1508 the bootstrap process to create the eventual ``gcc-cross-canadian``
1509 compiler, which is relocatable. This tool is also a "native" package
1510 (i.e. it is designed to run on the build host).
1511
1512- ``gcc-cross-canadian``: The final relocatable cross-compiler. When
1513 run on the :term:`SDKMACHINE`,
1514 this tool produces executable code that runs on the target device.
1515 Only one cross-canadian compiler is produced per architecture since
1516 they can be targeted at different processor optimizations using
1517 configurations passed to the compiler through the compile commands.
1518 This circumvents the need for multiple compilers and thus reduces the
1519 size of the toolchains.
1520
1521.. note::
1522
1523 For information on advantages gained when building a
1524 cross-development toolchain installer, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001525 ":ref:`sdk-manual/appendix-obtain:building an sdk installer`" appendix
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001526 in the Yocto Project Application Development and the
1527 Extensible Software Development Kit (eSDK) manual.
1528
1529Shared State Cache
1530==================
1531
1532By design, the OpenEmbedded build system builds everything from scratch
1533unless :term:`BitBake` can determine
1534that parts do not need to be rebuilt. Fundamentally, building from
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001535scratch is attractive as it means all parts are built fresh and there is
1536no possibility of stale data that can cause problems. When
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001537developers hit problems, they typically default back to building from
Andrew Geissler595f6302022-01-24 19:11:47 +00001538scratch so they have a known state from the start.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001539
1540Building an image from scratch is both an advantage and a disadvantage
1541to the process. As mentioned in the previous paragraph, building from
1542scratch ensures that everything is current and starts from a known
1543state. However, building from scratch also takes much longer as it
1544generally means rebuilding things that do not necessarily need to be
1545rebuilt.
1546
1547The Yocto Project implements shared state code that supports incremental
1548builds. The implementation of the shared state code answers the
1549following questions that were fundamental roadblocks within the
1550OpenEmbedded incremental build support system:
1551
1552- What pieces of the system have changed and what pieces have not
1553 changed?
1554
1555- How are changed pieces of software removed and replaced?
1556
1557- How are pre-built components that do not need to be rebuilt from
1558 scratch used when they are available?
1559
1560For the first question, the build system detects changes in the "inputs"
1561to a given task by creating a checksum (or signature) of the task's
1562inputs. If the checksum changes, the system assumes the inputs have
1563changed and the task needs to be rerun. For the second question, the
1564shared state (sstate) code tracks which tasks add which output to the
1565build process. This means the output from a given task can be removed,
1566upgraded or otherwise manipulated. The third question is partly
1567addressed by the solution for the second question assuming the build
1568system can fetch the sstate objects from remote locations and install
1569them if they are deemed to be valid.
1570
1571.. note::
1572
1573 - The build system does not maintain
1574 :term:`PR` information as part of
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001575 the shared state packages. Consequently, there are considerations that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001576 affect maintaining shared state feeds. For information on how the
Andrew Geissler09036742021-06-25 14:25:14 -05001577 build system works with packages and can track incrementing :term:`PR`
Andrew Geissler517393d2023-01-13 08:55:19 -06001578 information, see the ":ref:`dev-manual/packages:automatically incrementing a package version number`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001579 section in the Yocto Project Development Tasks Manual.
1580
1581 - The code in the build system that supports incremental builds is
Andrew Geisslereff27472021-10-29 15:35:00 -05001582 complex. For techniques that help you work around issues
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001583 related to shared state code, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001584 ":ref:`dev-manual/debugging:viewing metadata used to create the input signature of a shared state task`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001585 and
Andrew Geissler517393d2023-01-13 08:55:19 -06001586 ":ref:`dev-manual/debugging:invalidating shared state to force a task to run`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001587 sections both in the Yocto Project Development Tasks Manual.
1588
1589The rest of this section goes into detail about the overall incremental
1590build architecture, the checksums (signatures), and shared state.
1591
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001592Overall Architecture
1593--------------------
1594
1595When determining what parts of the system need to be built, BitBake
1596works on a per-task basis rather than a per-recipe basis. You might
1597wonder why using a per-task basis is preferred over a per-recipe basis.
1598To help explain, consider having the IPK packaging backend enabled and
1599then switching to DEB. In this case, the
1600:ref:`ref-tasks-install` and
1601:ref:`ref-tasks-package` task outputs
1602are still valid. However, with a per-recipe approach, the build would
1603not include the ``.deb`` files. Consequently, you would have to
1604invalidate the whole build and rerun it. Rerunning everything is not the
1605best solution. Also, in this case, the core must be "taught" much about
1606specific tasks. This methodology does not scale well and does not allow
1607users to easily add new tasks in layers or as external recipes without
1608touching the packaged-staging core.
1609
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001610Checksums (Signatures)
1611----------------------
1612
1613The shared state code uses a checksum, which is a unique signature of a
1614task's inputs, to determine if a task needs to be run again. Because it
1615is a change in a task's inputs that triggers a rerun, the process needs
1616to detect all the inputs to a given task. For shell tasks, this turns
1617out to be fairly easy because the build process generates a "run" shell
1618script for each task and it is possible to create a checksum that gives
1619you a good idea of when the task's data changes.
1620
1621To complicate the problem, there are things that should not be included
1622in the checksum. First, there is the actual specific build path of a
Andrew Geissler615f2f12022-07-15 14:00:58 -05001623given task --- the :term:`WORKDIR`. It
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001624does not matter if the work directory changes because it should not
1625affect the output for target packages. Also, the build process has the
1626objective of making native or cross packages relocatable.
1627
1628.. note::
1629
1630 Both native and cross packages run on the
1631 build host. However, cross packages generate output for the target
1632 architecture.
1633
Andrew Geissler09036742021-06-25 14:25:14 -05001634The checksum therefore needs to exclude :term:`WORKDIR`. The simplistic
1635approach for excluding the work directory is to set :term:`WORKDIR` to some
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001636fixed value and create the checksum for the "run" script.
1637
1638Another problem results from the "run" scripts containing functions that
1639might or might not get called. The incremental build solution contains
1640code that figures out dependencies between shell functions. This code is
1641used to prune the "run" scripts down to the minimum set, thereby
1642alleviating this problem and making the "run" scripts much more readable
1643as a bonus.
1644
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001645So far, there are solutions for shell scripts. What about Python tasks? The
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001646same approach applies even though these tasks are more difficult. The
1647process needs to figure out what variables a Python function accesses
1648and what functions it calls. Again, the incremental build solution
1649contains code that first figures out the variable and function
1650dependencies, and then creates a checksum for the data used as the input
1651to the task.
1652
Andrew Geissler09036742021-06-25 14:25:14 -05001653Like the :term:`WORKDIR` case, there can be situations where dependencies should be
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001654ignored. For these situations, you can instruct the build process to
Andrew Geisslerc926e172021-05-07 16:11:35 -05001655ignore a dependency by using a line like the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001656
1657 PACKAGE_ARCHS[vardepsexclude] = "MACHINE"
1658
1659This example ensures that the :term:`PACKAGE_ARCHS` variable
1660does not depend on the value of :term:`MACHINE`, even if it does
1661reference it.
1662
1663Equally, there are cases where you need to add dependencies BitBake is
1664not able to find. You can accomplish this by using a line like the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001665following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001666
1667 PACKAGE_ARCHS[vardeps] = "MACHINE"
1668
1669This example explicitly
Andrew Geissler09036742021-06-25 14:25:14 -05001670adds the :term:`MACHINE` variable as a dependency for :term:`PACKAGE_ARCHS`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001671
1672As an example, consider a case with in-line Python where BitBake is not
1673able to figure out dependencies. When running in debug mode (i.e. using
1674``-DDD``), BitBake produces output when it discovers something for which
1675it cannot figure out dependencies. The Yocto Project team has currently
1676not managed to cover those dependencies in detail and is aware of the
1677need to fix this situation.
1678
1679Thus far, this section has limited discussion to the direct inputs into
1680a task. Information based on direct inputs is referred to as the
1681"basehash" in the code. However, the question of a task's indirect
Andrew Geissler615f2f12022-07-15 14:00:58 -05001682inputs still exits --- items already built and present in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001683:term:`Build Directory`. The checksum (or
1684signature) for a particular task needs to add the hashes of all the
1685tasks on which the particular task depends. Choosing which dependencies
Andrew Geissler595f6302022-01-24 19:11:47 +00001686to add is a policy decision. However, the effect is to generate a
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001687checksum that combines the basehash and the hashes of the task's
1688dependencies.
1689
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001690At the code level, there are multiple ways by which both the basehash
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001691and the dependent task hashes can be influenced. Within the BitBake
1692configuration file, you can give BitBake some extra information to help
1693it construct the basehash. The following statement effectively results
1694in a list of global variable dependency excludes (i.e. variables never
Andrew Geisslerc926e172021-05-07 16:11:35 -05001695included in any checksum)::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001696
Andrew Geissler9aee5002022-03-30 16:27:02 +00001697 BB_BASEHASH_IGNORE_VARS ?= "TMPDIR FILE PATH PWD BB_TASKHASH BBPATH DL_DIR \\
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001698 SSTATE_DIR THISDIR FILESEXTRAPATHS FILE_DIRNAME HOME LOGNAME SHELL TERM \\
1699 USER FILESPATH STAGING_DIR_HOST STAGING_DIR_TARGET COREBASE PRSERV_HOST \\
1700 PRSERV_DUMPDIR PRSERV_DUMPFILE PRSERV_LOCKDOWN PARALLEL_MAKE \\
1701 CCACHE_DIR EXTERNAL_TOOLCHAIN CCACHE CCACHE_DISABLE LICENSE_PATH SDKPKGSUFFIX"
1702
Andrew Geissler595f6302022-01-24 19:11:47 +00001703The previous example does not include :term:`WORKDIR` since that variable is
1704actually constructed as a path within :term:`TMPDIR`, which is included above.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001705
1706The rules for deciding which hashes of dependent tasks to include
1707through dependency chains are more complex and are generally
1708accomplished with a Python function. The code in
1709``meta/lib/oe/sstatesig.py`` shows two examples of this and also
1710illustrates how you can insert your own policy into the system if so
1711desired. This file defines the two basic signature generators
1712:term:`OpenEmbedded-Core (OE-Core)` uses: "OEBasic" and
1713"OEBasicHash". By default, a dummy "noop" signature handler is enabled
1714in BitBake. This means that behavior is unchanged from previous
1715versions. OE-Core uses the "OEBasicHash" signature handler by default
Andrew Geisslerc926e172021-05-07 16:11:35 -05001716through this setting in the ``bitbake.conf`` file::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001717
1718 BB_SIGNATURE_HANDLER ?= "OEBasicHash"
1719
Andrew Geissler09036742021-06-25 14:25:14 -05001720The "OEBasicHash" :term:`BB_SIGNATURE_HANDLER` is the same
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001721as the "OEBasic" version but adds the task hash to the :ref:`stamp
1722files <overview-manual/concepts:stamp files and the rerunning of tasks>`. This
1723results in any metadata change that changes the task hash, automatically causing
1724the task to be run again. This removes the need to bump
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001725:term:`PR` values, and changes to metadata
1726automatically ripple across the build.
1727
1728It is also worth noting that the end result of these signature
1729generators is to make some dependency and hash information available to
1730the build. This information includes:
1731
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001732- ``BB_BASEHASH:task-``\ taskname: The base hashes for each task in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001733 recipe.
1734
1735- ``BB_BASEHASH_``\ filename\ ``:``\ taskname: The base hashes for each
1736 dependent task.
1737
Andrew Geissler09036742021-06-25 14:25:14 -05001738- :term:`BB_TASKHASH`: The hash of the currently running task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001739
1740Shared State
1741------------
1742
1743Checksums and dependencies, as discussed in the previous section, solve
1744half the problem of supporting a shared state. The other half of the
1745problem is being able to use checksum information during the build and
1746being able to reuse or rebuild specific components.
1747
Andrew Geissler517393d2023-01-13 08:55:19 -06001748The :ref:`ref-classes-sstate` class is a relatively generic implementation of
1749how to "capture" a snapshot of a given task. The idea is that the build process
1750does not care about the source of a task's output. Output could be freshly
1751built or it could be downloaded and unpacked from somewhere. In other words,
1752the build process does not need to worry about its origin.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001753
1754Two types of output exist. One type is just about creating a directory
1755in :term:`WORKDIR`. A good example is
1756the output of either
1757:ref:`ref-tasks-install` or
1758:ref:`ref-tasks-package`. The other
1759type of output occurs when a set of data is merged into a shared
1760directory tree such as the sysroot.
1761
1762The Yocto Project team has tried to keep the details of the
Andrew Geissler517393d2023-01-13 08:55:19 -06001763implementation hidden in the :ref:`ref-classes-sstate` class. From a user's perspective,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001764adding shared state wrapping to a task is as simple as this
Andrew Geissler517393d2023-01-13 08:55:19 -06001765:ref:`ref-tasks-deploy` example taken from the :ref:`ref-classes-deploy` class::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001766
1767 DEPLOYDIR = "${WORKDIR}/deploy-${PN}"
1768 SSTATETASKS += "do_deploy"
1769 do_deploy[sstate-inputdirs] = "${DEPLOYDIR}"
1770 do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"
1771
1772 python do_deploy_setscene () {
1773 sstate_setscene(d)
1774 }
1775 addtask do_deploy_setscene
1776 do_deploy[dirs] = "${DEPLOYDIR} ${B}"
1777 do_deploy[stamp-extra-info] = "${MACHINE_ARCH}"
1778
1779The following list explains the previous example:
1780
Andrew Geissler517393d2023-01-13 08:55:19 -06001781- Adding ``do_deploy`` to ``SSTATETASKS`` adds some required sstate-related
1782 processing, which is implemented in the :ref:`ref-classes-sstate` class, to
1783 before and after the :ref:`ref-tasks-deploy` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001784
1785- The ``do_deploy[sstate-inputdirs] = "${DEPLOYDIR}"`` declares that
Patrick Williams2194f502022-10-16 14:26:09 -05001786 :ref:`ref-tasks-deploy` places its output in ``${DEPLOYDIR}`` when run normally
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001787 (i.e. when not using the sstate cache). This output becomes the input
1788 to the shared state cache.
1789
1790- The ``do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"`` line
1791 causes the contents of the shared state cache to be copied to
1792 ``${DEPLOY_DIR_IMAGE}``.
1793
1794 .. note::
1795
Patrick Williams2194f502022-10-16 14:26:09 -05001796 If :ref:`ref-tasks-deploy` is not already in the shared state cache or if its input
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001797 checksum (signature) has changed from when the output was cached, the task
1798 runs to populate the shared state cache, after which the contents of the
1799 shared state cache is copied to ${:term:`DEPLOY_DIR_IMAGE`}. If
Patrick Williams2194f502022-10-16 14:26:09 -05001800 :ref:`ref-tasks-deploy` is in the shared state cache and its signature indicates
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001801 that the cached output is still valid (i.e. if no relevant task inputs
1802 have changed), then the contents of the shared state cache copies
Andrew Geissler09036742021-06-25 14:25:14 -05001803 directly to ${:term:`DEPLOY_DIR_IMAGE`} by the ``do_deploy_setscene`` task
Patrick Williams2194f502022-10-16 14:26:09 -05001804 instead, skipping the :ref:`ref-tasks-deploy` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001805
1806- The following task definition is glue logic needed to make the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001807 previous settings effective::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001808
1809 python do_deploy_setscene () {
1810 sstate_setscene(d)
1811 }
1812 addtask do_deploy_setscene
1813
Patrick Williams2194f502022-10-16 14:26:09 -05001814 ``sstate_setscene()`` takes the flags above as input and accelerates the :ref:`ref-tasks-deploy` task
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001815 through the shared state cache if possible. If the task was
1816 accelerated, ``sstate_setscene()`` returns True. Otherwise, it
Patrick Williams2194f502022-10-16 14:26:09 -05001817 returns False, and the normal :ref:`ref-tasks-deploy` task runs. For more
Patrick Williams213cb262021-08-07 19:21:33 -05001818 information, see the ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-execution:setscene`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001819 section in the BitBake User Manual.
1820
1821- The ``do_deploy[dirs] = "${DEPLOYDIR} ${B}"`` line creates
Patrick Williams2194f502022-10-16 14:26:09 -05001822 ``${DEPLOYDIR}`` and ``${B}`` before the :ref:`ref-tasks-deploy` task runs, and
1823 also sets the current working directory of :ref:`ref-tasks-deploy` to ``${B}``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001824 For more information, see the ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata:variable flags`"
1825 section in the BitBake
1826 User Manual.
1827
1828 .. note::
1829
1830 In cases where ``sstate-inputdirs`` and ``sstate-outputdirs`` would be
1831 the same, you can use ``sstate-plaindirs``. For example, to preserve the
Patrick Williams2194f502022-10-16 14:26:09 -05001832 ${:term:`PKGD`} and ${:term:`PKGDEST`} output from the :ref:`ref-tasks-package`
Andrew Geisslerc926e172021-05-07 16:11:35 -05001833 task, use the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001834
1835 do_package[sstate-plaindirs] = "${PKGD} ${PKGDEST}"
1836
1837
1838- The ``do_deploy[stamp-extra-info] = "${MACHINE_ARCH}"`` line appends
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05001839 extra metadata to the :ref:`stamp
1840 file <overview-manual/concepts:stamp files and the rerunning of tasks>`. In
1841 this case, the metadata makes the task specific to a machine's architecture.
1842 See
Andrew Geissler09209ee2020-12-13 08:44:15 -06001843 ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-execution:the task list`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001844 section in the BitBake User Manual for more information on the
1845 ``stamp-extra-info`` flag.
1846
1847- ``sstate-inputdirs`` and ``sstate-outputdirs`` can also be used with
1848 multiple directories. For example, the following declares
Andrew Geissler09036742021-06-25 14:25:14 -05001849 :term:`PKGDESTWORK` and ``SHLIBWORK`` as shared state input directories,
1850 which populates the shared state cache, and :term:`PKGDATA_DIR` and
Andrew Geisslerc926e172021-05-07 16:11:35 -05001851 ``SHLIBSDIR`` as the corresponding shared state output directories::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001852
1853 do_package[sstate-inputdirs] = "${PKGDESTWORK} ${SHLIBSWORKDIR}"
1854 do_package[sstate-outputdirs] = "${PKGDATA_DIR} ${SHLIBSDIR}"
1855
1856- These methods also include the ability to take a lockfile when
1857 manipulating shared state directory structures, for cases where file
Andrew Geisslerc926e172021-05-07 16:11:35 -05001858 additions or removals are sensitive::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001859
1860 do_package[sstate-lockfile] = "${PACKAGELOCK}"
1861
1862Behind the scenes, the shared state code works by looking in
1863:term:`SSTATE_DIR` and
1864:term:`SSTATE_MIRRORS` for
Andrew Geisslerc926e172021-05-07 16:11:35 -05001865shared state files. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001866
1867 SSTATE_MIRRORS ?= "\
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001868 file://.* https://someserver.tld/share/sstate/PATH;downloadfilename=PATH \
Patrick Williams93c203f2021-10-06 16:15:23 -05001869 file://.* file:///some/local/dir/sstate/PATH"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001870
1871.. note::
1872
Andrew Geissler5f350902021-07-23 13:09:54 -04001873 The shared state directory (:term:`SSTATE_DIR`) is organized into two-character
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001874 subdirectories, where the subdirectory names are based on the first two
1875 characters of the hash.
1876 If the shared state directory structure for a mirror has the same structure
Andrew Geissler09036742021-06-25 14:25:14 -05001877 as :term:`SSTATE_DIR`, you must specify "PATH" as part of the URI to enable the build
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001878 system to map to the appropriate subdirectory.
1879
1880The shared state package validity can be detected just by looking at the
1881filename since the filename contains the task checksum (or signature) as
1882described earlier in this section. If a valid shared state package is
1883found, the build process downloads it and uses it to accelerate the
1884task.
1885
1886The build processes use the ``*_setscene`` tasks for the task
1887acceleration phase. BitBake goes through this phase before the main
1888execution code and tries to accelerate any tasks for which it can find
1889shared state packages. If a shared state package for a task is
1890available, the shared state package is used. This means the task and any
1891tasks on which it is dependent are not executed.
1892
1893As a real world example, the aim is when building an IPK-based image,
1894only the
1895:ref:`ref-tasks-package_write_ipk`
1896tasks would have their shared state packages fetched and extracted.
1897Since the sysroot is not used, it would never get extracted. This is
1898another reason why a task-based approach is preferred over a
1899recipe-based approach, which would have to install the output from every
1900task.
1901
Andrew Geissler595f6302022-01-24 19:11:47 +00001902Hash Equivalence
1903----------------
1904
1905The above section explained how BitBake skips the execution of tasks
1906whose output can already be found in the Shared State cache.
1907
1908During a build, it may often be the case that the output / result of a task might
1909be unchanged despite changes in the task's input values. An example might be
1910whitespace changes in some input C code. In project terms, this is what we define
1911as "equivalence".
1912
1913To keep track of such equivalence, BitBake has to manage three hashes
1914for each task:
1915
1916- The *task hash* explained earlier: computed from the recipe metadata,
1917 the task code and the task hash values from its dependencies.
1918 When changes are made, these task hashes are therefore modified,
1919 causing the task to re-execute. The task hashes of tasks depending on this
1920 task are therefore modified too, causing the whole dependency
1921 chain to re-execute.
1922
1923- The *output hash*, a new hash computed from the output of Shared State tasks,
1924 tasks that save their resulting output to a Shared State tarball.
1925 The mapping between the task hash and its output hash is reported
1926 to a new *Hash Equivalence* server. This mapping is stored in a database
1927 by the server for future reference.
1928
1929- The *unihash*, a new hash, initially set to the task hash for the task.
1930 This is used to track the *unicity* of task output, and we will explain
1931 how its value is maintained.
1932
1933When Hash Equivalence is enabled, BitBake computes the task hash
1934for each task by using the unihash of its dependencies, instead
1935of their task hash.
1936
1937Now, imagine that a Shared State task is modified because of a change in
1938its code or metadata, or because of a change in its dependencies.
1939Since this modifies its task hash, this task will need re-executing.
1940Its output hash will therefore be computed again.
1941
1942Then, the new mapping between the new task hash and its output hash
1943will be reported to the Hash Equivalence server. The server will
1944let BitBake know whether this output hash is the same as a previously
1945reported output hash, for a different task hash.
1946
1947If the output hash is already known, BitBake will update the task's
1948unihash to match the original task hash that generated that output.
1949Thanks to this, the depending tasks will keep a previously recorded
1950task hash, and BitBake will be able to retrieve their output from
1951the Shared State cache, instead of re-executing them. Similarly, the
1952output of further downstream tasks can also be retrieved from Shared
1953Shate.
1954
1955If the output hash is unknown, a new entry will be created on the Hash
1956Equivalence server, matching the task hash to that output.
1957The depending tasks, still having a new task hash because of the
1958change, will need to re-execute as expected. The change propagates
1959to the depending tasks.
1960
1961To summarize, when Hash Equivalence is enabled, a change in one of the
1962tasks in BitBake's run queue doesn't have to propagate to all the
1963downstream tasks that depend on the output of this task, causing a
1964full rebuild of such tasks, and so on with the next depending tasks.
1965Instead, when the output of this task remains identical to previously
1966recorded output, BitBake can safely retrieve all the downstream
1967task output from the Shared State cache.
1968
1969.. note::
1970
1971 Having :doc:`/test-manual/reproducible-builds` is a key ingredient for
1972 the stability of the task's output hash. Therefore, the effectiveness
1973 of Hash Equivalence strongly depends on it.
1974
1975This applies to multiple scenarios:
1976
1977- A "trivial" change to a recipe that doesn't impact its generated output,
1978 such as whitespace changes, modifications to unused code paths or
1979 in the ordering of variables.
1980
1981- Shared library updates, for example to fix a security vulnerability.
1982 For sure, the programs using such a library should be rebuilt, but
1983 their new binaries should remain identical. The corresponding tasks should
1984 have a different output hash because of the change in the hash of their
1985 library dependency, but thanks to their output being identical, Hash
1986 Equivalence will stop the propagation down the dependency chain.
1987
1988- Native tool updates. Though the depending tasks should be rebuilt,
1989 it's likely that they will generate the same output and be marked
1990 as equivalent.
1991
1992This mechanism is enabled by default in Poky, and is controlled by three
1993variables:
1994
1995- :term:`bitbake:BB_HASHSERVE`, specifying a local or remote Hash
1996 Equivalence server to use.
1997
1998- :term:`BB_HASHSERVE_UPSTREAM`, when ``BB_HASHSERVE = "auto"``,
1999 allowing to connect the local server to an upstream one.
2000
2001- :term:`bitbake:BB_SIGNATURE_HANDLER`, which must be set to ``OEEquivHash``.
2002
2003Therefore, the default configuration in Poky corresponds to the
2004below settings::
2005
2006 BB_HASHSERVE = "auto"
2007 BB_SIGNATURE_HANDLER = "OEEquivHash"
2008
2009Rather than starting a local server, another possibility is to rely
2010on a Hash Equivalence server on a network, by setting::
2011
2012 BB_HASHSERVE = "<HOSTNAME>:<PORT>"
2013
2014.. note::
2015
2016 The shared Hash Equivalence server needs to be maintained together with the
2017 Shared State cache. Otherwise, the server could report Shared State hashes
2018 that only exist on specific clients.
2019
2020 We therefore recommend that one Hash Equivalence server be set up to
2021 correspond with a given Shared State cache, and to start this server
2022 in *read-only mode*, so that it doesn't store equivalences for
2023 Shared State caches that are local to clients.
2024
2025 See the :term:`BB_HASHSERVE` reference for details about starting
2026 a Hash Equivalence server.
2027
2028See the `video <https://www.youtube.com/watch?v=zXEdqGS62Wc>`__
2029of Joshua Watt's `Hash Equivalence and Reproducible Builds
2030<https://elinux.org/images/3/37/Hash_Equivalence_and_Reproducible_Builds.pdf>`__
2031presentation at ELC 2020 for a very synthetic introduction to the
2032Hash Equivalence implementation in the Yocto Project.
2033
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002034Automatically Added Runtime Dependencies
2035========================================
2036
2037The OpenEmbedded build system automatically adds common types of runtime
2038dependencies between packages, which means that you do not need to
2039explicitly declare the packages using
William A. Kennington IIIac69b482021-06-02 12:28:27 -07002040:term:`RDEPENDS`. There are three automatic
2041mechanisms (``shlibdeps``, ``pcdeps``, and ``depchains``) that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002042handle shared libraries, package configuration (pkg-config) modules, and
2043``-dev`` and ``-dbg`` packages, respectively. For other types of runtime
2044dependencies, you must manually declare the dependencies.
2045
2046- ``shlibdeps``: During the
2047 :ref:`ref-tasks-package` task of
2048 each recipe, all shared libraries installed by the recipe are
2049 located. For each shared library, the package that contains the
2050 shared library is registered as providing the shared library. More
2051 specifically, the package is registered as providing the
Patrick Williams7784c422022-11-17 07:29:11 -06002052 :wikipedia:`soname <Soname>` of the library. The
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002053 resulting shared-library-to-package mapping is saved globally in
2054 :term:`PKGDATA_DIR` by the
2055 :ref:`ref-tasks-packagedata`
2056 task.
2057
2058 Simultaneously, all executables and shared libraries installed by the
2059 recipe are inspected to see what shared libraries they link against.
Andrew Geissler09036742021-06-25 14:25:14 -05002060 For each shared library dependency that is found, :term:`PKGDATA_DIR` is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002061 queried to see if some package (likely from a different recipe)
2062 contains the shared library. If such a package is found, a runtime
2063 dependency is added from the package that depends on the shared
2064 library to the package that contains the library.
2065
2066 The automatically added runtime dependency also includes a version
2067 restriction. This version restriction specifies that at least the
2068 current version of the package that provides the shared library must
Andrew Geissler09036742021-06-25 14:25:14 -05002069 be used, as if "package (>= version)" had been added to :term:`RDEPENDS`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002070 This forces an upgrade of the package containing the shared library
2071 when installing the package that depends on the library, if needed.
2072
2073 If you want to avoid a package being registered as providing a
2074 particular shared library (e.g. because the library is for internal
2075 use only), then add the library to
2076 :term:`PRIVATE_LIBS` inside
2077 the package's recipe.
2078
Patrick Williams2194f502022-10-16 14:26:09 -05002079- ``pcdeps``: During the :ref:`ref-tasks-package` task of each recipe, all
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002080 pkg-config modules (``*.pc`` files) installed by the recipe are
2081 located. For each module, the package that contains the module is
2082 registered as providing the module. The resulting module-to-package
Andrew Geissler09036742021-06-25 14:25:14 -05002083 mapping is saved globally in :term:`PKGDATA_DIR` by the
Patrick Williams2194f502022-10-16 14:26:09 -05002084 :ref:`ref-tasks-packagedata` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002085
2086 Simultaneously, all pkg-config modules installed by the recipe are
2087 inspected to see what other pkg-config modules they depend on. A
2088 module is seen as depending on another module if it contains a
2089 "Requires:" line that specifies the other module. For each module
Andrew Geissler09036742021-06-25 14:25:14 -05002090 dependency, :term:`PKGDATA_DIR` is queried to see if some package
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002091 contains the module. If such a package is found, a runtime dependency
2092 is added from the package that depends on the module to the package
2093 that contains the module.
2094
2095 .. note::
2096
2097 The
2098 pcdeps
2099 mechanism most often infers dependencies between
2100 -dev
2101 packages.
2102
2103- ``depchains``: If a package ``foo`` depends on a package ``bar``,
2104 then ``foo-dev`` and ``foo-dbg`` are also made to depend on
2105 ``bar-dev`` and ``bar-dbg``, respectively. Taking the ``-dev``
2106 packages as an example, the ``bar-dev`` package might provide headers
2107 and shared library symlinks needed by ``foo-dev``, which shows the
2108 need for a dependency between the packages.
2109
2110 The dependencies added by ``depchains`` are in the form of
2111 :term:`RRECOMMENDS`.
2112
2113 .. note::
2114
Andrew Geissler5f350902021-07-23 13:09:54 -04002115 By default, ``foo-dev`` also has an :term:`RDEPENDS`-style dependency on
Patrick Williams0ca19cc2021-08-16 14:03:13 -05002116 ``foo``, because the default value of ``RDEPENDS:${PN}-dev`` (set in
Andrew Geisslerd5838332022-05-27 11:33:10 -05002117 ``bitbake.conf``) includes "${PN}".
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002118
2119 To ensure that the dependency chain is never broken, ``-dev`` and
2120 ``-dbg`` packages are always generated by default, even if the
2121 packages turn out to be empty. See the
2122 :term:`ALLOW_EMPTY` variable
2123 for more information.
2124
Patrick Williams2194f502022-10-16 14:26:09 -05002125The :ref:`ref-tasks-package` task depends on the :ref:`ref-tasks-packagedata` task of each
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002126recipe in :term:`DEPENDS` through use
2127of a ``[``\ :ref:`deptask <bitbake:bitbake-user-manual/bitbake-user-manual-metadata:variable flags>`\ ``]``
2128declaration, which guarantees that the required
2129shared-library/module-to-package mapping information will be available
Andrew Geissler09036742021-06-25 14:25:14 -05002130when needed as long as :term:`DEPENDS` has been correctly set.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002131
2132Fakeroot and Pseudo
2133===================
2134
2135Some tasks are easier to implement when allowed to perform certain
2136operations that are normally reserved for the root user (e.g.
2137:ref:`ref-tasks-install`,
2138:ref:`do_package_write* <ref-tasks-package_write_deb>`,
2139:ref:`ref-tasks-rootfs`, and
Patrick Williams2194f502022-10-16 14:26:09 -05002140:ref:`do_image_* <ref-tasks-image>`). For example,
2141the :ref:`ref-tasks-install` task benefits from being able to set the UID and GID
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002142of installed files to arbitrary values.
2143
2144One approach to allowing tasks to perform root-only operations would be
2145to require :term:`BitBake` to run as
2146root. However, this method is cumbersome and has security issues. The
2147approach that is actually used is to run tasks that benefit from root
2148privileges in a "fake" root environment. Within this environment, the
2149task and its child processes believe that they are running as the root
2150user, and see an internally consistent view of the filesystem. As long
2151as generating the final output (e.g. a package or an image) does not
2152require root privileges, the fact that some earlier steps ran in a fake
2153root environment does not cause problems.
2154
2155The capability to run tasks in a fake root environment is known as
2156"`fakeroot <http://man.he.net/man1/fakeroot>`__", which is derived from
2157the BitBake keyword/variable flag that requests a fake root environment
2158for a task.
2159
Andrew Geisslerd1e89492021-02-12 15:35:20 -06002160In the :term:`OpenEmbedded Build System`, the program that implements
2161fakeroot is known as :yocto_home:`Pseudo </software-item/pseudo/>`. Pseudo
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002162overrides system calls by using the environment variable ``LD_PRELOAD``,
2163which results in the illusion of running as root. To keep track of
2164"fake" file ownership and permissions resulting from operations that
2165require root permissions, Pseudo uses an SQLite 3 database. This
2166database is stored in
2167``${``\ :term:`WORKDIR`\ ``}/pseudo/files.db``
2168for individual recipes. Storing the database in a file as opposed to in
2169memory gives persistence between tasks and builds, which is not
2170accomplished using fakeroot.
2171
2172.. note::
2173
2174 If you add your own task that manipulates the same files or
2175 directories as a fakeroot task, then that task also needs to run
2176 under fakeroot. Otherwise, the task cannot run root-only operations,
2177 and cannot see the fake file ownership and permissions set by the
2178 other task. You need to also add a dependency on
Andrew Geisslerc926e172021-05-07 16:11:35 -05002179 ``virtual/fakeroot-native:do_populate_sysroot``, giving the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002180
2181 fakeroot do_mytask () {
2182 ...
2183 }
2184 do_mytask[depends] += "virtual/fakeroot-native:do_populate_sysroot"
2185
2186
2187For more information, see the
2188:term:`FAKEROOT* <bitbake:FAKEROOT>` variables in the
2189BitBake User Manual. You can also reference the "`Why Not
2190Fakeroot? <https://github.com/wrpseudo/pseudo/wiki/WhyNotFakeroot>`__"
2191article for background information on Fakeroot and Pseudo.