blob: 7ff0fcb3354cefb6805c4e857e66e7d7bb51bc51 [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*******
4Classes
5*******
6
7Class files are used to abstract common functionality and share it
8amongst multiple recipe (``.bb``) files. To use a class file, you simply
9make sure the recipe inherits the class. In most cases, when a recipe
10inherits a class it is enough to enable its features. There are cases,
11however, where in the recipe you might need to set variables or override
12some default behavior.
13
14Any :term:`Metadata` usually found in a recipe can also be
15placed in a class file. Class files are identified by the extension
Patrick Williams975a06f2022-10-21 14:42:47 -050016``.bbclass`` and are usually placed in one of a set of subdirectories
17beneath the ``meta*/`` directory found in the :term:`Source Directory`:
18
19 - ``classes-recipe/`` - classes intended to be inherited by recipes
20 individually
21 - ``classes-global/`` - classes intended to be inherited globally
22 - ``classes/`` - classes whose usage context is not clearly defined
23
Andrew Geisslerc9f78652020-09-18 14:11:35 -050024Class files can also be pointed to by
25:term:`BUILDDIR` (e.g. ``build/``) in the same way as
26``.conf`` files in the ``conf`` directory. Class files are searched for
27in :term:`BBPATH` using the same method by which ``.conf``
28files are searched.
29
30This chapter discusses only the most useful and important classes. Other
Patrick Williams975a06f2022-10-21 14:42:47 -050031classes do exist within the ``meta/classes*`` directories in the Source
Andrew Geisslerc9f78652020-09-18 14:11:35 -050032Directory. You can reference the ``.bbclass`` files directly for more
33information.
34
35.. _ref-classes-allarch:
36
Andrew Geissler517393d2023-01-13 08:55:19 -060037``allarch``
38===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -050039
Andrew Geissler517393d2023-01-13 08:55:19 -060040The :ref:`ref-classes-allarch` class is inherited by recipes that do not produce
Andrew Geisslerc9f78652020-09-18 14:11:35 -050041architecture-specific output. The class disables functionality that is
42normally needed for recipes that produce executable binaries (such as
43building the cross-compiler and a C library as pre-requisites, and
44splitting out of debug symbols during packaging).
45
46.. note::
47
48 Unlike some distro recipes (e.g. Debian), OpenEmbedded recipes that
49 produce packages that depend on tunings through use of the
50 :term:`RDEPENDS` and
51 :term:`TUNE_PKGARCH` variables, should never be
Andrew Geissler517393d2023-01-13 08:55:19 -060052 configured for all architectures using :ref:`ref-classes-allarch`. This is the case
Andrew Geisslerc9f78652020-09-18 14:11:35 -050053 even if the recipes do not produce architecture-specific output.
54
55 Configuring such recipes for all architectures causes the
Patrick Williams2194f502022-10-16 14:26:09 -050056 :ref:`do_package_write_* <ref-tasks-package_write_deb>` tasks to
Andrew Geisslerc9f78652020-09-18 14:11:35 -050057 have different signatures for the machines with different tunings.
58 Additionally, unnecessary rebuilds occur every time an image for a
Andrew Geissler09036742021-06-25 14:25:14 -050059 different :term:`MACHINE` is built even when the recipe never changes.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050060
Andrew Geissler517393d2023-01-13 08:55:19 -060061By default, all recipes inherit the :ref:`ref-classes-base` and
62:ref:`ref-classes-package` classes, which enable
Andrew Geisslerc9f78652020-09-18 14:11:35 -050063functionality needed for recipes that produce executable output. If your
64recipe, for example, only produces packages that contain configuration
65files, media files, or scripts (e.g. Python and Perl), then it should
Andrew Geissler517393d2023-01-13 08:55:19 -060066inherit the :ref:`ref-classes-allarch` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050067
68.. _ref-classes-archiver:
69
Andrew Geissler517393d2023-01-13 08:55:19 -060070``archiver``
71============
Andrew Geisslerc9f78652020-09-18 14:11:35 -050072
Andrew Geissler517393d2023-01-13 08:55:19 -060073The :ref:`ref-classes-archiver` class supports releasing source code and other
Andrew Geisslerc9f78652020-09-18 14:11:35 -050074materials with the binaries.
75
Andrew Geissler517393d2023-01-13 08:55:19 -060076For more details on the source :ref:`ref-classes-archiver`, see the
77":ref:`dev-manual/licenses:maintaining open source license compliance during your product's lifecycle`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050078section in the Yocto Project Development Tasks Manual. You can also see
79the :term:`ARCHIVER_MODE` variable for information
80about the variable flags (varflags) that help control archive creation.
81
82.. _ref-classes-autotools:
83
Andrew Geissler517393d2023-01-13 08:55:19 -060084``autotools*``
85==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -050086
Patrick Williams2390b1b2022-11-03 13:47:49 -050087The :ref:`autotools* <ref-classes-autotools>` classes support packages built with the
Patrick Williams7784c422022-11-17 07:29:11 -060088:wikipedia:`GNU Autotools <GNU_Autotools>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -050089
90The ``autoconf``, ``automake``, and ``libtool`` packages bring
91standardization. This class defines a set of tasks (e.g. ``configure``,
92``compile`` and so forth) that work for all Autotooled packages. It
93should usually be enough to define a few standard variables and then
94simply ``inherit autotools``. These classes can also work with software
95that emulates Autotools. For more information, see the
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060096":ref:`dev-manual/new-recipe:building an autotooled package`" section
Andrew Geisslerc9f78652020-09-18 14:11:35 -050097in the Yocto Project Development Tasks Manual.
98
Patrick Williams2390b1b2022-11-03 13:47:49 -050099By default, the :ref:`autotools* <ref-classes-autotools>` classes use out-of-tree builds (i.e.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500100``autotools.bbclass`` building with ``B != S``).
101
102If the software being built by a recipe does not support using
103out-of-tree builds, you should have the recipe inherit the
Patrick Williams2390b1b2022-11-03 13:47:49 -0500104:ref:`autotools-brokensep <ref-classes-autotools>` class. The :ref:`autotools-brokensep <ref-classes-autotools>` class behaves
Andrew Geissler517393d2023-01-13 08:55:19 -0600105the same as the :ref:`ref-classes-autotools` class but builds with :term:`B`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500106== :term:`S`. This method is useful when out-of-tree build
107support is either not present or is broken.
108
109.. note::
110
111 It is recommended that out-of-tree support be fixed and used if at
112 all possible.
113
114It's useful to have some idea of how the tasks defined by the
Patrick Williams2390b1b2022-11-03 13:47:49 -0500115:ref:`autotools* <ref-classes-autotools>` classes work and what they do behind the scenes.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500116
Andrew Geissler615f2f12022-07-15 14:00:58 -0500117- :ref:`ref-tasks-configure` --- regenerates the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500118 configure script (using ``autoreconf``) and then launches it with a
119 standard set of arguments used during cross-compilation. You can pass
Andrew Geissler09036742021-06-25 14:25:14 -0500120 additional parameters to ``configure`` through the :term:`EXTRA_OECONF`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500121 or :term:`PACKAGECONFIG_CONFARGS`
122 variables.
123
Andrew Geissler615f2f12022-07-15 14:00:58 -0500124- :ref:`ref-tasks-compile` --- runs ``make`` with
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500125 arguments that specify the compiler and linker. You can pass
Andrew Geissler5f350902021-07-23 13:09:54 -0400126 additional arguments through the :term:`EXTRA_OEMAKE` variable.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500127
Andrew Geissler615f2f12022-07-15 14:00:58 -0500128- :ref:`ref-tasks-install` --- runs ``make install`` and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500129 passes in ``${``\ :term:`D`\ ``}`` as ``DESTDIR``.
130
131.. _ref-classes-base:
132
Andrew Geissler517393d2023-01-13 08:55:19 -0600133``base``
134========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500135
Andrew Geissler517393d2023-01-13 08:55:19 -0600136The :ref:`ref-classes-base` class is special in that every ``.bb`` file implicitly
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500137inherits the class. This class contains definitions for standard basic
138tasks such as fetching, unpacking, configuring (empty by default),
139compiling (runs any ``Makefile`` present), installing (empty by default)
140and packaging (empty by default). These classes are often overridden or
Andrew Geissler517393d2023-01-13 08:55:19 -0600141extended by other classes such as the :ref:`ref-classes-autotools` class or the
142:ref:`ref-classes-package` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500143
144The class also contains some commonly used functions such as
145``oe_runmake``, which runs ``make`` with the arguments specified in
146:term:`EXTRA_OEMAKE` variable as well as the
147arguments passed directly to ``oe_runmake``.
148
149.. _ref-classes-bash-completion:
150
Andrew Geissler517393d2023-01-13 08:55:19 -0600151``bash-completion``
152===================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500153
154Sets up packaging and dependencies appropriate for recipes that build
155software that includes bash-completion data.
156
157.. _ref-classes-bin-package:
158
Andrew Geissler517393d2023-01-13 08:55:19 -0600159``bin_package``
160===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500161
Andrew Geissler517393d2023-01-13 08:55:19 -0600162The :ref:`ref-classes-bin-package` class is a helper class for recipes that extract the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500163contents of a binary package (e.g. an RPM) and install those contents
164rather than building the binary from source. The binary package is
165extracted and new packages in the configured output package format are
166created. Extraction and installation of proprietary binaries is a good
167example use for this class.
168
169.. note::
170
171 For RPMs and other packages that do not contain a subdirectory, you
172 should specify an appropriate fetcher parameter to point to the
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500173 subdirectory. For example, if BitBake is using the Git fetcher (``git://``),
174 the "subpath" parameter limits the checkout to a specific subpath
175 of the tree. Here is an example where ``${BP}`` is used so that the files
176 are extracted into the subdirectory expected by the default value of
Andrew Geissler09036742021-06-25 14:25:14 -0500177 :term:`S`::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500178
Andrew Geissler9aee5002022-03-30 16:27:02 +0000179 SRC_URI = "git://example.com/downloads/somepackage.rpm;branch=main;subpath=${BP}"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500180
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500181 See the ":ref:`bitbake-user-manual/bitbake-user-manual-fetching:fetchers`" section in the BitBake User Manual for
182 more information on supported BitBake Fetchers.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500183
184.. _ref-classes-binconfig:
185
Andrew Geissler517393d2023-01-13 08:55:19 -0600186``binconfig``
187=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500188
Andrew Geissler517393d2023-01-13 08:55:19 -0600189The :ref:`ref-classes-binconfig` class helps to correct paths in shell scripts.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500190
191Before ``pkg-config`` had become widespread, libraries shipped shell
192scripts to give information about the libraries and include paths needed
193to build software (usually named ``LIBNAME-config``). This class assists
194any recipe using such scripts.
195
196During staging, the OpenEmbedded build system installs such scripts into
197the ``sysroots/`` directory. Inheriting this class results in all paths
198in these scripts being changed to point into the ``sysroots/`` directory
199so that all builds that use the script use the correct directories for
200the cross compiling layout. See the
201:term:`BINCONFIG_GLOB` variable for more
202information.
203
204.. _ref-classes-binconfig-disabled:
205
Andrew Geissler517393d2023-01-13 08:55:19 -0600206``binconfig-disabled``
207======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500208
Andrew Geissler517393d2023-01-13 08:55:19 -0600209An alternative version of the :ref:`ref-classes-binconfig`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500210class, which disables binary configuration scripts by making them return
211an error in favor of using ``pkg-config`` to query the information. The
Andrew Geissler517393d2023-01-13 08:55:19 -0600212scripts to be disabled should be specified using the :term:`BINCONFIG`
213variable within the recipe inheriting the class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500214
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500215.. _ref-classes-buildhistory:
216
Andrew Geissler517393d2023-01-13 08:55:19 -0600217``buildhistory``
218================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500219
Andrew Geissler517393d2023-01-13 08:55:19 -0600220The :ref:`ref-classes-buildhistory` class records a history of build output metadata,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500221which can be used to detect possible regressions as well as used for
222analysis of the build output. For more information on using Build
223History, see the
Andrew Geissler517393d2023-01-13 08:55:19 -0600224":ref:`dev-manual/build-quality:maintaining build output quality`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500225section in the Yocto Project Development Tasks Manual.
226
227.. _ref-classes-buildstats:
228
Andrew Geissler517393d2023-01-13 08:55:19 -0600229``buildstats``
230==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500231
Andrew Geissler517393d2023-01-13 08:55:19 -0600232The :ref:`ref-classes-buildstats` class records performance statistics about each task
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500233executed during the build (e.g. elapsed time, CPU usage, and I/O usage).
234
235When you use this class, the output goes into the
236:term:`BUILDSTATS_BASE` directory, which defaults
237to ``${TMPDIR}/buildstats/``. You can analyze the elapsed time using
238``scripts/pybootchartgui/pybootchartgui.py``, which produces a cascading
239chart of the entire build process and can be useful for highlighting
240bottlenecks.
241
242Collecting build statistics is enabled by default through the
243:term:`USER_CLASSES` variable from your
244``local.conf`` file. Consequently, you do not have to do anything to
245enable the class. However, if you want to disable the class, simply
Andrew Geissler517393d2023-01-13 08:55:19 -0600246remove ":ref:`ref-classes-buildstats`" from the :term:`USER_CLASSES` list.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500247
248.. _ref-classes-buildstats-summary:
249
Andrew Geissler517393d2023-01-13 08:55:19 -0600250``buildstats-summary``
251======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500252
253When inherited globally, prints statistics at the end of the build on
254sstate re-use. In order to function, this class requires the
Andrew Geissler517393d2023-01-13 08:55:19 -0600255:ref:`ref-classes-buildstats` class be enabled.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500256
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600257.. _ref-classes-cargo:
258
259``cargo``
260=========
261
262The :ref:`ref-classes-cargo` class allows to compile Rust language programs
263using `Cargo <https://doc.rust-lang.org/cargo/>`__. Cargo is Rust's package
264manager, allowing to fetch package dependencies and build your program.
265
266Using this class makes it very easy to build Rust programs. All you need
267is to use the :term:`SRC_URI` variable to point to a source repository
268which can be built by Cargo, typically one that was created by the
269``cargo new`` command, containing a ``Cargo.toml`` file and a ``src``
270subdirectory.
271
272You will find a simple example in the
273:oe_git:`rust-hello-world_git.bb </openembedded-core/tree/meta/recipes-extended/rust-example/rust-hello-world_git.bb>`
274recipe. A more complex example, with package dependencies, is the
275:oe_git:`uutils-coreutils </meta-openembedded/tree/meta-oe/recipes-core/uutils-coreutils>`
276recipe, which was generated by the `cargo-bitbake <https://crates.io/crates/cargo-bitbake>`__
277tool.
278
279This class inherits the :ref:`ref-classes-cargo_common` class.
280
281.. _ref-classes-cargo_common:
282
283``cargo_common``
284================
285
286The :ref:`ref-classes-cargo_common` class is an internal class
287that is not intended to be used directly.
288
289An exception is the "rust" recipe, to build the Rust compiler and runtime
290library, which is built by Cargo but cannot use the :ref:`ref-classes-cargo`
291class. This is why this class was introduced.
292
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500293.. _ref-classes-ccache:
294
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600295.. _ref-classes-cargo-update-recipe-crates:
296
297``cargo-update-recipe-crates``
298===============================
299
300The :ref:`ref-classes-cargo-update-recipe-crates` class allows
301recipe developers to update the list of Cargo crates in :term:`SRC_URI`
302by reading the ``Cargo.lock`` file in the source tree.
303
304To do so, create a recipe for your program, for example using
305:doc:`devtool </ref-manual/devtool-reference>`,
306make it inherit the :ref:`ref-classes-cargo` and
307:ref:`ref-classes-cargo-update-recipe-crates` and run::
308
309 bitbake -c update_crates recipe
310
311This creates a ``recipe-crates.inc`` file that you can include in your
312recipe::
313
314 require ${BPN}-crates.inc
315
316That's also something you can achieve by using the
317`cargo-bitbake <https://crates.io/crates/cargo-bitbake>`__ tool.
318
Andrew Geissler517393d2023-01-13 08:55:19 -0600319``ccache``
320==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500321
Andrew Geissler517393d2023-01-13 08:55:19 -0600322The :ref:`ref-classes-ccache` class enables the C/C++ Compiler Cache for the build.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500323This class is used to give a minor performance boost during the build.
Andrew Geissler7e0e3c02022-02-25 20:34:39 +0000324
325See https://ccache.samba.org/ for information on the C/C++ Compiler
326Cache, and the :oe_git:`ccache.bbclass </openembedded-core/tree/meta/classes/ccache.bbclass>`
327file for details about how to enable this mechanism in your configuration
328file, how to disable it for specific recipes, and how to share ``ccache``
329files between builds.
330
331However, using the class can lead to unexpected side-effects. Thus, using
332this class is not recommended.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500333
334.. _ref-classes-chrpath:
335
Andrew Geissler517393d2023-01-13 08:55:19 -0600336``chrpath``
337===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500338
Andrew Geissler517393d2023-01-13 08:55:19 -0600339The :ref:`ref-classes-chrpath` class is a wrapper around the "chrpath" utility, which
340is used during the build process for :ref:`ref-classes-nativesdk`, :ref:`ref-classes-cross`, and
341:ref:`ref-classes-cross-canadian` recipes to change ``RPATH`` records within binaries
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500342in order to make them relocatable.
343
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500344.. _ref-classes-cmake:
345
Andrew Geissler517393d2023-01-13 08:55:19 -0600346``cmake``
347=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500348
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600349The :ref:`ref-classes-cmake` class allows recipes to build software using the
350`CMake <https://cmake.org/overview/>`__ build system. You can use the
351:term:`EXTRA_OECMAKE` variable to specify additional configuration options to
352pass to the ``cmake`` command line.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500353
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600354By default, the :ref:`ref-classes-cmake` class uses
355`Ninja <https://ninja-build.org/>`__ instead of GNU make for building, which
356offers better build performance. If a recipe is broken with Ninja, then the
357recipe can set the :term:`OECMAKE_GENERATOR` variable to ``Unix Makefiles`` to
358use GNU make instead.
359
360If you need to install custom CMake toolchain files supplied by the application
361being built, you should install them (during :ref:`ref-tasks-install`) to the
362preferred CMake Module directory: ``${D}${datadir}/cmake/modules/``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500363
364.. _ref-classes-cml1:
365
Andrew Geissler517393d2023-01-13 08:55:19 -0600366``cml1``
367========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500368
Andrew Geissler517393d2023-01-13 08:55:19 -0600369The :ref:`ref-classes-cml1` class provides basic support for the Linux kernel style
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500370build configuration system.
371
372.. _ref-classes-compress_doc:
373
Andrew Geissler517393d2023-01-13 08:55:19 -0600374``compress_doc``
375================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500376
377Enables compression for man pages and info pages. This class is intended
378to be inherited globally. The default compression mechanism is gz (gzip)
379but you can select an alternative mechanism by setting the
380:term:`DOC_COMPRESS` variable.
381
382.. _ref-classes-copyleft_compliance:
383
Andrew Geissler517393d2023-01-13 08:55:19 -0600384``copyleft_compliance``
385=======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500386
Andrew Geissler517393d2023-01-13 08:55:19 -0600387The :ref:`ref-classes-copyleft_compliance` class preserves source code for the purposes
388of license compliance. This class is an alternative to the :ref:`ref-classes-archiver`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500389class and is still used by some users even though it has been deprecated
Andrew Geissler517393d2023-01-13 08:55:19 -0600390in favor of the :ref:`ref-classes-archiver` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500391
392.. _ref-classes-copyleft_filter:
393
Andrew Geissler517393d2023-01-13 08:55:19 -0600394``copyleft_filter``
395===================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500396
Andrew Geissler517393d2023-01-13 08:55:19 -0600397A class used by the :ref:`ref-classes-archiver` and
398:ref:`ref-classes-copyleft_compliance` classes
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500399for filtering licenses. The ``copyleft_filter`` class is an internal
400class and is not intended to be used directly.
401
402.. _ref-classes-core-image:
403
Andrew Geissler517393d2023-01-13 08:55:19 -0600404``core-image``
405==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500406
Andrew Geissler517393d2023-01-13 08:55:19 -0600407The :ref:`ref-classes-core-image` class provides common definitions for the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500408``core-image-*`` image recipes, such as support for additional
409:term:`IMAGE_FEATURES`.
410
411.. _ref-classes-cpan:
412
Andrew Geissler517393d2023-01-13 08:55:19 -0600413``cpan*``
414=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500415
Patrick Williams2390b1b2022-11-03 13:47:49 -0500416The :ref:`cpan* <ref-classes-cpan>` classes support Perl modules.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500417
418Recipes for Perl modules are simple. These recipes usually only need to
419point to the source's archive and then inherit the proper class file.
420Building is split into two methods depending on which method the module
421authors used.
422
423- Modules that use old ``Makefile.PL``-based build system require
424 ``cpan.bbclass`` in their recipes.
425
426- Modules that use ``Build.PL``-based build system require using
427 ``cpan_build.bbclass`` in their recipes.
428
Patrick Williams2390b1b2022-11-03 13:47:49 -0500429Both build methods inherit the :ref:`cpan-base <ref-classes-cpan>` class for basic Perl
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500430support.
431
Patrick Williams975a06f2022-10-21 14:42:47 -0500432.. _ref-classes-create-spdx:
433
Andrew Geissler517393d2023-01-13 08:55:19 -0600434``create-spdx``
435===============
Patrick Williams975a06f2022-10-21 14:42:47 -0500436
Andrew Geissler517393d2023-01-13 08:55:19 -0600437The :ref:`ref-classes-create-spdx` class provides support for
Patrick Williams7784c422022-11-17 07:29:11 -0600438automatically creating :term:`SPDX` :term:`SBOM` documents based upon image
439and SDK contents.
440
441This class is meant to be inherited globally from a configuration file::
442
443 INHERIT += "create-spdx"
444
445The toplevel :term:`SPDX` output file is generated in JSON format as a
446``IMAGE-MACHINE.spdx.json`` file in ``tmp/deploy/images/MACHINE/`` inside the
447:term:`Build Directory`. There are other related files in the same directory,
448as well as in ``tmp/deploy/spdx``.
449
450The exact behaviour of this class, and the amount of output can be controlled
451by the :term:`SPDX_PRETTY`, :term:`SPDX_ARCHIVE_PACKAGED`,
452:term:`SPDX_ARCHIVE_SOURCES` and :term:`SPDX_INCLUDE_SOURCES` variables.
453
454See the description of these variables and the
Andrew Geissler517393d2023-01-13 08:55:19 -0600455":ref:`dev-manual/sbom:creating a software bill of materials`"
Patrick Williams7784c422022-11-17 07:29:11 -0600456section in the Yocto Project Development Manual for more details.
Patrick Williams975a06f2022-10-21 14:42:47 -0500457
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500458.. _ref-classes-cross:
459
Andrew Geissler517393d2023-01-13 08:55:19 -0600460``cross``
461=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500462
Andrew Geissler517393d2023-01-13 08:55:19 -0600463The :ref:`ref-classes-cross` class provides support for the recipes that build the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500464cross-compilation tools.
465
466.. _ref-classes-cross-canadian:
467
Andrew Geissler517393d2023-01-13 08:55:19 -0600468``cross-canadian``
469==================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500470
Andrew Geissler517393d2023-01-13 08:55:19 -0600471The :ref:`ref-classes-cross-canadian` class provides support for the recipes that build
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500472the Canadian Cross-compilation tools for SDKs. See the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600473":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500474section in the Yocto Project Overview and Concepts Manual for more
475discussion on these cross-compilation tools.
476
477.. _ref-classes-crosssdk:
478
Andrew Geissler517393d2023-01-13 08:55:19 -0600479``crosssdk``
480============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500481
Andrew Geissler517393d2023-01-13 08:55:19 -0600482The :ref:`ref-classes-crosssdk` class provides support for the recipes that build the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500483cross-compilation tools used for building SDKs. See the
Andrew Geissler09209ee2020-12-13 08:44:15 -0600484":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500485section in the Yocto Project Overview and Concepts Manual for more
486discussion on these cross-compilation tools.
487
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500488.. _ref-classes-cve-check:
489
Andrew Geissler517393d2023-01-13 08:55:19 -0600490``cve-check``
491=============
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500492
Andrew Geissler517393d2023-01-13 08:55:19 -0600493The :ref:`ref-classes-cve-check` class looks for known CVEs (Common Vulnerabilities
Patrick Williams2390b1b2022-11-03 13:47:49 -0500494and Exposures) while building with BitBake. This class is meant to be
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500495inherited globally from a configuration file::
496
497 INHERIT += "cve-check"
498
Patrick Williams2390b1b2022-11-03 13:47:49 -0500499To filter out obsolete CVE database entries which are known not to impact software from Poky and OE-Core,
500add following line to the build configuration file::
501
502 include cve-extra-exclusions.inc
503
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500504You can also look for vulnerabilities in specific packages by passing
Patrick Williams2390b1b2022-11-03 13:47:49 -0500505``-c cve_check`` to BitBake.
506
507After building the software with Bitbake, CVE check output reports are available in ``tmp/deploy/cve``
508and image specific summaries in ``tmp/deploy/images/*.cve`` or ``tmp/deploy/images/*.json`` files.
509
510When building, the CVE checker will emit build time warnings for any detected
511issues which are in the state ``Unpatched``, meaning that CVE issue seems to affect the software component
512and version being compiled and no patches to address the issue are applied. Other states
513for detected CVE issues are: ``Patched`` meaning that a patch to address the issue is already
514applied, and ``Ignored`` meaning that the issue can be ignored.
515
516The ``Patched`` state of a CVE issue is detected from patch files with the format
517``CVE-ID.patch``, e.g. ``CVE-2019-20633.patch``, in the :term:`SRC_URI` and using
518CVE metadata of format ``CVE: CVE-ID`` in the commit message of the patch file.
519
520If the recipe lists the ``CVE-ID`` in :term:`CVE_CHECK_IGNORE` variable, then the CVE state is reported
521as ``Ignored``. Multiple CVEs can be listed separated by spaces. Example::
522
523 CVE_CHECK_IGNORE += "CVE-2020-29509 CVE-2020-29511"
524
525If CVE check reports that a recipe contains false positives or false negatives, these may be
526fixed in recipes by adjusting the CVE product name using :term:`CVE_PRODUCT` and :term:`CVE_VERSION` variables.
527:term:`CVE_PRODUCT` defaults to the plain recipe name :term:`BPN` which can be adjusted to one or more CVE
528database vendor and product pairs using the syntax::
529
530 CVE_PRODUCT = "flex_project:flex"
531
532where ``flex_project`` is the CVE database vendor name and ``flex`` is the product name. Similarly
533if the default recipe version :term:`PV` does not match the version numbers of the software component
534in upstream releases or the CVE database, then the :term:`CVE_VERSION` variable can be used to set the
535CVE database compatible version number, for example::
536
537 CVE_VERSION = "2.39"
538
539Any bugs or missing or incomplete information in the CVE database entries should be fixed in the CVE database
540via the `NVD feedback form <https://nvd.nist.gov/info/contact-form>`__.
541
542Users should note that security is a process, not a product, and thus also CVE checking, analyzing results,
543patching and updating the software should be done as a regular process. The data and assumptions
544required for CVE checker to reliably detect issues are frequently broken in various ways.
545These can only be detected by reviewing the details of the issues and iterating over the generated reports,
546and following what happens in other Linux distributions and in the greater open source community.
547
548You will find some more details in the
Andrew Geissler517393d2023-01-13 08:55:19 -0600549":ref:`dev-manual/vulnerabilities:checking for vulnerabilities`"
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500550section in the Development Tasks Manual.
551
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500552.. _ref-classes-debian:
553
Andrew Geissler517393d2023-01-13 08:55:19 -0600554``debian``
555==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500556
Andrew Geissler517393d2023-01-13 08:55:19 -0600557The :ref:`ref-classes-debian` class renames output packages so that they follow the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500558Debian naming policy (i.e. ``glibc`` becomes ``libc6`` and
559``glibc-devel`` becomes ``libc6-dev``.) Renaming includes the library
560name and version as part of the package name.
561
562If a recipe creates packages for multiple libraries (shared object files
563of ``.so`` type), use the :term:`LEAD_SONAME`
564variable in the recipe to specify the library on which to apply the
565naming scheme.
566
567.. _ref-classes-deploy:
568
Andrew Geissler517393d2023-01-13 08:55:19 -0600569``deploy``
570==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500571
Andrew Geissler517393d2023-01-13 08:55:19 -0600572The :ref:`ref-classes-deploy` class handles deploying files to the
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500573:term:`DEPLOY_DIR_IMAGE` directory. The main
574function of this class is to allow the deploy step to be accelerated by
575shared state. Recipes that inherit this class should define their own
576:ref:`ref-tasks-deploy` function to copy the files to be
577deployed to :term:`DEPLOYDIR`, and use ``addtask`` to
578add the task at the appropriate place, which is usually after
579:ref:`ref-tasks-compile` or
580:ref:`ref-tasks-install`. The class then takes care of
Andrew Geissler09036742021-06-25 14:25:14 -0500581staging the files from :term:`DEPLOYDIR` to :term:`DEPLOY_DIR_IMAGE`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500582
583.. _ref-classes-devshell:
584
Andrew Geissler517393d2023-01-13 08:55:19 -0600585``devshell``
586============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500587
Andrew Geissler517393d2023-01-13 08:55:19 -0600588The :ref:`ref-classes-devshell` class adds the :ref:`ref-tasks-devshell` task. Distribution
589policy dictates whether to include this class. See the ":ref:`dev-manual/development-shell:using a development shell`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500590section in the Yocto Project Development Tasks Manual for more
Andrew Geissler517393d2023-01-13 08:55:19 -0600591information about using :ref:`ref-classes-devshell`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500592
593.. _ref-classes-devupstream:
594
Andrew Geissler517393d2023-01-13 08:55:19 -0600595``devupstream``
596===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500597
Andrew Geissler517393d2023-01-13 08:55:19 -0600598The :ref:`ref-classes-devupstream` class uses
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500599:term:`BBCLASSEXTEND` to add a variant of the
600recipe that fetches from an alternative URI (e.g. Git) instead of a
Andrew Geisslerc926e172021-05-07 16:11:35 -0500601tarball. Following is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500602
603 BBCLASSEXTEND = "devupstream:target"
Andrew Geissler9aee5002022-03-30 16:27:02 +0000604 SRC_URI:class-devupstream = "git://git.example.com/example;branch=main"
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500605 SRCREV:class-devupstream = "abcd1234"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500606
607Adding the above statements to your recipe creates a variant that has
608:term:`DEFAULT_PREFERENCE` set to "-1".
609Consequently, you need to select the variant of the recipe to use it.
610Any development-specific adjustments can be done by using the
Andrew Geisslerc926e172021-05-07 16:11:35 -0500611``class-devupstream`` override. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500612
Patrick Williams0ca19cc2021-08-16 14:03:13 -0500613 DEPENDS:append:class-devupstream = " gperf-native"
614 do_configure:prepend:class-devupstream() {
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500615 touch ${S}/README
616 }
617
618The class
619currently only supports creating a development variant of the target
Andrew Geissler517393d2023-01-13 08:55:19 -0600620recipe, not :ref:`ref-classes-native` or :ref:`ref-classes-nativesdk` variants.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500621
Andrew Geissler09036742021-06-25 14:25:14 -0500622The :term:`BBCLASSEXTEND` syntax (i.e. ``devupstream:target``) provides
Andrew Geissler517393d2023-01-13 08:55:19 -0600623support for :ref:`ref-classes-native` and :ref:`ref-classes-nativesdk` variants. Consequently, this
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500624functionality can be added in a future release.
625
626Support for other version control systems such as Subversion is limited
627due to BitBake's automatic fetch dependencies (e.g.
628``subversion-native``).
629
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500630.. _ref-classes-externalsrc:
631
Andrew Geissler517393d2023-01-13 08:55:19 -0600632``externalsrc``
633===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500634
Andrew Geissler517393d2023-01-13 08:55:19 -0600635The :ref:`ref-classes-externalsrc` class supports building software from source code
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500636that is external to the OpenEmbedded build system. Building software
637from an external source tree means that the build system's normal fetch,
638unpack, and patch process is not used.
639
640By default, the OpenEmbedded build system uses the :term:`S`
641and :term:`B` variables to locate unpacked recipe source code
642and to build it, respectively. When your recipe inherits the
Andrew Geissler517393d2023-01-13 08:55:19 -0600643:ref:`ref-classes-externalsrc` class, you use the
644:term:`EXTERNALSRC` and :term:`EXTERNALSRC_BUILD` variables to
Andrew Geissler09036742021-06-25 14:25:14 -0500645ultimately define :term:`S` and :term:`B`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500646
647By default, this class expects the source code to support recipe builds
648that use the :term:`B` variable to point to the directory in
649which the OpenEmbedded build system places the generated objects built
Andrew Geissler09036742021-06-25 14:25:14 -0500650from the recipes. By default, the :term:`B` directory is set to the
651following, which is separate from the source directory (:term:`S`)::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500652
Andrew Geissler5199d832021-09-24 16:47:35 -0500653 ${WORKDIR}/${BPN}-{PV}/
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500654
655See these variables for more information:
656:term:`WORKDIR`, :term:`BPN`, and
657:term:`PV`,
658
Andrew Geissler517393d2023-01-13 08:55:19 -0600659For more information on the :ref:`ref-classes-externalsrc` class, see the comments in
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500660``meta/classes/externalsrc.bbclass`` in the :term:`Source Directory`.
Andrew Geissler517393d2023-01-13 08:55:19 -0600661For information on how to use the :ref:`ref-classes-externalsrc` class, see the
662":ref:`dev-manual/building:building software from an external source`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500663section in the Yocto Project Development Tasks Manual.
664
665.. _ref-classes-extrausers:
666
Andrew Geissler517393d2023-01-13 08:55:19 -0600667``extrausers``
668==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500669
Andrew Geissler517393d2023-01-13 08:55:19 -0600670The :ref:`ref-classes-extrausers` class allows additional user and group configuration
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500671to be applied at the image level. Inheriting this class either globally
672or from an image recipe allows additional user and group operations to
673be performed using the
674:term:`EXTRA_USERS_PARAMS` variable.
675
676.. note::
677
Andrew Geissler517393d2023-01-13 08:55:19 -0600678 The user and group operations added using the :ref:`ref-classes-extrausers`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500679 class are not tied to a specific recipe outside of the recipe for the
680 image. Thus, the operations can be performed across the image as a
Andrew Geissler517393d2023-01-13 08:55:19 -0600681 whole. Use the :ref:`ref-classes-useradd` class to add user and group
682 configuration to a specific recipe.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500683
Andrew Geisslerc926e172021-05-07 16:11:35 -0500684Here is an example that uses this class in an image recipe::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500685
686 inherit extrausers
687 EXTRA_USERS_PARAMS = "\
688 useradd -p '' tester; \
689 groupadd developers; \
690 userdel nobody; \
691 groupdel -g video; \
692 groupmod -g 1020 developers; \
693 usermod -s /bin/sh tester; \
694 "
695
696Here is an example that adds two users named "tester-jim" and "tester-sue" and assigns
Andrew Geissler9aee5002022-03-30 16:27:02 +0000697passwords. First on host, create the (escaped) password hash::
Andrew Geisslereff27472021-10-29 15:35:00 -0500698
Andrew Geissler9aee5002022-03-30 16:27:02 +0000699 printf "%q" $(mkpasswd -m sha256crypt tester01)
Andrew Geisslereff27472021-10-29 15:35:00 -0500700
Andrew Geissler9aee5002022-03-30 16:27:02 +0000701The resulting hash is set to a variable and used in ``useradd`` command parameters::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500702
703 inherit extrausers
Andrew Geisslereff27472021-10-29 15:35:00 -0500704 PASSWD = "\$X\$ABC123\$A-Long-Hash"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500705 EXTRA_USERS_PARAMS = "\
Andrew Geisslereff27472021-10-29 15:35:00 -0500706 useradd -p '${PASSWD}' tester-jim; \
707 useradd -p '${PASSWD}' tester-sue; \
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500708 "
709
Andrew Geisslereff27472021-10-29 15:35:00 -0500710Finally, here is an example that sets the root password::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500711
712 inherit extrausers
713 EXTRA_USERS_PARAMS = "\
Andrew Geisslereff27472021-10-29 15:35:00 -0500714 usermod -p '${PASSWD}' root; \
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500715 "
716
Patrick Williams03907ee2022-05-01 06:28:52 -0500717.. note::
718
719 From a security perspective, hardcoding a default password is not
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500720 generally a good idea or even legal in some jurisdictions. It is
721 recommended that you do not do this if you are building a production
Patrick Williams03907ee2022-05-01 06:28:52 -0500722 image.
723
724
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600725.. _ref-classes-features_check:
726
Andrew Geissler517393d2023-01-13 08:55:19 -0600727``features_check``
728==================
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600729
Andrew Geissler517393d2023-01-13 08:55:19 -0600730The :ref:`ref-classes-features_check` class allows individual recipes to check
731for required and conflicting :term:`DISTRO_FEATURES`, :term:`MACHINE_FEATURES`
732or :term:`COMBINED_FEATURES`.
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600733
734This class provides support for the following variables:
735
736- :term:`REQUIRED_DISTRO_FEATURES`
737- :term:`CONFLICT_DISTRO_FEATURES`
738- :term:`ANY_OF_DISTRO_FEATURES`
739- ``REQUIRED_MACHINE_FEATURES``
740- ``CONFLICT_MACHINE_FEATURES``
741- ``ANY_OF_MACHINE_FEATURES``
742- ``REQUIRED_COMBINED_FEATURES``
743- ``CONFLICT_COMBINED_FEATURES``
744- ``ANY_OF_COMBINED_FEATURES``
745
746If any conditions specified in the recipe using the above
747variables are not met, the recipe will be skipped, and if the
748build system attempts to build the recipe then an error will be
749triggered.
750
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500751.. _ref-classes-fontcache:
752
Andrew Geissler517393d2023-01-13 08:55:19 -0600753``fontcache``
754=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500755
Andrew Geissler517393d2023-01-13 08:55:19 -0600756The :ref:`ref-classes-fontcache` class generates the proper post-install and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500757post-remove (postinst and postrm) scriptlets for font packages. These
758scriptlets call ``fc-cache`` (part of ``Fontconfig``) to add the fonts
759to the font information cache. Since the cache files are
760architecture-specific, ``fc-cache`` runs using QEMU if the postinst
761scriptlets need to be run on the build host during image creation.
762
763If the fonts being installed are in packages other than the main
764package, set :term:`FONT_PACKAGES` to specify the
765packages containing the fonts.
766
767.. _ref-classes-fs-uuid:
768
Andrew Geissler517393d2023-01-13 08:55:19 -0600769``fs-uuid``
770===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500771
Andrew Geissler517393d2023-01-13 08:55:19 -0600772The :ref:`ref-classes-fs-uuid` class extracts UUID from
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500773``${``\ :term:`ROOTFS`\ ``}``, which must have been built
Andrew Geissler517393d2023-01-13 08:55:19 -0600774by the time that this function gets called. The :ref:`ref-classes-fs-uuid` class only
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500775works on ``ext`` file systems and depends on ``tune2fs``.
776
777.. _ref-classes-gconf:
778
Andrew Geissler517393d2023-01-13 08:55:19 -0600779``gconf``
780=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500781
Andrew Geissler517393d2023-01-13 08:55:19 -0600782The :ref:`ref-classes-gconf` class provides common functionality for recipes that need
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500783to install GConf schemas. The schemas will be put into a separate
784package (``${``\ :term:`PN`\ ``}-gconf``) that is created
785automatically when this class is inherited. This package uses the
786appropriate post-install and post-remove (postinst/postrm) scriptlets to
787register and unregister the schemas in the target image.
788
789.. _ref-classes-gettext:
790
Andrew Geissler517393d2023-01-13 08:55:19 -0600791``gettext``
792===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500793
Andrew Geissler517393d2023-01-13 08:55:19 -0600794The :ref:`ref-classes-gettext` class provides support for building
795software that uses the GNU ``gettext`` internationalization and localization
796system. All recipes building software that use ``gettext`` should inherit this
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500797class.
798
Patrick Williams975a06f2022-10-21 14:42:47 -0500799.. _ref-classes-github-releases:
800
Andrew Geissler517393d2023-01-13 08:55:19 -0600801``github-releases``
802===================
Patrick Williams975a06f2022-10-21 14:42:47 -0500803
Andrew Geissler517393d2023-01-13 08:55:19 -0600804For recipes that fetch release tarballs from github, the :ref:`ref-classes-github-releases`
Patrick Williams975a06f2022-10-21 14:42:47 -0500805class sets up a standard way for checking available upstream versions
806(to support ``devtool upgrade`` and the Automated Upgrade Helper (AUH)).
807
Andrew Geissler517393d2023-01-13 08:55:19 -0600808To use it, add ":ref:`ref-classes-github-releases`" to the inherit line in the recipe,
Patrick Williams975a06f2022-10-21 14:42:47 -0500809and if the default value of :term:`GITHUB_BASE_URI` is not suitable,
810then set your own value in the recipe. You should then use ``${GITHUB_BASE_URI}``
811in the value you set for :term:`SRC_URI` within the recipe.
812
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500813.. _ref-classes-gnomebase:
814
Andrew Geissler517393d2023-01-13 08:55:19 -0600815``gnomebase``
816=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500817
Andrew Geissler517393d2023-01-13 08:55:19 -0600818The :ref:`ref-classes-gnomebase` class is the base class for recipes that build
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500819software from the GNOME stack. This class sets
820:term:`SRC_URI` to download the source from the GNOME
821mirrors as well as extending :term:`FILES` with the typical
822GNOME installation paths.
823
Andrew Geisslerc5535c92023-01-27 16:10:19 -0600824.. _ref-classes-go:
825
826``go``
827======
828
829The :ref:`ref-classes-go` class supports building Go programs. The behavior of
830this class is controlled by the mandatory :term:`GO_IMPORT` variable, and
831by the optional :term:`GO_INSTALL` and :term:`GO_INSTALL_FILTEROUT` ones.
832
833To build a Go program with the Yocto Project, you can use the
834:yocto_git:`go-helloworld_0.1.bb </poky/tree/meta/recipes-extended/go-examples/go-helloworld_0.1.bb>`
835recipe as an example.
836
837.. _ref-classes-go-mod:
838
839``go-mod``
840==========
841
842The :ref:`ref-classes-go-mod` class allows to use Go modules, and inherits the
843:ref:`ref-classes-go` class.
844
845See the associated :term:`GO_WORKDIR` variable.
846
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500847.. _ref-classes-gobject-introspection:
848
Andrew Geissler517393d2023-01-13 08:55:19 -0600849``gobject-introspection``
850=========================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500851
852Provides support for recipes building software that supports GObject
853introspection. This functionality is only enabled if the
854"gobject-introspection-data" feature is in
855:term:`DISTRO_FEATURES` as well as
856"qemu-usermode" being in
857:term:`MACHINE_FEATURES`.
858
859.. note::
860
861 This functionality is backfilled by default and, if not applicable,
Andrew Geissler09036742021-06-25 14:25:14 -0500862 should be disabled through :term:`DISTRO_FEATURES_BACKFILL_CONSIDERED` or
863 :term:`MACHINE_FEATURES_BACKFILL_CONSIDERED`, respectively.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500864
865.. _ref-classes-grub-efi:
866
Andrew Geissler517393d2023-01-13 08:55:19 -0600867``grub-efi``
868============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500869
Andrew Geissler517393d2023-01-13 08:55:19 -0600870The :ref:`ref-classes-grub-efi` class provides ``grub-efi``-specific functions for
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500871building bootable images.
872
873This class supports several variables:
874
875- :term:`INITRD`: Indicates list of filesystem images to
876 concatenate and use as an initial RAM disk (initrd) (optional).
877
878- :term:`ROOTFS`: Indicates a filesystem image to include
879 as the root filesystem (optional).
880
881- :term:`GRUB_GFXSERIAL`: Set this to "1" to have
882 graphics and serial in the boot menu.
883
884- :term:`LABELS`: A list of targets for the automatic
885 configuration.
886
887- :term:`APPEND`: An override list of append strings for
888 each ``LABEL``.
889
890- :term:`GRUB_OPTS`: Additional options to add to the
891 configuration (optional). Options are delimited using semi-colon
892 characters (``;``).
893
894- :term:`GRUB_TIMEOUT`: Timeout before executing
895 the default ``LABEL`` (optional).
896
897.. _ref-classes-gsettings:
898
Andrew Geissler517393d2023-01-13 08:55:19 -0600899``gsettings``
900=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500901
Andrew Geissler517393d2023-01-13 08:55:19 -0600902The :ref:`ref-classes-gsettings` class provides common functionality for recipes that
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500903need to install GSettings (glib) schemas. The schemas are assumed to be
904part of the main package. Appropriate post-install and post-remove
905(postinst/postrm) scriptlets are added to register and unregister the
906schemas in the target image.
907
908.. _ref-classes-gtk-doc:
909
Andrew Geissler517393d2023-01-13 08:55:19 -0600910``gtk-doc``
911===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500912
Andrew Geissler517393d2023-01-13 08:55:19 -0600913The :ref:`ref-classes-gtk-doc` class is a helper class to pull in the appropriate
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500914``gtk-doc`` dependencies and disable ``gtk-doc``.
915
916.. _ref-classes-gtk-icon-cache:
917
Andrew Geissler517393d2023-01-13 08:55:19 -0600918``gtk-icon-cache``
919==================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500920
Andrew Geissler517393d2023-01-13 08:55:19 -0600921The :ref:`ref-classes-gtk-icon-cache` class generates the proper post-install and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500922post-remove (postinst/postrm) scriptlets for packages that use GTK+ and
923install icons. These scriptlets call ``gtk-update-icon-cache`` to add
924the fonts to GTK+'s icon cache. Since the cache files are
925architecture-specific, ``gtk-update-icon-cache`` is run using QEMU if
926the postinst scriptlets need to be run on the build host during image
927creation.
928
929.. _ref-classes-gtk-immodules-cache:
930
Andrew Geissler517393d2023-01-13 08:55:19 -0600931``gtk-immodules-cache``
932=======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500933
Andrew Geissler517393d2023-01-13 08:55:19 -0600934The :ref:`ref-classes-gtk-immodules-cache` class generates the proper post-install and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500935post-remove (postinst/postrm) scriptlets for packages that install GTK+
936input method modules for virtual keyboards. These scriptlets call
937``gtk-update-icon-cache`` to add the input method modules to the cache.
938Since the cache files are architecture-specific,
939``gtk-update-icon-cache`` is run using QEMU if the postinst scriptlets
940need to be run on the build host during image creation.
941
942If the input method modules being installed are in packages other than
943the main package, set
944:term:`GTKIMMODULES_PACKAGES` to specify
945the packages containing the modules.
946
947.. _ref-classes-gzipnative:
948
Andrew Geissler517393d2023-01-13 08:55:19 -0600949``gzipnative``
950==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500951
Andrew Geissler517393d2023-01-13 08:55:19 -0600952The :ref:`ref-classes-gzipnative` class enables the use of different native versions of
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500953``gzip`` and ``pigz`` rather than the versions of these tools from the
954build host.
955
956.. _ref-classes-icecc:
957
Andrew Geissler517393d2023-01-13 08:55:19 -0600958``icecc``
959=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500960
Andrew Geissler517393d2023-01-13 08:55:19 -0600961The :ref:`ref-classes-icecc` class supports
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500962`Icecream <https://github.com/icecc/icecream>`__, which facilitates
963taking compile jobs and distributing them among remote machines.
964
965The class stages directories with symlinks from ``gcc`` and ``g++`` to
966``icecc``, for both native and cross compilers. Depending on each
967configure or compile, the OpenEmbedded build system adds the directories
968at the head of the ``PATH`` list and then sets the ``ICECC_CXX`` and
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500969``ICECC_CC`` variables, which are the paths to the ``g++`` and ``gcc``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500970compilers, respectively.
971
972For the cross compiler, the class creates a ``tar.gz`` file that
973contains the Yocto Project toolchain and sets ``ICECC_VERSION``, which
974is the version of the cross-compiler used in the cross-development
975toolchain, accordingly.
976
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500977The class handles all three different compile stages (i.e native,
978cross-kernel and target) and creates the necessary environment
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500979``tar.gz`` file to be used by the remote machines. The class also
980supports SDK generation.
981
982If :term:`ICECC_PATH` is not set in your
983``local.conf`` file, then the class tries to locate the ``icecc`` binary
984using ``which``. If :term:`ICECC_ENV_EXEC` is set
985in your ``local.conf`` file, the variable should point to the
986``icecc-create-env`` script provided by the user. If you do not point to
987a user-provided script, the build system uses the default script
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500988provided by the recipe :oe_git:`icecc-create-env_0.1.bb
989</openembedded-core/tree/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500990
991.. note::
992
993 This script is a modified version and not the one that comes with
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500994 ``icecream``.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500995
996If you do not want the Icecream distributed compile support to apply to
Andrew Geissler595f6302022-01-24 19:11:47 +0000997specific recipes or classes, you can ask them to be ignored by Icecream
998by listing the recipes and classes using the
Andrew Geissler9aee5002022-03-30 16:27:02 +0000999:term:`ICECC_RECIPE_DISABLE` and
1000:term:`ICECC_CLASS_DISABLE` variables,
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001001respectively, in your ``local.conf`` file. Doing so causes the
1002OpenEmbedded build system to handle these compilations locally.
1003
1004Additionally, you can list recipes using the
Andrew Geissler9aee5002022-03-30 16:27:02 +00001005:term:`ICECC_RECIPE_ENABLE` variable in
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001006your ``local.conf`` file to force ``icecc`` to be enabled for recipes
1007using an empty :term:`PARALLEL_MAKE` variable.
1008
Andrew Geissler517393d2023-01-13 08:55:19 -06001009Inheriting the :ref:`ref-classes-icecc` class changes all sstate signatures.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001010Consequently, if a development team has a dedicated build system that
1011populates :term:`SSTATE_MIRRORS` and they want to
Andrew Geissler09036742021-06-25 14:25:14 -05001012reuse sstate from :term:`SSTATE_MIRRORS`, then all developers and the build
Andrew Geissler517393d2023-01-13 08:55:19 -06001013system need to either inherit the :ref:`ref-classes-icecc` class or nobody should.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001014
Andrew Geissler517393d2023-01-13 08:55:19 -06001015At the distribution level, you can inherit the :ref:`ref-classes-icecc` class to be
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001016sure that all builders start with the same sstate signatures. After
1017inheriting the class, you can then disable the feature by setting the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001018:term:`ICECC_DISABLED` variable to "1" as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001019
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001020 INHERIT_DISTRO:append = " icecc"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001021 ICECC_DISABLED ??= "1"
1022
1023This practice
1024makes sure everyone is using the same signatures but also requires
1025individuals that do want to use Icecream to enable the feature
Andrew Geisslerc926e172021-05-07 16:11:35 -05001026individually as follows in your ``local.conf`` file::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001027
1028 ICECC_DISABLED = ""
1029
1030.. _ref-classes-image:
1031
Andrew Geissler517393d2023-01-13 08:55:19 -06001032``image``
1033=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001034
Andrew Geissler517393d2023-01-13 08:55:19 -06001035The :ref:`ref-classes-image` class helps support creating images in different formats.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001036First, the root filesystem is created from packages using one of the
1037``rootfs*.bbclass`` files (depending on the package format used) and
1038then one or more image files are created.
1039
Andrew Geissler09036742021-06-25 14:25:14 -05001040- The :term:`IMAGE_FSTYPES` variable controls the types of images to
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001041 generate.
1042
Andrew Geissler09036742021-06-25 14:25:14 -05001043- The :term:`IMAGE_INSTALL` variable controls the list of packages to
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001044 install into the image.
1045
1046For information on customizing images, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001047":ref:`dev-manual/customizing-images:customizing images`" section
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001048in the Yocto Project Development Tasks Manual. For information on how
1049images are created, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001050":ref:`overview-manual/concepts:images`" section in the
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001051Yocto Project Overview and Concepts Manual.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001052
1053.. _ref-classes-image-buildinfo:
1054
Andrew Geissler517393d2023-01-13 08:55:19 -06001055``image-buildinfo``
1056===================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001057
Andrew Geissler517393d2023-01-13 08:55:19 -06001058The :ref:`ref-classes-image-buildinfo` class writes a plain text file containing
Patrick Williams975a06f2022-10-21 14:42:47 -05001059build information to the target filesystem at ``${sysconfdir}/buildinfo``
Patrick Williams7784c422022-11-17 07:29:11 -06001060by default (as specified by :term:`IMAGE_BUILDINFO_FILE`).
Patrick Williams975a06f2022-10-21 14:42:47 -05001061This can be useful for manually determining the origin of any given
1062image. It writes out two sections:
1063
Andrew Geissler517393d2023-01-13 08:55:19 -06001064#. `Build Configuration`: a list of variables and their values (specified
Patrick Williams975a06f2022-10-21 14:42:47 -05001065 by :term:`IMAGE_BUILDINFO_VARS`, which defaults to :term:`DISTRO` and
1066 :term:`DISTRO_VERSION`)
1067
Andrew Geissler517393d2023-01-13 08:55:19 -06001068#. `Layer Revisions`: the revisions of all of the layers used in the
Patrick Williams975a06f2022-10-21 14:42:47 -05001069 build.
1070
1071Additionally, when building an SDK it will write the same contents
1072to ``/buildinfo`` by default (as specified by
1073:term:`SDK_BUILDINFO_FILE`).
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001074
1075.. _ref-classes-image_types:
1076
Andrew Geissler517393d2023-01-13 08:55:19 -06001077``image_types``
1078===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001079
Andrew Geissler517393d2023-01-13 08:55:19 -06001080The :ref:`ref-classes-image_types` class defines all of the standard image output types
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001081that you can enable through the
1082:term:`IMAGE_FSTYPES` variable. You can use this
1083class as a reference on how to add support for custom image output
1084types.
1085
Andrew Geissler517393d2023-01-13 08:55:19 -06001086By default, the :ref:`ref-classes-image` class automatically
1087enables the :ref:`ref-classes-image_types` class. The :ref:`ref-classes-image` class uses the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001088``IMGCLASSES`` variable as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001089
1090 IMGCLASSES = "rootfs_${IMAGE_PKGTYPE} image_types ${IMAGE_CLASSES}"
1091 IMGCLASSES += "${@['populate_sdk_base', 'populate_sdk_ext']['linux' in d.getVar("SDK_OS")]}"
1092 IMGCLASSES += "${@bb.utils.contains_any('IMAGE_FSTYPES', 'live iso hddimg', 'image-live', '', d)}"
1093 IMGCLASSES += "${@bb.utils.contains('IMAGE_FSTYPES', 'container', 'image-container', '', d)}"
1094 IMGCLASSES += "image_types_wic"
1095 IMGCLASSES += "rootfs-postcommands"
1096 IMGCLASSES += "image-postinst-intercepts"
1097 inherit ${IMGCLASSES}
1098
Andrew Geissler517393d2023-01-13 08:55:19 -06001099The :ref:`ref-classes-image_types` class also handles conversion and compression of images.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001100
1101.. note::
1102
1103 To build a VMware VMDK image, you need to add "wic.vmdk" to
Andrew Geissler09036742021-06-25 14:25:14 -05001104 :term:`IMAGE_FSTYPES`. This would also be similar for Virtual Box Virtual Disk
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001105 Image ("vdi") and QEMU Copy On Write Version 2 ("qcow2") images.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001106
1107.. _ref-classes-image-live:
1108
Andrew Geissler517393d2023-01-13 08:55:19 -06001109``image-live``
1110==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001111
1112This class controls building "live" (i.e. HDDIMG and ISO) images. Live
1113images contain syslinux for legacy booting, as well as the bootloader
1114specified by :term:`EFI_PROVIDER` if
1115:term:`MACHINE_FEATURES` contains "efi".
1116
1117Normally, you do not use this class directly. Instead, you add "live" to
1118:term:`IMAGE_FSTYPES`.
1119
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001120.. _ref-classes-insane:
1121
Andrew Geissler517393d2023-01-13 08:55:19 -06001122``insane``
1123==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001124
Andrew Geissler517393d2023-01-13 08:55:19 -06001125The :ref:`ref-classes-insane` class adds a step to the package generation process so
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001126that output quality assurance checks are generated by the OpenEmbedded
1127build system. A range of checks are performed that check the build's
1128output for common problems that show up during runtime. Distribution
1129policy usually dictates whether to include this class.
1130
1131You can configure the sanity checks so that specific test failures
1132either raise a warning or an error message. Typically, failures for new
1133tests generate a warning. Subsequent failures for the same test would
1134then generate an error message once the metadata is in a known and good
Andrew Geissler09209ee2020-12-13 08:44:15 -06001135condition. See the ":doc:`/ref-manual/qa-checks`" Chapter for a list of all the warning
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001136and error messages you might encounter using a default configuration.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001137
1138Use the :term:`WARN_QA` and
1139:term:`ERROR_QA` variables to control the behavior of
1140these checks at the global level (i.e. in your custom distro
1141configuration). However, to skip one or more checks in recipes, you
1142should use :term:`INSANE_SKIP`. For example, to skip
1143the check for symbolic link ``.so`` files in the main package of a
1144recipe, add the following to the recipe. You need to realize that the
Andrew Geisslerc926e172021-05-07 16:11:35 -05001145package name override, in this example ``${PN}``, must be used::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001146
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001147 INSANE_SKIP:${PN} += "dev-so"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001148
1149Please keep in mind that the QA checks
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001150are meant to detect real or potential problems in the packaged
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001151output. So exercise caution when disabling these checks.
1152
Andrew Geissler09036742021-06-25 14:25:14 -05001153Here are the tests you can list with the :term:`WARN_QA` and
Andrew Geissler5f350902021-07-23 13:09:54 -04001154:term:`ERROR_QA` variables:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001155
1156- ``already-stripped:`` Checks that produced binaries have not
1157 already been stripped prior to the build system extracting debug
1158 symbols. It is common for upstream software projects to default to
1159 stripping debug symbols for output binaries. In order for debugging
1160 to work on the target using ``-dbg`` packages, this stripping must be
1161 disabled.
1162
1163- ``arch:`` Checks the Executable and Linkable Format (ELF) type, bit
1164 size, and endianness of any binaries to ensure they match the target
1165 architecture. This test fails if any binaries do not match the type
1166 since there would be an incompatibility. The test could indicate that
1167 the wrong compiler or compiler options have been used. Sometimes
1168 software, like bootloaders, might need to bypass this check.
1169
1170- ``buildpaths:`` Checks for paths to locations on the build host
Patrick Williams975a06f2022-10-21 14:42:47 -05001171 inside the output files. Not only can these leak information about
1172 the build environment, they also hinder binary reproducibility.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001173
1174- ``build-deps:`` Determines if a build-time dependency that is
1175 specified through :term:`DEPENDS`, explicit
1176 :term:`RDEPENDS`, or task-level dependencies exists
1177 to match any runtime dependency. This determination is particularly
1178 useful to discover where runtime dependencies are detected and added
1179 during packaging. If no explicit dependency has been specified within
1180 the metadata, at the packaging stage it is too late to ensure that
1181 the dependency is built, and thus you can end up with an error when
1182 the package is installed into the image during the
1183 :ref:`ref-tasks-rootfs` task because the auto-detected
1184 dependency was not satisfied. An example of this would be where the
Andrew Geissler517393d2023-01-13 08:55:19 -06001185 :ref:`ref-classes-update-rc.d` class automatically
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001186 adds a dependency on the ``initscripts-functions`` package to
1187 packages that install an initscript that refers to
1188 ``/etc/init.d/functions``. The recipe should really have an explicit
Andrew Geissler5f350902021-07-23 13:09:54 -04001189 :term:`RDEPENDS` for the package in question on ``initscripts-functions``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001190 so that the OpenEmbedded build system is able to ensure that the
1191 ``initscripts`` recipe is actually built and thus the
1192 ``initscripts-functions`` package is made available.
1193
1194- ``compile-host-path:`` Checks the
1195 :ref:`ref-tasks-compile` log for indications that
1196 paths to locations on the build host were used. Using such paths
1197 might result in host contamination of the build output.
1198
1199- ``debug-deps:`` Checks that all packages except ``-dbg`` packages
1200 do not depend on ``-dbg`` packages, which would cause a packaging
1201 bug.
1202
1203- ``debug-files:`` Checks for ``.debug`` directories in anything but
1204 the ``-dbg`` package. The debug files should all be in the ``-dbg``
1205 package. Thus, anything packaged elsewhere is incorrect packaging.
1206
1207- ``dep-cmp:`` Checks for invalid version comparison statements in
1208 runtime dependency relationships between packages (i.e. in
1209 :term:`RDEPENDS`,
1210 :term:`RRECOMMENDS`,
1211 :term:`RSUGGESTS`,
1212 :term:`RPROVIDES`,
1213 :term:`RREPLACES`, and
1214 :term:`RCONFLICTS` variable values). Any invalid
1215 comparisons might trigger failures or undesirable behavior when
1216 passed to the package manager.
1217
1218- ``desktop:`` Runs the ``desktop-file-validate`` program against any
1219 ``.desktop`` files to validate their contents against the
1220 specification for ``.desktop`` files.
1221
1222- ``dev-deps:`` Checks that all packages except ``-dev`` or
1223 ``-staticdev`` packages do not depend on ``-dev`` packages, which
1224 would be a packaging bug.
1225
1226- ``dev-so:`` Checks that the ``.so`` symbolic links are in the
1227 ``-dev`` package and not in any of the other packages. In general,
1228 these symlinks are only useful for development purposes. Thus, the
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001229 ``-dev`` package is the correct location for them. In very rare
1230 cases, such as dynamically loaded modules, these symlinks
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001231 are needed instead in the main package.
1232
Patrick Williams03907ee2022-05-01 06:28:52 -05001233- ``empty-dirs:`` Checks that packages are not installing files to
1234 directories that are normally expected to be empty (such as ``/tmp``)
1235 The list of directories that are checked is specified by the
1236 :term:`QA_EMPTY_DIRS` variable.
1237
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001238- ``file-rdeps:`` Checks that file-level dependencies identified by
1239 the OpenEmbedded build system at packaging time are satisfied. For
1240 example, a shell script might start with the line ``#!/bin/bash``.
1241 This line would translate to a file dependency on ``/bin/bash``. Of
1242 the three package managers that the OpenEmbedded build system
1243 supports, only RPM directly handles file-level dependencies,
1244 resolving them automatically to packages providing the files.
1245 However, the lack of that functionality in the other two package
1246 managers does not mean the dependencies do not still need resolving.
1247 This QA check attempts to ensure that explicitly declared
1248 :term:`RDEPENDS` exist to handle any file-level
1249 dependency detected in packaged files.
1250
1251- ``files-invalid:`` Checks for :term:`FILES` variable
1252 values that contain "//", which is invalid.
1253
1254- ``host-user-contaminated:`` Checks that no package produced by the
1255 recipe contains any files outside of ``/home`` with a user or group
1256 ID that matches the user running BitBake. A match usually indicates
1257 that the files are being installed with an incorrect UID/GID, since
1258 target IDs are independent from host IDs. For additional information,
1259 see the section describing the
1260 :ref:`ref-tasks-install` task.
1261
1262- ``incompatible-license:`` Report when packages are excluded from
1263 being created due to being marked with a license that is in
1264 :term:`INCOMPATIBLE_LICENSE`.
1265
1266- ``install-host-path:`` Checks the
1267 :ref:`ref-tasks-install` log for indications that
1268 paths to locations on the build host were used. Using such paths
1269 might result in host contamination of the build output.
1270
1271- ``installed-vs-shipped:`` Reports when files have been installed
Patrick Williams2194f502022-10-16 14:26:09 -05001272 within :ref:`ref-tasks-install` but have not been included in any package by
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001273 way of the :term:`FILES` variable. Files that do not
1274 appear in any package cannot be present in an image later on in the
1275 build process. Ideally, all installed files should be packaged or not
1276 installed at all. These files can be deleted at the end of
Patrick Williams2194f502022-10-16 14:26:09 -05001277 :ref:`ref-tasks-install` if the files are not needed in any package.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001278
1279- ``invalid-chars:`` Checks that the recipe metadata variables
1280 :term:`DESCRIPTION`,
1281 :term:`SUMMARY`, :term:`LICENSE`, and
1282 :term:`SECTION` do not contain non-UTF-8 characters.
1283 Some package managers do not support such characters.
1284
1285- ``invalid-packageconfig:`` Checks that no undefined features are
1286 being added to :term:`PACKAGECONFIG`. For
Andrew Geisslerc926e172021-05-07 16:11:35 -05001287 example, any name "foo" for which the following form does not exist::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001288
1289 PACKAGECONFIG[foo] = "..."
1290
Andrew Geissler09036742021-06-25 14:25:14 -05001291- ``la:`` Checks ``.la`` files for any :term:`TMPDIR` paths. Any ``.la``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001292 file containing these paths is incorrect since ``libtool`` adds the
1293 correct sysroot prefix when using the files automatically itself.
1294
1295- ``ldflags:`` Ensures that the binaries were linked with the
1296 :term:`LDFLAGS` options provided by the build system.
Andrew Geissler09036742021-06-25 14:25:14 -05001297 If this test fails, check that the :term:`LDFLAGS` variable is being
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001298 passed to the linker command.
1299
1300- ``libdir:`` Checks for libraries being installed into incorrect
1301 (possibly hardcoded) installation paths. For example, this test will
1302 catch recipes that install ``/lib/bar.so`` when ``${base_libdir}`` is
1303 "lib32". Another example is when recipes install
1304 ``/usr/lib64/foo.so`` when ``${libdir}`` is "/usr/lib".
1305
1306- ``libexec:`` Checks if a package contains files in
1307 ``/usr/libexec``. This check is not performed if the ``libexecdir``
1308 variable has been set explicitly to ``/usr/libexec``.
1309
1310- ``packages-list:`` Checks for the same package being listed
1311 multiple times through the :term:`PACKAGES` variable
1312 value. Installing the package in this manner can cause errors during
1313 packaging.
1314
1315- ``perm-config:`` Reports lines in ``fs-perms.txt`` that have an
1316 invalid format.
1317
1318- ``perm-line:`` Reports lines in ``fs-perms.txt`` that have an
1319 invalid format.
1320
1321- ``perm-link:`` Reports lines in ``fs-perms.txt`` that specify
1322 'link' where the specified target already exists.
1323
1324- ``perms:`` Currently, this check is unused but reserved.
1325
1326- ``pkgconfig:`` Checks ``.pc`` files for any
1327 :term:`TMPDIR`/:term:`WORKDIR` paths.
1328 Any ``.pc`` file containing these paths is incorrect since
1329 ``pkg-config`` itself adds the correct sysroot prefix when the files
1330 are accessed.
1331
1332- ``pkgname:`` Checks that all packages in
1333 :term:`PACKAGES` have names that do not contain
1334 invalid characters (i.e. characters other than 0-9, a-z, ., +, and
1335 -).
1336
Andrew Geissler09036742021-06-25 14:25:14 -05001337- ``pkgv-undefined:`` Checks to see if the :term:`PKGV` variable is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001338 undefined during :ref:`ref-tasks-package`.
1339
1340- ``pkgvarcheck:`` Checks through the variables
1341 :term:`RDEPENDS`,
1342 :term:`RRECOMMENDS`,
1343 :term:`RSUGGESTS`,
1344 :term:`RCONFLICTS`,
1345 :term:`RPROVIDES`,
1346 :term:`RREPLACES`, :term:`FILES`,
1347 :term:`ALLOW_EMPTY`, ``pkg_preinst``,
1348 ``pkg_postinst``, ``pkg_prerm`` and ``pkg_postrm``, and reports if
1349 there are variable sets that are not package-specific. Using these
1350 variables without a package suffix is bad practice, and might
1351 unnecessarily complicate dependencies of other packages within the
1352 same recipe or have other unintended consequences.
1353
1354- ``pn-overrides:`` Checks that a recipe does not have a name
1355 (:term:`PN`) value that appears in
1356 :term:`OVERRIDES`. If a recipe is named such that
Andrew Geissler09036742021-06-25 14:25:14 -05001357 its :term:`PN` value matches something already in :term:`OVERRIDES` (e.g.
1358 :term:`PN` happens to be the same as :term:`MACHINE` or
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001359 :term:`DISTRO`), it can have unexpected consequences.
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001360 For example, assignments such as ``FILES:${PN} = "xyz"`` effectively
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001361 turn into ``FILES = "xyz"``.
1362
1363- ``rpaths:`` Checks for rpaths in the binaries that contain build
Andrew Geissler5f350902021-07-23 13:09:54 -04001364 system paths such as :term:`TMPDIR`. If this test fails, bad ``-rpath``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001365 options are being passed to the linker commands and your binaries
1366 have potential security issues.
1367
1368- ``split-strip:`` Reports that splitting or stripping debug symbols
1369 from binaries has failed.
1370
1371- ``staticdev:`` Checks for static library files (``*.a``) in
1372 non-``staticdev`` packages.
1373
1374- ``symlink-to-sysroot:`` Checks for symlinks in packages that point
1375 into :term:`TMPDIR` on the host. Such symlinks will
1376 work on the host, but are clearly invalid when running on the target.
1377
1378- ``textrel:`` Checks for ELF binaries that contain relocations in
1379 their ``.text`` sections, which can result in a performance impact at
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001380 runtime. See the explanation for the ``ELF binary`` message in
Andrew Geissler09209ee2020-12-13 08:44:15 -06001381 ":doc:`/ref-manual/qa-checks`" for more information regarding runtime performance
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001382 issues.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001383
1384- ``unlisted-pkg-lics:`` Checks that all declared licenses applying
1385 for a package are also declared on the recipe level (i.e. any license
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001386 in ``LICENSE:*`` should appear in :term:`LICENSE`).
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001387
1388- ``useless-rpaths:`` Checks for dynamic library load paths (rpaths)
1389 in the binaries that by default on a standard system are searched by
1390 the linker (e.g. ``/lib`` and ``/usr/lib``). While these paths will
1391 not cause any breakage, they do waste space and are unnecessary.
1392
1393- ``var-undefined:`` Reports when variables fundamental to packaging
1394 (i.e. :term:`WORKDIR`,
1395 :term:`DEPLOY_DIR`, :term:`D`,
1396 :term:`PN`, and :term:`PKGD`) are undefined
1397 during :ref:`ref-tasks-package`.
1398
1399- ``version-going-backwards:`` If Build History is enabled, reports
1400 when a package being written out has a lower version than the
1401 previously written package under the same name. If you are placing
1402 output packages into a feed and upgrading packages on a target system
1403 using that feed, the version of a package going backwards can result
1404 in the target system not correctly upgrading to the "new" version of
1405 the package.
1406
1407 .. note::
1408
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001409 This is only relevant when you are using runtime package management
1410 on your target system.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001411
1412- ``xorg-driver-abi:`` Checks that all packages containing Xorg
1413 drivers have ABI dependencies. The ``xserver-xorg`` recipe provides
1414 driver ABI names. All drivers should depend on the ABI versions that
1415 they have been built against. Driver recipes that include
1416 ``xorg-driver-input.inc`` or ``xorg-driver-video.inc`` will
1417 automatically get these versions. Consequently, you should only need
1418 to explicitly add dependencies to binary driver recipes.
1419
1420.. _ref-classes-insserv:
1421
Andrew Geissler517393d2023-01-13 08:55:19 -06001422``insserv``
1423===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001424
Andrew Geissler517393d2023-01-13 08:55:19 -06001425The :ref:`ref-classes-insserv` class uses the ``insserv`` utility to update the order
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001426of symbolic links in ``/etc/rc?.d/`` within an image based on
1427dependencies specified by LSB headers in the ``init.d`` scripts
1428themselves.
1429
1430.. _ref-classes-kernel:
1431
Andrew Geissler517393d2023-01-13 08:55:19 -06001432``kernel``
1433==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001434
Andrew Geissler517393d2023-01-13 08:55:19 -06001435The :ref:`ref-classes-kernel` class handles building Linux kernels. The class contains
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001436code to build all kernel trees. All needed headers are staged into the
Andrew Geissler5f350902021-07-23 13:09:54 -04001437:term:`STAGING_KERNEL_DIR` directory to allow out-of-tree module builds
Andrew Geissler517393d2023-01-13 08:55:19 -06001438using the :ref:`ref-classes-module` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001439
1440This means that each built kernel module is packaged separately and
1441inter-module dependencies are created by parsing the ``modinfo`` output.
1442If all modules are required, then installing the ``kernel-modules``
1443package installs all packages with modules and various other kernel
1444packages such as ``kernel-vmlinux``.
1445
Andrew Geissler517393d2023-01-13 08:55:19 -06001446The :ref:`ref-classes-kernel` class contains logic that allows you to embed an initial
Patrick Williams2194f502022-10-16 14:26:09 -05001447RAM filesystem (:term:`Initramfs`) image when you build the kernel image. For
1448information on how to build an :term:`Initramfs`, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001449":ref:`dev-manual/building:building an initial ram filesystem (Initramfs) image`" section in
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001450the Yocto Project Development Tasks Manual.
1451
Andrew Geissler517393d2023-01-13 08:55:19 -06001452Various other classes are used by the :ref:`ref-classes-kernel` and :ref:`ref-classes-module` classes
1453internally including the :ref:`ref-classes-kernel-arch`, :ref:`ref-classes-module-base`, and
1454:ref:`ref-classes-linux-kernel-base` classes.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001455
1456.. _ref-classes-kernel-arch:
1457
Andrew Geissler517393d2023-01-13 08:55:19 -06001458``kernel-arch``
1459===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001460
Andrew Geissler517393d2023-01-13 08:55:19 -06001461The :ref:`ref-classes-kernel-arch` class sets the ``ARCH`` environment variable for
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001462Linux kernel compilation (including modules).
1463
1464.. _ref-classes-kernel-devicetree:
1465
Andrew Geissler517393d2023-01-13 08:55:19 -06001466``kernel-devicetree``
1467=====================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001468
Andrew Geissler517393d2023-01-13 08:55:19 -06001469The :ref:`ref-classes-kernel-devicetree` class, which is inherited by the
1470:ref:`ref-classes-kernel` class, supports device tree generation.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001471
1472.. _ref-classes-kernel-fitimage:
1473
Andrew Geissler517393d2023-01-13 08:55:19 -06001474``kernel-fitimage``
1475===================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001476
Andrew Geissler517393d2023-01-13 08:55:19 -06001477The :ref:`ref-classes-kernel-fitimage` class provides support to pack a kernel image,
1478device trees, a U-boot script, a :term:`Initramfs` bundle and a RAM disk
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001479into a single FIT image. In theory, a FIT image can support any number
Andrew Geissler517393d2023-01-13 08:55:19 -06001480of kernels, U-boot scripts, :term:`Initramfs` bundles, RAM disks and device-trees.
1481However, :ref:`ref-classes-kernel-fitimage` currently only supports
Patrick Williams975a06f2022-10-21 14:42:47 -05001482limited usecases: just one kernel image, an optional U-boot script,
Andrew Geissler517393d2023-01-13 08:55:19 -06001483an optional :term:`Initramfs` bundle, an optional RAM disk, and any number of
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001484device tree.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001485
1486To create a FIT image, it is required that :term:`KERNEL_CLASSES`
Andrew Geissler517393d2023-01-13 08:55:19 -06001487is set to include ":ref:`ref-classes-kernel-fitimage`" and :term:`KERNEL_IMAGETYPE`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001488is set to "fitImage".
1489
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001490The options for the device tree compiler passed to ``mkimage -D``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001491when creating the FIT image are specified using the
1492:term:`UBOOT_MKIMAGE_DTCOPTS` variable.
1493
1494Only a single kernel can be added to the FIT image created by
Andrew Geissler517393d2023-01-13 08:55:19 -06001495:ref:`ref-classes-kernel-fitimage` and the kernel image in FIT is mandatory. The
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001496address where the kernel image is to be loaded by U-Boot is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001497specified by :term:`UBOOT_LOADADDRESS` and the entrypoint by
1498:term:`UBOOT_ENTRYPOINT`.
1499
1500Multiple device trees can be added to the FIT image created by
Andrew Geissler517393d2023-01-13 08:55:19 -06001501:ref:`ref-classes-kernel-fitimage` and the device tree is optional.
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001502The address where the device tree is to be loaded by U-Boot is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001503specified by :term:`UBOOT_DTBO_LOADADDRESS` for device tree overlays
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001504and by :term:`UBOOT_DTB_LOADADDRESS` for device tree binaries.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001505
1506Only a single RAM disk can be added to the FIT image created by
Andrew Geissler517393d2023-01-13 08:55:19 -06001507:ref:`ref-classes-kernel-fitimage` and the RAM disk in FIT is optional.
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001508The address where the RAM disk image is to be loaded by U-Boot
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001509is specified by :term:`UBOOT_RD_LOADADDRESS` and the entrypoint by
1510:term:`UBOOT_RD_ENTRYPOINT`. The ramdisk is added to FIT image when
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001511:term:`INITRAMFS_IMAGE` is specified and that :term:`INITRAMFS_IMAGE_BUNDLE`
1512is set to 0.
1513
Andrew Geissler517393d2023-01-13 08:55:19 -06001514Only a single :term:`Initramfs` bundle can be added to the FIT image created by
1515:ref:`ref-classes-kernel-fitimage` and the :term:`Initramfs` bundle in FIT is optional.
1516In case of :term:`Initramfs`, the kernel is configured to be bundled with the root filesystem
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001517in the same binary (example: zImage-initramfs-:term:`MACHINE`.bin).
Andrew Geissler517393d2023-01-13 08:55:19 -06001518When the kernel is copied to RAM and executed, it unpacks the :term:`Initramfs` root filesystem.
1519The :term:`Initramfs` bundle can be enabled when :term:`INITRAMFS_IMAGE`
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001520is specified and that :term:`INITRAMFS_IMAGE_BUNDLE` is set to 1.
Andrew Geissler517393d2023-01-13 08:55:19 -06001521The address where the :term:`Initramfs` bundle is to be loaded by U-boot is specified
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001522by :term:`UBOOT_LOADADDRESS` and the entrypoint by :term:`UBOOT_ENTRYPOINT`.
1523
1524Only a single U-boot boot script can be added to the FIT image created by
Andrew Geissler517393d2023-01-13 08:55:19 -06001525:ref:`ref-classes-kernel-fitimage` and the boot script is optional.
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001526The boot script is specified in the ITS file as a text file containing
1527U-boot commands. When using a boot script the user should configure the
Patrick Williams2194f502022-10-16 14:26:09 -05001528U-boot :ref:`ref-tasks-install` task to copy the script to sysroot.
Andrew Geissler517393d2023-01-13 08:55:19 -06001529So the script can be included in the FIT image by the :ref:`ref-classes-kernel-fitimage`
Andrew Geisslerd1e89492021-02-12 15:35:20 -06001530class. At run-time, U-boot CONFIG_BOOTCOMMAND define can be configured to
1531load the boot script from the FIT image and executes it.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001532
Andrew Geissler517393d2023-01-13 08:55:19 -06001533The FIT image generated by :ref:`ref-classes-kernel-fitimage` class is signed when the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001534variables :term:`UBOOT_SIGN_ENABLE`, :term:`UBOOT_MKIMAGE_DTCOPTS`,
1535:term:`UBOOT_SIGN_KEYDIR` and :term:`UBOOT_SIGN_KEYNAME` are set
1536appropriately. The default values used for :term:`FIT_HASH_ALG` and
Andrew Geissler517393d2023-01-13 08:55:19 -06001537:term:`FIT_SIGN_ALG` in :ref:`ref-classes-kernel-fitimage` are "sha256" and
Andrew Geisslerc3d88e42020-10-02 09:45:00 -05001538"rsa2048" respectively. The keys for signing fitImage can be generated using
Andrew Geissler517393d2023-01-13 08:55:19 -06001539the :ref:`ref-classes-kernel-fitimage` class when both :term:`FIT_GENERATE_KEYS` and
Andrew Geisslerc3d88e42020-10-02 09:45:00 -05001540:term:`UBOOT_SIGN_ENABLE` are set to "1".
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001541
1542
1543.. _ref-classes-kernel-grub:
1544
Andrew Geissler517393d2023-01-13 08:55:19 -06001545``kernel-grub``
1546===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001547
Andrew Geissler517393d2023-01-13 08:55:19 -06001548The :ref:`ref-classes-kernel-grub` class updates the boot area and the boot menu with
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001549the kernel as the priority boot mechanism while installing a RPM to
1550update the kernel on a deployed target.
1551
1552.. _ref-classes-kernel-module-split:
1553
Andrew Geissler517393d2023-01-13 08:55:19 -06001554``kernel-module-split``
1555=======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001556
Andrew Geissler517393d2023-01-13 08:55:19 -06001557The :ref:`ref-classes-kernel-module-split` class provides common functionality for
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001558splitting Linux kernel modules into separate packages.
1559
1560.. _ref-classes-kernel-uboot:
1561
Andrew Geissler517393d2023-01-13 08:55:19 -06001562``kernel-uboot``
1563================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001564
Andrew Geissler517393d2023-01-13 08:55:19 -06001565The :ref:`ref-classes-kernel-uboot` class provides support for building from
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001566vmlinux-style kernel sources.
1567
1568.. _ref-classes-kernel-uimage:
1569
Andrew Geissler517393d2023-01-13 08:55:19 -06001570``kernel-uimage``
1571=================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001572
Andrew Geissler517393d2023-01-13 08:55:19 -06001573The :ref:`ref-classes-kernel-uimage` class provides support to pack uImage.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001574
1575.. _ref-classes-kernel-yocto:
1576
Andrew Geissler517393d2023-01-13 08:55:19 -06001577``kernel-yocto``
1578================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001579
Andrew Geissler517393d2023-01-13 08:55:19 -06001580The :ref:`ref-classes-kernel-yocto` class provides common functionality for building
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001581from linux-yocto style kernel source repositories.
1582
1583.. _ref-classes-kernelsrc:
1584
Andrew Geissler517393d2023-01-13 08:55:19 -06001585``kernelsrc``
1586=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001587
Andrew Geissler517393d2023-01-13 08:55:19 -06001588The :ref:`ref-classes-kernelsrc` class sets the Linux kernel source and version.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001589
1590.. _ref-classes-lib_package:
1591
Andrew Geissler517393d2023-01-13 08:55:19 -06001592``lib_package``
1593===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001594
Andrew Geissler517393d2023-01-13 08:55:19 -06001595The :ref:`ref-classes-lib_package` class supports recipes that build libraries and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001596produce executable binaries, where those binaries should not be
1597installed by default along with the library. Instead, the binaries are
1598added to a separate ``${``\ :term:`PN`\ ``}-bin`` package to
1599make their installation optional.
1600
1601.. _ref-classes-libc*:
1602
Andrew Geissler517393d2023-01-13 08:55:19 -06001603``libc*``
1604=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001605
Andrew Geissler517393d2023-01-13 08:55:19 -06001606The :ref:`ref-classes-libc*` classes support recipes that build packages with ``libc``:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001607
Patrick Williams2390b1b2022-11-03 13:47:49 -05001608- The :ref:`libc-common <ref-classes-libc*>` class provides common support for building with
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001609 ``libc``.
1610
Patrick Williams2390b1b2022-11-03 13:47:49 -05001611- The :ref:`libc-package <ref-classes-libc*>` class supports packaging up ``glibc`` and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001612 ``eglibc``.
1613
1614.. _ref-classes-license:
1615
Andrew Geissler517393d2023-01-13 08:55:19 -06001616``license``
1617===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001618
Andrew Geissler517393d2023-01-13 08:55:19 -06001619The :ref:`ref-classes-license` class provides license manifest creation and license
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001620exclusion. This class is enabled by default using the default value for
1621the :term:`INHERIT_DISTRO` variable.
1622
1623.. _ref-classes-linux-kernel-base:
1624
Andrew Geissler517393d2023-01-13 08:55:19 -06001625``linux-kernel-base``
1626=====================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001627
Andrew Geissler517393d2023-01-13 08:55:19 -06001628The :ref:`ref-classes-linux-kernel-base` class provides common functionality for
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001629recipes that build out of the Linux kernel source tree. These builds
1630goes beyond the kernel itself. For example, the Perf recipe also
1631inherits this class.
1632
1633.. _ref-classes-linuxloader:
1634
Andrew Geissler517393d2023-01-13 08:55:19 -06001635``linuxloader``
1636===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001637
1638Provides the function ``linuxloader()``, which gives the value of the
1639dynamic loader/linker provided on the platform. This value is used by a
1640number of other classes.
1641
1642.. _ref-classes-logging:
1643
Andrew Geissler517393d2023-01-13 08:55:19 -06001644``logging``
1645===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001646
Andrew Geissler517393d2023-01-13 08:55:19 -06001647The :ref:`ref-classes-logging` class provides the standard shell functions used to log
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001648messages for various BitBake severity levels (i.e. ``bbplain``,
1649``bbnote``, ``bbwarn``, ``bberror``, ``bbfatal``, and ``bbdebug``).
1650
Andrew Geissler517393d2023-01-13 08:55:19 -06001651This class is enabled by default since it is inherited by the :ref:`ref-classes-base`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001652class.
1653
Andrew Geissler6aa7eec2023-03-03 12:41:14 -06001654.. _ref-classes-meson:
1655
1656``meson``
1657=========
1658
1659The :ref:`ref-classes-meson` class allows to create recipes that build software
1660using the `Meson <https://mesonbuild.com/>`__ build system. You can use
1661the :term:`MESON_BUILDTYPE` and :term:`EXTRA_OEMESON` variables to specify
1662additional configuration options to be passed using the ``meson`` command line.
1663
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001664.. _ref-classes-metadata_scm:
1665
Andrew Geissler517393d2023-01-13 08:55:19 -06001666``metadata_scm``
1667================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001668
Andrew Geissler517393d2023-01-13 08:55:19 -06001669The :ref:`ref-classes-metadata_scm` class provides functionality for querying the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001670branch and revision of a Source Code Manager (SCM) repository.
1671
Andrew Geissler517393d2023-01-13 08:55:19 -06001672The :ref:`ref-classes-base` class uses this class to print the revisions of
1673each layer before starting every build. The :ref:`ref-classes-metadata_scm`
1674class is enabled by default because it is inherited by the
1675:ref:`ref-classes-base` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001676
1677.. _ref-classes-migrate_localcount:
1678
Andrew Geissler517393d2023-01-13 08:55:19 -06001679``migrate_localcount``
1680======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001681
Andrew Geissler517393d2023-01-13 08:55:19 -06001682The :ref:`ref-classes-migrate_localcount` class verifies a recipe's localcount data and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001683increments it appropriately.
1684
1685.. _ref-classes-mime:
1686
Andrew Geissler517393d2023-01-13 08:55:19 -06001687``mime``
1688========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001689
Andrew Geissler517393d2023-01-13 08:55:19 -06001690The :ref:`ref-classes-mime` class generates the proper post-install and post-remove
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001691(postinst/postrm) scriptlets for packages that install MIME type files.
1692These scriptlets call ``update-mime-database`` to add the MIME types to
1693the shared database.
1694
Patrick Williams7784c422022-11-17 07:29:11 -06001695.. _ref-classes-mime-xdg:
1696
Andrew Geissler517393d2023-01-13 08:55:19 -06001697``mime-xdg``
1698============
Patrick Williams7784c422022-11-17 07:29:11 -06001699
Andrew Geissler517393d2023-01-13 08:55:19 -06001700The :ref:`ref-classes-mime-xdg` class generates the proper
Patrick Williams7784c422022-11-17 07:29:11 -06001701post-install and post-remove (postinst/postrm) scriptlets for packages
1702that install ``.desktop`` files containing ``MimeType`` entries.
1703These scriptlets call ``update-desktop-database`` to add the MIME types
1704to the database of MIME types handled by desktop files.
1705
1706Thanks to this class, when users open a file through a file browser
1707on recently created images, they don't have to choose the application
1708to open the file from the pool of all known applications, even the ones
1709that cannot open the selected file.
1710
1711If you have recipes installing their ``.desktop`` files as absolute
1712symbolic links, the detection of such files cannot be done by the current
1713implementation of this class. In this case, you have to add the corresponding
1714package names to the :term:`MIME_XDG_PACKAGES` variable.
1715
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001716.. _ref-classes-mirrors:
1717
Andrew Geissler517393d2023-01-13 08:55:19 -06001718``mirrors``
1719===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001720
Andrew Geissler517393d2023-01-13 08:55:19 -06001721The :ref:`ref-classes-mirrors` class sets up some standard
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001722:term:`MIRRORS` entries for source code mirrors. These
1723mirrors provide a fall-back path in case the upstream source specified
1724in :term:`SRC_URI` within recipes is unavailable.
1725
1726This class is enabled by default since it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06001727:ref:`ref-classes-base` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001728
1729.. _ref-classes-module:
1730
Andrew Geissler517393d2023-01-13 08:55:19 -06001731``module``
1732==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001733
Andrew Geissler517393d2023-01-13 08:55:19 -06001734The :ref:`ref-classes-module` class provides support for building out-of-tree Linux
1735kernel modules. The class inherits the :ref:`ref-classes-module-base` and
1736:ref:`ref-classes-kernel-module-split` classes, and implements the
1737:ref:`ref-tasks-compile` and :ref:`ref-tasks-install` tasks. The class provides
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001738everything needed to build and package a kernel module.
1739
1740For general information on out-of-tree Linux kernel modules, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06001741":ref:`kernel-dev/common:incorporating out-of-tree modules`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001742section in the Yocto Project Linux Kernel Development Manual.
1743
1744.. _ref-classes-module-base:
1745
Andrew Geissler517393d2023-01-13 08:55:19 -06001746``module-base``
1747===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001748
Andrew Geissler517393d2023-01-13 08:55:19 -06001749The :ref:`ref-classes-module-base` class provides the base functionality for
1750building Linux kernel modules. Typically, a recipe that builds software that
1751includes one or more kernel modules and has its own means of building the module
1752inherits this class as opposed to inheriting the :ref:`ref-classes-module`
1753class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001754
1755.. _ref-classes-multilib*:
1756
Andrew Geissler517393d2023-01-13 08:55:19 -06001757``multilib*``
1758=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001759
Andrew Geissler517393d2023-01-13 08:55:19 -06001760The :ref:`ref-classes-multilib*` classes provide support for building libraries with
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001761different target optimizations or target architectures and installing
1762them side-by-side in the same image.
1763
1764For more information on using the Multilib feature, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001765":ref:`dev-manual/libraries:combining multiple versions of library files into one image`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001766section in the Yocto Project Development Tasks Manual.
1767
1768.. _ref-classes-native:
1769
Andrew Geissler517393d2023-01-13 08:55:19 -06001770``native``
1771==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001772
Andrew Geissler517393d2023-01-13 08:55:19 -06001773The :ref:`ref-classes-native` class provides common functionality for recipes that
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001774build tools to run on the :term:`Build Host` (i.e. tools that use the compiler
1775or other tools from the build host).
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001776
1777You can create a recipe that builds tools that run natively on the host
1778a couple different ways:
1779
Andrew Geissler517393d2023-01-13 08:55:19 -06001780- Create a ``myrecipe-native.bb`` recipe that inherits the :ref:`ref-classes-native`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001781 class. If you use this method, you must order the inherit statement
1782 in the recipe after all other inherit statements so that the
Andrew Geissler517393d2023-01-13 08:55:19 -06001783 :ref:`ref-classes-native` class is inherited last.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001784
1785 .. note::
1786
1787 When creating a recipe this way, the recipe name must follow this
Andrew Geisslerc926e172021-05-07 16:11:35 -05001788 naming convention::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001789
1790 myrecipe-native.bb
1791
1792
1793 Not using this naming convention can lead to subtle problems
1794 caused by existing code that depends on that naming convention.
1795
Andrew Geisslerc926e172021-05-07 16:11:35 -05001796- Create or modify a target recipe that contains the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001797
1798 BBCLASSEXTEND = "native"
1799
1800 Inside the
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001801 recipe, use ``:class-native`` and ``:class-target`` overrides to
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001802 specify any functionality specific to the respective native or target
1803 case.
1804
Andrew Geissler517393d2023-01-13 08:55:19 -06001805Although applied differently, the :ref:`ref-classes-native` class is used with both
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001806methods. The advantage of the second method is that you do not need to
1807have two separate recipes (assuming you need both) for native and
1808target. All common parts of the recipe are automatically shared.
1809
1810.. _ref-classes-nativesdk:
1811
Andrew Geissler517393d2023-01-13 08:55:19 -06001812``nativesdk``
1813=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001814
Andrew Geissler517393d2023-01-13 08:55:19 -06001815The :ref:`ref-classes-nativesdk` class provides common functionality for recipes that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001816wish to build tools to run as part of an SDK (i.e. tools that run on
1817:term:`SDKMACHINE`).
1818
1819You can create a recipe that builds tools that run on the SDK machine a
1820couple different ways:
1821
Andrew Geisslereff27472021-10-29 15:35:00 -05001822- Create a ``nativesdk-myrecipe.bb`` recipe that inherits the
Andrew Geissler517393d2023-01-13 08:55:19 -06001823 :ref:`ref-classes-nativesdk` class. If you use this method, you must order the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001824 inherit statement in the recipe after all other inherit statements so
Andrew Geissler517393d2023-01-13 08:55:19 -06001825 that the :ref:`ref-classes-nativesdk` class is inherited last.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001826
Andrew Geissler517393d2023-01-13 08:55:19 -06001827- Create a :ref:`ref-classes-nativesdk` variant of any recipe by adding the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001828
1829 BBCLASSEXTEND = "nativesdk"
1830
1831 Inside the
Patrick Williams0ca19cc2021-08-16 14:03:13 -05001832 recipe, use ``:class-nativesdk`` and ``:class-target`` overrides to
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001833 specify any functionality specific to the respective SDK machine or
1834 target case.
1835
1836.. note::
1837
Andrew Geisslerc926e172021-05-07 16:11:35 -05001838 When creating a recipe, you must follow this naming convention::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001839
1840 nativesdk-myrecipe.bb
1841
1842
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001843 Not doing so can lead to subtle problems because there is code that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001844 depends on the naming convention.
1845
Andrew Geissler517393d2023-01-13 08:55:19 -06001846Although applied differently, the :ref:`ref-classes-nativesdk` class is used with both
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001847methods. The advantage of the second method is that you do not need to
1848have two separate recipes (assuming you need both) for the SDK machine
1849and the target. All common parts of the recipe are automatically shared.
1850
1851.. _ref-classes-nopackages:
1852
Andrew Geissler517393d2023-01-13 08:55:19 -06001853``nopackages``
1854==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001855
1856Disables packaging tasks for those recipes and classes where packaging
1857is not needed.
1858
1859.. _ref-classes-npm:
1860
Andrew Geissler517393d2023-01-13 08:55:19 -06001861``npm``
1862=======
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001863
Patrick Williams7784c422022-11-17 07:29:11 -06001864Provides support for building Node.js software fetched using the
1865:wikipedia:`node package manager (NPM) <Npm_(software)>`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001866
1867.. note::
1868
Andrew Geissler4c19ea12020-10-27 13:52:24 -05001869 Currently, recipes inheriting this class must use the ``npm://``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001870 fetcher to have dependencies fetched and packaged automatically.
1871
1872For information on how to create NPM packages, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06001873":ref:`dev-manual/packages:creating node package manager (npm) packages`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001874section in the Yocto Project Development Tasks Manual.
1875
1876.. _ref-classes-oelint:
1877
Andrew Geissler517393d2023-01-13 08:55:19 -06001878``oelint``
1879==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001880
Andrew Geissler517393d2023-01-13 08:55:19 -06001881The :ref:`ref-classes-oelint` class is an obsolete lint checking tool available in
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001882``meta/classes`` in the :term:`Source Directory`.
1883
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001884There are some classes that could be generally useful in OE-Core but
Andrew Geissler517393d2023-01-13 08:55:19 -06001885are never actually used within OE-Core itself. The :ref:`ref-classes-oelint` class is
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001886one such example. However, being aware of this class can reduce the
1887proliferation of different versions of similar classes across multiple
1888layers.
1889
Andrew Geissler5199d832021-09-24 16:47:35 -05001890.. _ref-classes-overlayfs:
1891
Andrew Geissler517393d2023-01-13 08:55:19 -06001892``overlayfs``
1893=============
Andrew Geissler5199d832021-09-24 16:47:35 -05001894
Andrew Geissler595f6302022-01-24 19:11:47 +00001895It's often desired in Embedded System design to have a read-only root filesystem.
Andrew Geissler5199d832021-09-24 16:47:35 -05001896But a lot of different applications might want to have read-write access to
1897some parts of a filesystem. It can be especially useful when your update mechanism
Andrew Geissler595f6302022-01-24 19:11:47 +00001898overwrites the whole root filesystem, but you may want your application data to be preserved
Andrew Geissler517393d2023-01-13 08:55:19 -06001899between updates. The :ref:`ref-classes-overlayfs` class provides a way
Andrew Geissler5199d832021-09-24 16:47:35 -05001900to achieve that by means of ``overlayfs`` and at the same time keeping the base
Andrew Geissler595f6302022-01-24 19:11:47 +00001901root filesystem read-only.
Andrew Geissler5199d832021-09-24 16:47:35 -05001902
1903To use this class, set a mount point for a partition ``overlayfs`` is going to use as upper
1904layer in your machine configuration. The underlying file system can be anything that
1905is supported by ``overlayfs``. This has to be done in your machine configuration::
1906
1907 OVERLAYFS_MOUNT_POINT[data] = "/data"
1908
1909.. note::
1910
1911 * QA checks fail to catch file existence if you redefine this variable in your recipe!
1912 * Only the existence of the systemd mount unit file is checked, not its contents.
1913 * To get more details on ``overlayfs``, its internals and supported operations, please refer
Patrick Williams2390b1b2022-11-03 13:47:49 -05001914 to the official documentation of the `Linux kernel <https://www.kernel.org/doc/html/latest/filesystems/overlayfs.html>`__.
Andrew Geissler5199d832021-09-24 16:47:35 -05001915
1916The class assumes you have a ``data.mount`` systemd unit defined elsewhere in your BSP
1917(e.g. in ``systemd-machine-units`` recipe) and it's installed into the image.
1918
1919Then you can specify writable directories on a recipe basis (e.g. in my-application.bb)::
1920
1921 OVERLAYFS_WRITABLE_PATHS[data] = "/usr/share/my-custom-application"
1922
1923To support several mount points you can use a different variable flag. Assuming we
1924want to have a writable location on the file system, but do not need that the data
Andrew Geissler595f6302022-01-24 19:11:47 +00001925survives a reboot, then we could have a ``mnt-overlay.mount`` unit for a ``tmpfs``
1926file system.
Andrew Geissler5199d832021-09-24 16:47:35 -05001927
1928In your machine configuration::
1929
1930 OVERLAYFS_MOUNT_POINT[mnt-overlay] = "/mnt/overlay"
1931
1932and then in your recipe::
1933
1934 OVERLAYFS_WRITABLE_PATHS[mnt-overlay] = "/usr/share/another-application"
1935
Andrew Geissler595f6302022-01-24 19:11:47 +00001936On a practical note, your application recipe might require multiple
1937overlays to be mounted before running to avoid writing to the underlying
1938file system (which can be forbidden in case of read-only file system)
Andrew Geissler517393d2023-01-13 08:55:19 -06001939To achieve that :ref:`ref-classes-overlayfs` provides a ``systemd``
Andrew Geissler595f6302022-01-24 19:11:47 +00001940helper service for mounting overlays. This helper service is named
1941``${PN}-overlays.service`` and can be depended on in your application recipe
1942(named ``application`` in the following example) ``systemd`` unit by adding
1943to the unit the following::
1944
1945 [Unit]
1946 After=application-overlays.service
1947 Requires=application-overlays.service
1948
Andrew Geissler5199d832021-09-24 16:47:35 -05001949.. note::
1950
1951 The class does not support the ``/etc`` directory itself, because ``systemd`` depends on it.
Andrew Geissler517393d2023-01-13 08:55:19 -06001952 In order to get ``/etc`` in overlayfs, see :ref:`ref-classes-overlayfs-etc`.
Andrew Geissler595f6302022-01-24 19:11:47 +00001953
1954.. _ref-classes-overlayfs-etc:
1955
Andrew Geissler517393d2023-01-13 08:55:19 -06001956``overlayfs-etc``
1957=================
Andrew Geissler595f6302022-01-24 19:11:47 +00001958
1959In order to have the ``/etc`` directory in overlayfs a special handling at early
1960boot stage is required. The idea is to supply a custom init script that mounts
1961``/etc`` before launching the actual init program, because the latter already
1962requires ``/etc`` to be mounted.
1963
1964Example usage in image recipe::
1965
1966 IMAGE_FEATURES += "overlayfs-etc"
1967
1968.. note::
1969
1970 This class must not be inherited directly. Use :term:`IMAGE_FEATURES` or :term:`EXTRA_IMAGE_FEATURES`
1971
1972Your machine configuration should define at least the device, mount point, and file system type
1973you are going to use for ``overlayfs``::
1974
1975 OVERLAYFS_ETC_MOUNT_POINT = "/data"
1976 OVERLAYFS_ETC_DEVICE = "/dev/mmcblk0p2"
1977 OVERLAYFS_ETC_FSTYPE ?= "ext4"
1978
1979To control more mount options you should consider setting mount options
1980(``defaults`` is used by default)::
1981
1982 OVERLAYFS_ETC_MOUNT_OPTIONS = "wsync"
1983
1984The class provides two options for ``/sbin/init`` generation:
1985
1986- The default option is to rename the original ``/sbin/init`` to ``/sbin/init.orig``
1987 and place the generated init under original name, i.e. ``/sbin/init``. It has an advantage
1988 that you won't need to change any kernel parameters in order to make it work,
1989 but it poses a restriction that package-management can't be used, because updating
1990 the init manager would remove the generated script.
1991
1992- If you wish to keep original init as is, you can set::
1993
1994 OVERLAYFS_ETC_USE_ORIG_INIT_NAME = "0"
1995
1996 Then the generated init will be named ``/sbin/preinit`` and you would need to extend your
1997 kernel parameters manually in your bootloader configuration.
Andrew Geissler5199d832021-09-24 16:47:35 -05001998
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001999.. _ref-classes-own-mirrors:
2000
Andrew Geissler517393d2023-01-13 08:55:19 -06002001``own-mirrors``
2002===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002003
Andrew Geissler517393d2023-01-13 08:55:19 -06002004The :ref:`ref-classes-own-mirrors` class makes it easier to set up your own
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002005:term:`PREMIRRORS` from which to first fetch source
2006before attempting to fetch it from the upstream specified in
2007:term:`SRC_URI` within each recipe.
2008
2009To use this class, inherit it globally and specify
Andrew Geisslerc926e172021-05-07 16:11:35 -05002010:term:`SOURCE_MIRROR_URL`. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002011
2012 INHERIT += "own-mirrors"
2013 SOURCE_MIRROR_URL = "http://example.com/my-source-mirror"
2014
2015You can specify only a single URL
Andrew Geissler09036742021-06-25 14:25:14 -05002016in :term:`SOURCE_MIRROR_URL`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002017
2018.. _ref-classes-package:
2019
Andrew Geissler517393d2023-01-13 08:55:19 -06002020``package``
2021===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002022
Andrew Geissler517393d2023-01-13 08:55:19 -06002023The :ref:`ref-classes-package` class supports generating packages from a build's
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002024output. The core generic functionality is in ``package.bbclass``. The
2025code specific to particular package types resides in these
Andrew Geissler517393d2023-01-13 08:55:19 -06002026package-specific classes: :ref:`ref-classes-package_deb`,
2027:ref:`ref-classes-package_rpm`, :ref:`ref-classes-package_ipk`, and
2028:ref:`ref-classes-package_tar`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002029
2030.. note::
2031
Andrew Geissler517393d2023-01-13 08:55:19 -06002032 The :ref:`ref-classes-package_tar` class is broken and
Patrick Williams2390b1b2022-11-03 13:47:49 -05002033 not supported. It is recommended that you do not use this class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002034
2035You can control the list of resulting package formats by using the
Andrew Geissler09036742021-06-25 14:25:14 -05002036:term:`PACKAGE_CLASSES` variable defined in your ``conf/local.conf``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002037configuration file, which is located in the :term:`Build Directory`.
Patrick Williams2390b1b2022-11-03 13:47:49 -05002038When defining the variable, you can specify one or more package types.
2039Since images are generated from packages, a packaging class is needed
2040to enable image generation. The first class listed in this variable is
2041used for image generation.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002042
2043If you take the optional step to set up a repository (package feed) on
2044the development host that can be used by DNF, you can install packages
2045from the feed while you are running the image on the target (i.e.
2046runtime installation of packages). For more information, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06002047":ref:`dev-manual/packages:using runtime package management`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002048section in the Yocto Project Development Tasks Manual.
2049
2050The package-specific class you choose can affect build-time performance
2051and has space ramifications. In general, building a package with IPK
2052takes about thirty percent less time as compared to using RPM to build
2053the same or similar package. This comparison takes into account a
2054complete build of the package with all dependencies previously built.
2055The reason for this discrepancy is because the RPM package manager
2056creates and processes more :term:`Metadata` than the IPK package
Andrew Geissler09036742021-06-25 14:25:14 -05002057manager. Consequently, you might consider setting :term:`PACKAGE_CLASSES` to
Andrew Geissler517393d2023-01-13 08:55:19 -06002058":ref:`ref-classes-package_ipk`" if you are building smaller systems.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002059
2060Before making your package manager decision, however, you should
2061consider some further things about using RPM:
2062
2063- RPM starts to provide more abilities than IPK due to the fact that it
2064 processes more Metadata. For example, this information includes
2065 individual file types, file checksum generation and evaluation on
2066 install, sparse file support, conflict detection and resolution for
2067 Multilib systems, ACID style upgrade, and repackaging abilities for
2068 rollbacks.
2069
2070- For smaller systems, the extra space used for the Berkeley Database
2071 and the amount of metadata when using RPM can affect your ability to
2072 perform on-device upgrades.
2073
2074You can find additional information on the effects of the package class
2075at these two Yocto Project mailing list links:
2076
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002077- :yocto_lists:`/pipermail/poky/2011-May/006362.html`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002078
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002079- :yocto_lists:`/pipermail/poky/2011-May/006363.html`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002080
2081.. _ref-classes-package_deb:
2082
Andrew Geissler517393d2023-01-13 08:55:19 -06002083``package_deb``
2084===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002085
Andrew Geissler517393d2023-01-13 08:55:19 -06002086The :ref:`ref-classes-package_deb` class provides support for creating packages that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002087use the Debian (i.e. ``.deb``) file format. The class ensures the
2088packages are written out in a ``.deb`` file format to the
2089``${``\ :term:`DEPLOY_DIR_DEB`\ ``}`` directory.
2090
Andrew Geissler517393d2023-01-13 08:55:19 -06002091This class inherits the :ref:`ref-classes-package` class and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002092is enabled through the :term:`PACKAGE_CLASSES`
2093variable in the ``local.conf`` file.
2094
2095.. _ref-classes-package_ipk:
2096
Andrew Geissler517393d2023-01-13 08:55:19 -06002097``package_ipk``
2098===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002099
Andrew Geissler517393d2023-01-13 08:55:19 -06002100The :ref:`ref-classes-package_ipk` class provides support for creating packages that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002101use the IPK (i.e. ``.ipk``) file format. The class ensures the packages
2102are written out in a ``.ipk`` file format to the
2103``${``\ :term:`DEPLOY_DIR_IPK`\ ``}`` directory.
2104
Andrew Geissler517393d2023-01-13 08:55:19 -06002105This class inherits the :ref:`ref-classes-package` class and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002106is enabled through the :term:`PACKAGE_CLASSES`
2107variable in the ``local.conf`` file.
2108
2109.. _ref-classes-package_rpm:
2110
Andrew Geissler517393d2023-01-13 08:55:19 -06002111``package_rpm``
2112===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002113
Andrew Geissler517393d2023-01-13 08:55:19 -06002114The :ref:`ref-classes-package_rpm` class provides support for creating packages that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002115use the RPM (i.e. ``.rpm``) file format. The class ensures the packages
2116are written out in a ``.rpm`` file format to the
2117``${``\ :term:`DEPLOY_DIR_RPM`\ ``}`` directory.
2118
Andrew Geissler517393d2023-01-13 08:55:19 -06002119This class inherits the :ref:`ref-classes-package` class and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002120is enabled through the :term:`PACKAGE_CLASSES`
2121variable in the ``local.conf`` file.
2122
2123.. _ref-classes-package_tar:
2124
Andrew Geissler517393d2023-01-13 08:55:19 -06002125``package_tar``
2126===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002127
Andrew Geissler517393d2023-01-13 08:55:19 -06002128The :ref:`ref-classes-package_tar` class provides support for creating tarballs. The
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002129class ensures the packages are written out in a tarball format to the
2130``${``\ :term:`DEPLOY_DIR_TAR`\ ``}`` directory.
2131
Andrew Geissler517393d2023-01-13 08:55:19 -06002132This class inherits the :ref:`ref-classes-package` class and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002133is enabled through the :term:`PACKAGE_CLASSES`
2134variable in the ``local.conf`` file.
2135
2136.. note::
2137
Andrew Geissler517393d2023-01-13 08:55:19 -06002138 You cannot specify the :ref:`ref-classes-package_tar` class first using the
Andrew Geissler09036742021-06-25 14:25:14 -05002139 :term:`PACKAGE_CLASSES` variable. You must use ``.deb``, ``.ipk``, or ``.rpm``
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002140 file formats for your image or SDK.
2141
2142.. _ref-classes-packagedata:
2143
Andrew Geissler517393d2023-01-13 08:55:19 -06002144``packagedata``
2145===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002146
Andrew Geissler517393d2023-01-13 08:55:19 -06002147The :ref:`ref-classes-packagedata` class provides common functionality for reading
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002148``pkgdata`` files found in :term:`PKGDATA_DIR`. These
2149files contain information about each output package produced by the
2150OpenEmbedded build system.
2151
2152This class is enabled by default because it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06002153:ref:`ref-classes-package` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002154
2155.. _ref-classes-packagegroup:
2156
Andrew Geissler517393d2023-01-13 08:55:19 -06002157``packagegroup``
2158================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002159
Andrew Geissler517393d2023-01-13 08:55:19 -06002160The :ref:`ref-classes-packagegroup` class sets default values appropriate for package
Andrew Geissler09036742021-06-25 14:25:14 -05002161group recipes (e.g. :term:`PACKAGES`, :term:`PACKAGE_ARCH`, :term:`ALLOW_EMPTY`, and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002162so forth). It is highly recommended that all package group recipes
2163inherit this class.
2164
2165For information on how to use this class, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06002166":ref:`dev-manual/customizing-images:customizing images using custom package groups`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002167section in the Yocto Project Development Tasks Manual.
2168
2169Previously, this class was called the ``task`` class.
2170
2171.. _ref-classes-patch:
2172
Andrew Geissler517393d2023-01-13 08:55:19 -06002173``patch``
2174=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002175
Andrew Geissler517393d2023-01-13 08:55:19 -06002176The :ref:`ref-classes-patch` class provides all functionality for applying patches
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002177during the :ref:`ref-tasks-patch` task.
2178
2179This class is enabled by default because it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06002180:ref:`ref-classes-base` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002181
2182.. _ref-classes-perlnative:
2183
Andrew Geissler517393d2023-01-13 08:55:19 -06002184``perlnative``
2185==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002186
Andrew Geissler517393d2023-01-13 08:55:19 -06002187When inherited by a recipe, the :ref:`ref-classes-perlnative` class supports using the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002188native version of Perl built by the build system rather than using the
2189version provided by the build host.
2190
Patrick Williams975a06f2022-10-21 14:42:47 -05002191.. _ref-classes-pypi:
2192
Andrew Geissler517393d2023-01-13 08:55:19 -06002193``pypi``
2194========
Patrick Williams975a06f2022-10-21 14:42:47 -05002195
Andrew Geissler517393d2023-01-13 08:55:19 -06002196The :ref:`ref-classes-pypi` class sets variables appropriately for recipes that build
Patrick Williams975a06f2022-10-21 14:42:47 -05002197Python modules from `PyPI <https://pypi.org/>`__, the Python Package Index.
2198By default it determines the PyPI package name based upon :term:`BPN`
2199(stripping the "python-" or "python3-" prefix off if present), however in
2200some cases you may need to set it manually in the recipe by setting
2201:term:`PYPI_PACKAGE`.
2202
Andrew Geissler517393d2023-01-13 08:55:19 -06002203Variables set by the :ref:`ref-classes-pypi` class include :term:`SRC_URI`, :term:`SECTION`,
Patrick Williams975a06f2022-10-21 14:42:47 -05002204:term:`HOMEPAGE`, :term:`UPSTREAM_CHECK_URI`, :term:`UPSTREAM_CHECK_REGEX`
2205and :term:`CVE_PRODUCT`.
2206
Patrick Williams45852732022-04-02 08:58:32 -05002207.. _ref-classes-python_flit_core:
2208
Andrew Geissler517393d2023-01-13 08:55:19 -06002209``python_flit_core``
2210====================
Patrick Williams45852732022-04-02 08:58:32 -05002211
Andrew Geissler517393d2023-01-13 08:55:19 -06002212The :ref:`ref-classes-python_flit_core` class enables building Python modules which declare
Patrick Williams45852732022-04-02 08:58:32 -05002213the `PEP-517 <https://www.python.org/dev/peps/pep-0517/>`__ compliant
2214``flit_core.buildapi`` ``build-backend`` in the ``[build-system]``
2215section of ``pyproject.toml`` (See `PEP-518 <https://www.python.org/dev/peps/pep-0518/>`__).
2216
2217Python modules built with ``flit_core.buildapi`` are pure Python (no
2218``C`` or ``Rust`` extensions).
2219
Andrew Geissler517393d2023-01-13 08:55:19 -06002220Internally this uses the :ref:`ref-classes-python_pep517` class.
Patrick Williams45852732022-04-02 08:58:32 -05002221
Andrew Geissler9aee5002022-03-30 16:27:02 +00002222.. _ref-classes-python_pep517:
2223
Andrew Geissler517393d2023-01-13 08:55:19 -06002224``python_pep517``
2225=================
Andrew Geissler9aee5002022-03-30 16:27:02 +00002226
Andrew Geissler517393d2023-01-13 08:55:19 -06002227The :ref:`ref-classes-python_pep517` class builds and installs a Python ``wheel`` binary
Patrick Williams45852732022-04-02 08:58:32 -05002228archive (see `PEP-517 <https://peps.python.org/pep-0517/>`__).
Andrew Geissler9aee5002022-03-30 16:27:02 +00002229
Patrick Williams45852732022-04-02 08:58:32 -05002230Recipes wouldn't inherit this directly, instead typically another class will
Andrew Geissler615f2f12022-07-15 14:00:58 -05002231inherit this and add the relevant native dependencies.
Andrew Geissler9aee5002022-03-30 16:27:02 +00002232
Andrew Geissler517393d2023-01-13 08:55:19 -06002233Examples of classes which do this are :ref:`ref-classes-python_flit_core`,
2234:ref:`ref-classes-python_setuptools_build_meta`, and
2235:ref:`ref-classes-python_poetry_core`.
Patrick Williams45852732022-04-02 08:58:32 -05002236
2237.. _ref-classes-python_poetry_core:
2238
Andrew Geissler517393d2023-01-13 08:55:19 -06002239``python_poetry_core``
2240======================
Patrick Williams45852732022-04-02 08:58:32 -05002241
Andrew Geissler517393d2023-01-13 08:55:19 -06002242The :ref:`ref-classes-python_poetry_core` class enables building Python modules which use the
Patrick Williams45852732022-04-02 08:58:32 -05002243`Poetry Core <https://python-poetry.org>`__ build system.
2244
Andrew Geissler517393d2023-01-13 08:55:19 -06002245Internally this uses the :ref:`ref-classes-python_pep517` class.
Andrew Geissler9aee5002022-03-30 16:27:02 +00002246
Andrew Geissler6aa7eec2023-03-03 12:41:14 -06002247.. _ref-classes-python_pyo3:
2248
2249``python_pyo3``
2250===============
2251
2252The :ref:`ref-classes-python_pyo3` class helps make sure that Python extensions
2253written in Rust and built with `PyO3 <https://pyo3.rs/>`__, properly set up the
2254environment for cross compilation.
2255
2256This class is internal to the :ref:`ref-classes-python-setuptools3_rust` class
2257and is not meant to be used directly in recipes.
2258
2259.. _ref-classes-python-setuptools3_rust:
2260
2261``python-setuptools3_rust``
2262===========================
2263
2264The :ref:`ref-classes-python-setuptools3_rust` class enables building Python
2265extensions implemented in Rust with `PyO3 <https://pyo3.rs/>`__, which allows
2266to compile and distribute Python extensions written in Rust as easily
2267as if they were written in C.
2268
2269This class inherits the :ref:`ref-classes-setuptools3` and
2270:ref:`ref-classes-python_pyo3` classes.
2271
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002272.. _ref-classes-pixbufcache:
2273
Andrew Geissler517393d2023-01-13 08:55:19 -06002274``pixbufcache``
2275===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002276
Andrew Geissler517393d2023-01-13 08:55:19 -06002277The :ref:`ref-classes-pixbufcache` class generates the proper post-install and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002278post-remove (postinst/postrm) scriptlets for packages that install
2279pixbuf loaders, which are used with ``gdk-pixbuf``. These scriptlets
2280call ``update_pixbuf_cache`` to add the pixbuf loaders to the cache.
2281Since the cache files are architecture-specific, ``update_pixbuf_cache``
2282is run using QEMU if the postinst scriptlets need to be run on the build
2283host during image creation.
2284
2285If the pixbuf loaders being installed are in packages other than the
2286recipe's main package, set
2287:term:`PIXBUF_PACKAGES` to specify the packages
2288containing the loaders.
2289
2290.. _ref-classes-pkgconfig:
2291
Andrew Geissler517393d2023-01-13 08:55:19 -06002292``pkgconfig``
2293=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002294
Andrew Geissler517393d2023-01-13 08:55:19 -06002295The :ref:`ref-classes-pkgconfig` class provides a standard way to get header and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002296library information by using ``pkg-config``. This class aims to smooth
2297integration of ``pkg-config`` into libraries that use it.
2298
2299During staging, BitBake installs ``pkg-config`` data into the
2300``sysroots/`` directory. By making use of sysroot functionality within
Andrew Geissler517393d2023-01-13 08:55:19 -06002301``pkg-config``, the :ref:`ref-classes-pkgconfig` class no longer has to manipulate the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002302files.
2303
2304.. _ref-classes-populate-sdk:
2305
Andrew Geissler517393d2023-01-13 08:55:19 -06002306``populate_sdk``
2307================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002308
Andrew Geissler517393d2023-01-13 08:55:19 -06002309The :ref:`ref-classes-populate-sdk` class provides support for SDK-only recipes. For
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002310information on advantages gained when building a cross-development
2311toolchain using the :ref:`ref-tasks-populate_sdk`
Andrew Geissler09209ee2020-12-13 08:44:15 -06002312task, see the ":ref:`sdk-manual/appendix-obtain:building an sdk installer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002313section in the Yocto Project Application Development and the Extensible
2314Software Development Kit (eSDK) manual.
2315
2316.. _ref-classes-populate-sdk-*:
2317
Andrew Geissler517393d2023-01-13 08:55:19 -06002318``populate_sdk_*``
2319==================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002320
Andrew Geissler517393d2023-01-13 08:55:19 -06002321The :ref:`ref-classes-populate-sdk-*` classes support SDK creation and consist of the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002322following classes:
2323
Patrick Williams2390b1b2022-11-03 13:47:49 -05002324- :ref:`populate_sdk_base <ref-classes-populate-sdk-*>`: The base class supporting SDK creation under
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002325 all package managers (i.e. DEB, RPM, and opkg).
2326
Patrick Williams2390b1b2022-11-03 13:47:49 -05002327- :ref:`populate_sdk_deb <ref-classes-populate-sdk-*>`: Supports creation of the SDK given the Debian
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002328 package manager.
2329
Patrick Williams2390b1b2022-11-03 13:47:49 -05002330- :ref:`populate_sdk_rpm <ref-classes-populate-sdk-*>`: Supports creation of the SDK given the RPM
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002331 package manager.
2332
Patrick Williams2390b1b2022-11-03 13:47:49 -05002333- :ref:`populate_sdk_ipk <ref-classes-populate-sdk-*>`: Supports creation of the SDK given the opkg
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002334 (IPK format) package manager.
2335
Patrick Williams2390b1b2022-11-03 13:47:49 -05002336- :ref:`populate_sdk_ext <ref-classes-populate-sdk-*>`: Supports extensible SDK creation under all
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002337 package managers.
2338
Patrick Williams2390b1b2022-11-03 13:47:49 -05002339The :ref:`populate_sdk_base <ref-classes-populate-sdk-*>` class inherits the appropriate
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002340``populate_sdk_*`` (i.e. ``deb``, ``rpm``, and ``ipk``) based on
2341:term:`IMAGE_PKGTYPE`.
2342
2343The base class ensures all source and destination directories are
2344established and then populates the SDK. After populating the SDK, the
Patrick Williams2390b1b2022-11-03 13:47:49 -05002345:ref:`populate_sdk_base <ref-classes-populate-sdk-*>` class constructs two sysroots:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002346``${``\ :term:`SDK_ARCH`\ ``}-nativesdk``, which
2347contains the cross-compiler and associated tooling, and the target,
2348which contains a target root filesystem that is configured for the SDK
2349usage. These two images reside in :term:`SDK_OUTPUT`,
Andrew Geisslerc926e172021-05-07 16:11:35 -05002350which consists of the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002351
2352 ${SDK_OUTPUT}/${SDK_ARCH}-nativesdk-pkgs
2353 ${SDK_OUTPUT}/${SDKTARGETSYSROOT}/target-pkgs
2354
2355Finally, the base populate SDK class creates the toolchain environment
2356setup script, the tarball of the SDK, and the installer.
2357
Patrick Williams2390b1b2022-11-03 13:47:49 -05002358The respective :ref:`populate_sdk_deb <ref-classes-populate-sdk-*>`, :ref:`populate_sdk_rpm <ref-classes-populate-sdk-*>`, and
2359:ref:`populate_sdk_ipk <ref-classes-populate-sdk-*>` classes each support the specific type of SDK.
2360These classes are inherited by and used with the :ref:`populate_sdk_base <ref-classes-populate-sdk-*>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002361class.
2362
2363For more information on the cross-development toolchain generation, see
Andrew Geissler09209ee2020-12-13 08:44:15 -06002364the ":ref:`overview-manual/concepts:cross-development toolchain generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002365section in the Yocto Project Overview and Concepts Manual. For
2366information on advantages gained when building a cross-development
2367toolchain using the :ref:`ref-tasks-populate_sdk`
2368task, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06002369":ref:`sdk-manual/appendix-obtain:building an sdk installer`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002370section in the Yocto Project Application Development and the Extensible
2371Software Development Kit (eSDK) manual.
2372
2373.. _ref-classes-prexport:
2374
Andrew Geissler517393d2023-01-13 08:55:19 -06002375``prexport``
2376============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002377
Andrew Geissler517393d2023-01-13 08:55:19 -06002378The :ref:`ref-classes-prexport` class provides functionality for exporting
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002379:term:`PR` values.
2380
2381.. note::
2382
2383 This class is not intended to be used directly. Rather, it is enabled
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002384 when using "``bitbake-prserv-tool export``".
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002385
2386.. _ref-classes-primport:
2387
Andrew Geissler517393d2023-01-13 08:55:19 -06002388``primport``
2389============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002390
Andrew Geissler517393d2023-01-13 08:55:19 -06002391The :ref:`ref-classes-primport` class provides functionality for importing
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002392:term:`PR` values.
2393
2394.. note::
2395
2396 This class is not intended to be used directly. Rather, it is enabled
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002397 when using "``bitbake-prserv-tool import``".
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002398
2399.. _ref-classes-prserv:
2400
Andrew Geissler517393d2023-01-13 08:55:19 -06002401``prserv``
2402==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002403
Andrew Geissler517393d2023-01-13 08:55:19 -06002404The :ref:`ref-classes-prserv` class provides functionality for using a :ref:`PR
2405service <dev-manual/packages:working with a pr service>` in order to
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002406automatically manage the incrementing of the :term:`PR`
2407variable for each recipe.
2408
2409This class is enabled by default because it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06002410:ref:`ref-classes-package` class. However, the OpenEmbedded
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002411build system will not enable the functionality of this class unless
2412:term:`PRSERV_HOST` has been set.
2413
2414.. _ref-classes-ptest:
2415
Andrew Geissler517393d2023-01-13 08:55:19 -06002416``ptest``
2417=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002418
Andrew Geissler517393d2023-01-13 08:55:19 -06002419The :ref:`ref-classes-ptest` class provides functionality for packaging and installing
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002420runtime tests for recipes that build software that provides these tests.
2421
2422This class is intended to be inherited by individual recipes. However,
2423the class' functionality is largely disabled unless "ptest" appears in
2424:term:`DISTRO_FEATURES`. See the
Andrew Geissler517393d2023-01-13 08:55:19 -06002425":ref:`dev-manual/packages:testing packages with ptest`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002426section in the Yocto Project Development Tasks Manual for more information
2427on ptest.
2428
2429.. _ref-classes-ptest-gnome:
2430
Andrew Geissler517393d2023-01-13 08:55:19 -06002431``ptest-gnome``
2432===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002433
2434Enables package tests (ptests) specifically for GNOME packages, which
2435have tests intended to be executed with ``gnome-desktop-testing``.
2436
2437For information on setting up and running ptests, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06002438":ref:`dev-manual/packages:testing packages with ptest`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002439section in the Yocto Project Development Tasks Manual.
2440
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05002441.. _ref-classes-python3-dir:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002442
Andrew Geissler517393d2023-01-13 08:55:19 -06002443``python3-dir``
2444===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002445
Andrew Geissler517393d2023-01-13 08:55:19 -06002446The :ref:`ref-classes-python3-dir` class provides the base version, location, and site
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05002447package location for Python 3.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002448
2449.. _ref-classes-python3native:
2450
Andrew Geissler517393d2023-01-13 08:55:19 -06002451``python3native``
2452=================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002453
Andrew Geissler517393d2023-01-13 08:55:19 -06002454The :ref:`ref-classes-python3native` class supports using the native version of Python
Andrew Geisslerc9f78652020-09-18 14:11:35 -050024553 built by the build system rather than support of the version provided
2456by the build host.
2457
Andrew Geissler3b8a17c2021-04-15 15:55:55 -05002458.. _ref-classes-python3targetconfig:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002459
Andrew Geissler517393d2023-01-13 08:55:19 -06002460``python3targetconfig``
2461=======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002462
Andrew Geissler517393d2023-01-13 08:55:19 -06002463The :ref:`ref-classes-python3targetconfig` class supports using the native version of Python
Andrew Geissler3b8a17c2021-04-15 15:55:55 -050024643 built by the build system rather than support of the version provided
2465by the build host, except that the configuration for the target machine
2466is accessible (such as correct installation directories). This also adds a
2467dependency on target ``python3``, so should only be used where appropriate
2468in order to avoid unnecessarily lengthening builds.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002469
2470.. _ref-classes-qemu:
2471
Andrew Geissler517393d2023-01-13 08:55:19 -06002472``qemu``
2473========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002474
Andrew Geissler517393d2023-01-13 08:55:19 -06002475The :ref:`ref-classes-qemu` class provides functionality for recipes that either need
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002476QEMU or test for the existence of QEMU. Typically, this class is used to
2477run programs for a target system on the build host using QEMU's
2478application emulation mode.
2479
2480.. _ref-classes-recipe_sanity:
2481
Andrew Geissler517393d2023-01-13 08:55:19 -06002482``recipe_sanity``
2483=================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002484
Andrew Geissler517393d2023-01-13 08:55:19 -06002485The :ref:`ref-classes-recipe_sanity` class checks for the presence of any host system
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002486recipe prerequisites that might affect the build (e.g. variables that
2487are set or software that is present).
2488
2489.. _ref-classes-relocatable:
2490
Andrew Geissler517393d2023-01-13 08:55:19 -06002491``relocatable``
2492===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002493
Andrew Geissler517393d2023-01-13 08:55:19 -06002494The :ref:`ref-classes-relocatable` class enables relocation of binaries when they are
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002495installed into the sysroot.
2496
Andrew Geissler517393d2023-01-13 08:55:19 -06002497This class makes use of the :ref:`ref-classes-chrpath` class and is used by
2498both the :ref:`ref-classes-cross` and :ref:`ref-classes-native` classes.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002499
2500.. _ref-classes-remove-libtool:
2501
Andrew Geissler517393d2023-01-13 08:55:19 -06002502``remove-libtool``
2503==================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002504
Andrew Geissler517393d2023-01-13 08:55:19 -06002505The :ref:`ref-classes-remove-libtool` class adds a post function to the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002506:ref:`ref-tasks-install` task to remove all ``.la`` files
2507installed by ``libtool``. Removing these files results in them being
2508absent from both the sysroot and target packages.
2509
2510If a recipe needs the ``.la`` files to be installed, then the recipe can
Andrew Geisslerc926e172021-05-07 16:11:35 -05002511override the removal by setting ``REMOVE_LIBTOOL_LA`` to "0" as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002512
2513 REMOVE_LIBTOOL_LA = "0"
2514
2515.. note::
2516
Andrew Geissler517393d2023-01-13 08:55:19 -06002517 The :ref:`ref-classes-remove-libtool` class is not enabled by default.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002518
2519.. _ref-classes-report-error:
2520
Andrew Geissler517393d2023-01-13 08:55:19 -06002521``report-error``
2522================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002523
Andrew Geissler517393d2023-01-13 08:55:19 -06002524The :ref:`ref-classes-report-error` class supports enabling the :ref:`error reporting
2525tool <dev-manual/error-reporting-tool:using the error reporting tool>`",
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002526which allows you to submit build error information to a central database.
2527
2528The class collects debug information for recipe, recipe version, task,
2529machine, distro, build system, target system, host distro, branch,
2530commit, and log. From the information, report files using a JSON format
2531are created and stored in
2532``${``\ :term:`LOG_DIR`\ ``}/error-report``.
2533
2534.. _ref-classes-rm-work:
2535
Andrew Geissler517393d2023-01-13 08:55:19 -06002536``rm_work``
2537===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002538
Andrew Geissler517393d2023-01-13 08:55:19 -06002539The :ref:`ref-classes-rm-work` class supports deletion of temporary workspace, which
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002540can ease your hard drive demands during builds.
2541
2542The OpenEmbedded build system can use a substantial amount of disk space
2543during the build process. A portion of this space is the work files
2544under the ``${TMPDIR}/work`` directory for each recipe. Once the build
2545system generates the packages for a recipe, the work files for that
2546recipe are no longer needed. However, by default, the build system
2547preserves these files for inspection and possible debugging purposes. If
Andrew Geissler517393d2023-01-13 08:55:19 -06002548you would rather have these files deleted to save disk space as the build
2549progresses, you can enable :ref:`ref-classes-rm-work` by adding the following to
Patrick Williams2390b1b2022-11-03 13:47:49 -05002550your ``local.conf`` file, which is found in the :term:`Build Directory`::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002551
2552 INHERIT += "rm_work"
2553
Andrew Geissler517393d2023-01-13 08:55:19 -06002554If you are modifying and building source code out of the work directory for a
2555recipe, enabling :ref:`ref-classes-rm-work` will potentially result in your
2556changes to the source being lost. To exclude some recipes from having their work
2557directories deleted by :ref:`ref-classes-rm-work`, you can add the names of the
2558recipe or recipes you are working on to the :term:`RM_WORK_EXCLUDE` variable,
2559which can also be set in your ``local.conf`` file. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002560
2561 RM_WORK_EXCLUDE += "busybox glibc"
2562
2563.. _ref-classes-rootfs*:
2564
Andrew Geissler517393d2023-01-13 08:55:19 -06002565``rootfs*``
2566===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002567
Andrew Geissler517393d2023-01-13 08:55:19 -06002568The :ref:`ref-classes-rootfs*` classes support creating the root filesystem for an
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002569image and consist of the following classes:
2570
Patrick Williams2390b1b2022-11-03 13:47:49 -05002571- The :ref:`rootfs-postcommands <ref-classes-rootfs*>` class, which defines filesystem
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002572 post-processing functions for image recipes.
2573
Patrick Williams2390b1b2022-11-03 13:47:49 -05002574- The :ref:`rootfs_deb <ref-classes-rootfs*>` class, which supports creation of root filesystems
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002575 for images built using ``.deb`` packages.
2576
Patrick Williams2390b1b2022-11-03 13:47:49 -05002577- The :ref:`rootfs_rpm <ref-classes-rootfs*>` class, which supports creation of root filesystems
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002578 for images built using ``.rpm`` packages.
2579
Patrick Williams2390b1b2022-11-03 13:47:49 -05002580- The :ref:`rootfs_ipk <ref-classes-rootfs*>` class, which supports creation of root filesystems
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002581 for images built using ``.ipk`` packages.
2582
Patrick Williams2390b1b2022-11-03 13:47:49 -05002583- The :ref:`rootfsdebugfiles <ref-classes-rootfs*>` class, which installs additional files found
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002584 on the build host directly into the root filesystem.
2585
2586The root filesystem is created from packages using one of the
Andrew Geissler517393d2023-01-13 08:55:19 -06002587:ref:`ref-classes-rootfs*` files as determined by the :term:`PACKAGE_CLASSES`
2588variable.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002589
2590For information on how root filesystem images are created, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06002591":ref:`overview-manual/concepts:image generation`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002592section in the Yocto Project Overview and Concepts Manual.
2593
Andrew Geissler6aa7eec2023-03-03 12:41:14 -06002594.. _ref-classes-rust:
2595
2596``rust``
2597========
2598
2599The :ref:`ref-classes-rust` class is an internal class which is just used
2600in the "rust" recipe, to build the Rust compiler and runtime
2601library. Except for this recipe, it is not intended to be used directly.
2602
2603.. _ref-classes-rust-common:
2604
2605``rust-common``
2606===============
2607
2608The :ref:`ref-classes-rust-common` class is an internal class to the
2609:ref:`ref-classes-cargo_common` and :ref:`ref-classes-rust` classes and is not
2610intended to be used directly.
2611
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002612.. _ref-classes-sanity:
2613
Andrew Geissler517393d2023-01-13 08:55:19 -06002614``sanity``
2615==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002616
Andrew Geissler517393d2023-01-13 08:55:19 -06002617The :ref:`ref-classes-sanity` class checks to see if prerequisite software is present
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002618on the host system so that users can be notified of potential problems
2619that might affect their build. The class also performs basic user
2620configuration checks from the ``local.conf`` configuration file to
2621prevent common mistakes that cause build failures. Distribution policy
2622usually determines whether to include this class.
2623
2624.. _ref-classes-scons:
2625
Andrew Geissler517393d2023-01-13 08:55:19 -06002626``scons``
2627=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002628
Andrew Geissler517393d2023-01-13 08:55:19 -06002629The :ref:`ref-classes-scons` class supports recipes that need to build software
2630that uses the SCons build system. You can use the :term:`EXTRA_OESCONS`
2631variable to specify additional configuration options you want to pass SCons
2632command line.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002633
2634.. _ref-classes-sdl:
2635
Andrew Geissler517393d2023-01-13 08:55:19 -06002636``sdl``
2637=======
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002638
Andrew Geissler517393d2023-01-13 08:55:19 -06002639The :ref:`ref-classes-sdl` class supports recipes that need to build software that uses
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002640the Simple DirectMedia Layer (SDL) library.
2641
Patrick Williams45852732022-04-02 08:58:32 -05002642.. _ref-classes-python_setuptools_build_meta:
Andrew Geissler9aee5002022-03-30 16:27:02 +00002643
Andrew Geissler517393d2023-01-13 08:55:19 -06002644``python_setuptools_build_meta``
2645================================
Andrew Geissler9aee5002022-03-30 16:27:02 +00002646
Andrew Geissler517393d2023-01-13 08:55:19 -06002647The :ref:`ref-classes-python_setuptools_build_meta` class enables building
2648Python modules which declare the
Andrew Geissler9aee5002022-03-30 16:27:02 +00002649`PEP-517 <https://www.python.org/dev/peps/pep-0517/>`__ compliant
2650``setuptools.build_meta`` ``build-backend`` in the ``[build-system]``
2651section of ``pyproject.toml`` (See `PEP-518 <https://www.python.org/dev/peps/pep-0518/>`__).
2652
2653Python modules built with ``setuptools.build_meta`` can be pure Python or
2654include ``C`` or ``Rust`` extensions).
2655
Andrew Geissler517393d2023-01-13 08:55:19 -06002656Internally this uses the :ref:`ref-classes-python_pep517` class.
Andrew Geissler9aee5002022-03-30 16:27:02 +00002657
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002658.. _ref-classes-setuptools3:
2659
Andrew Geissler517393d2023-01-13 08:55:19 -06002660``setuptools3``
2661===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002662
Andrew Geissler517393d2023-01-13 08:55:19 -06002663The :ref:`ref-classes-setuptools3` class supports Python version 3.x extensions
2664that use build systems based on ``setuptools`` (e.g. only have a ``setup.py``
2665and have not migrated to the official ``pyproject.toml`` format). If your recipe
2666uses these build systems, the recipe needs to inherit the
2667:ref:`ref-classes-setuptools3` class.
Andrew Geissler9aee5002022-03-30 16:27:02 +00002668
2669 .. note::
2670
Andrew Geissler517393d2023-01-13 08:55:19 -06002671 The :ref:`ref-classes-setuptools3` class :ref:`ref-tasks-compile` task now calls
Andrew Geissler9aee5002022-03-30 16:27:02 +00002672 ``setup.py bdist_wheel`` to build the ``wheel`` binary archive format
2673 (See `PEP-427 <https://www.python.org/dev/peps/pep-0427/>`__).
2674
2675 A consequence of this is that legacy software still using deprecated
2676 ``distutils`` from the Python standard library cannot be packaged as
2677 ``wheels``. A common solution is the replace
2678 ``from distutils.core import setup`` with ``from setuptools import setup``.
2679
2680 .. note::
2681
Andrew Geissler517393d2023-01-13 08:55:19 -06002682 The :ref:`ref-classes-setuptools3` class :ref:`ref-tasks-install` task now
2683 installs the ``wheel`` binary archive. In current versions of
2684 ``setuptools`` the legacy ``setup.py install`` method is deprecated. If
2685 the ``setup.py`` cannot be used with wheels, for example it creates files
2686 outside of the Python module or standard entry points, then
2687 :ref:`ref-classes-setuptools3_legacy` should be used.
Andrew Geissler9aee5002022-03-30 16:27:02 +00002688
2689.. _ref-classes-setuptools3_legacy:
2690
Andrew Geissler517393d2023-01-13 08:55:19 -06002691``setuptools3_legacy``
2692======================
Andrew Geissler9aee5002022-03-30 16:27:02 +00002693
Andrew Geissler517393d2023-01-13 08:55:19 -06002694The :ref:`ref-classes-setuptools3_legacy` class supports
2695Python version 3.x extensions that use build systems based on ``setuptools``
2696(e.g. only have a ``setup.py`` and have not migrated to the official
2697``pyproject.toml`` format). Unlike :ref:`ref-classes-setuptools3`,
2698this uses the traditional ``setup.py`` ``build`` and ``install`` commands and
2699not wheels. This use of ``setuptools`` like this is
Patrick Williams2390b1b2022-11-03 13:47:49 -05002700`deprecated <https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v5830>`__
Andrew Geissler9aee5002022-03-30 16:27:02 +00002701but still relatively common.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002702
Andrew Geissler595f6302022-01-24 19:11:47 +00002703.. _ref-classes-setuptools3-base:
2704
Andrew Geissler517393d2023-01-13 08:55:19 -06002705``setuptools3-base``
2706====================
Andrew Geissler595f6302022-01-24 19:11:47 +00002707
Andrew Geissler517393d2023-01-13 08:55:19 -06002708The :ref:`ref-classes-setuptools3-base` class provides a reusable base for
2709other classes that support building Python version 3.x extensions. If you need
2710functionality that is not provided by the :ref:`ref-classes-setuptools3` class,
2711you may want to ``inherit setuptools3-base``. Some recipes do not need the tasks
2712in the :ref:`ref-classes-setuptools3` class and inherit this class instead.
Andrew Geissler595f6302022-01-24 19:11:47 +00002713
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002714.. _ref-classes-sign_rpm:
2715
Andrew Geissler517393d2023-01-13 08:55:19 -06002716``sign_rpm``
2717============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002718
Andrew Geissler517393d2023-01-13 08:55:19 -06002719The :ref:`ref-classes-sign_rpm` class supports generating signed RPM packages.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002720
2721.. _ref-classes-siteconfig:
2722
Andrew Geissler517393d2023-01-13 08:55:19 -06002723``siteconfig``
2724==============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002725
Andrew Geissler517393d2023-01-13 08:55:19 -06002726The :ref:`ref-classes-siteconfig` class provides functionality for handling site
2727configuration. The class is used by the :ref:`ref-classes-autotools` class to
2728accelerate the :ref:`ref-tasks-configure` task.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002729
2730.. _ref-classes-siteinfo:
2731
Andrew Geissler517393d2023-01-13 08:55:19 -06002732``siteinfo``
2733============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002734
Andrew Geissler517393d2023-01-13 08:55:19 -06002735The :ref:`ref-classes-siteinfo` class provides information about the targets
2736that might be needed by other classes or recipes.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002737
2738As an example, consider Autotools, which can require tests that must
2739execute on the target hardware. Since this is not possible in general
2740when cross compiling, site information is used to provide cached test
2741results so these tests can be skipped over but still make the correct
2742values available. The ``meta/site directory`` contains test results
2743sorted into different categories such as architecture, endianness, and
2744the ``libc`` used. Site information provides a list of files containing
Andrew Geissler09036742021-06-25 14:25:14 -05002745data relevant to the current build in the :term:`CONFIG_SITE` variable that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002746Autotools automatically picks up.
2747
Andrew Geissler09036742021-06-25 14:25:14 -05002748The class also provides variables like :term:`SITEINFO_ENDIANNESS` and
2749:term:`SITEINFO_BITS` that can be used elsewhere in the metadata.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002750
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002751.. _ref-classes-sstate:
2752
Andrew Geissler517393d2023-01-13 08:55:19 -06002753``sstate``
2754==========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002755
Andrew Geissler517393d2023-01-13 08:55:19 -06002756The :ref:`ref-classes-sstate` class provides support for Shared State (sstate).
2757By default, the class is enabled through the :term:`INHERIT_DISTRO` variable's
2758default value.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002759
2760For more information on sstate, see the
Andrew Geissler09209ee2020-12-13 08:44:15 -06002761":ref:`overview-manual/concepts:shared state cache`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002762section in the Yocto Project Overview and Concepts Manual.
2763
2764.. _ref-classes-staging:
2765
Andrew Geissler517393d2023-01-13 08:55:19 -06002766``staging``
2767===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002768
Andrew Geissler517393d2023-01-13 08:55:19 -06002769The :ref:`ref-classes-staging` class installs files into individual recipe work
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002770directories for sysroots. The class contains the following key tasks:
2771
2772- The :ref:`ref-tasks-populate_sysroot` task,
2773 which is responsible for handing the files that end up in the recipe
2774 sysroots.
2775
2776- The
2777 :ref:`ref-tasks-prepare_recipe_sysroot`
2778 task (a "partner" task to the ``populate_sysroot`` task), which
2779 installs the files into the individual recipe work directories (i.e.
2780 :term:`WORKDIR`).
2781
Andrew Geissler517393d2023-01-13 08:55:19 -06002782The code in the :ref:`ref-classes-staging` class is complex and basically works
2783in two stages:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002784
2785- *Stage One:* The first stage addresses recipes that have files they
2786 want to share with other recipes that have dependencies on the
2787 originating recipe. Normally these dependencies are installed through
2788 the :ref:`ref-tasks-install` task into
Patrick Williams2194f502022-10-16 14:26:09 -05002789 ``${``\ :term:`D`\ ``}``. The :ref:`ref-tasks-populate_sysroot` task
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002790 copies a subset of these files into ``${SYSROOT_DESTDIR}``. This
2791 subset of files is controlled by the
2792 :term:`SYSROOT_DIRS`,
2793 :term:`SYSROOT_DIRS_NATIVE`, and
Andrew Geissler9aee5002022-03-30 16:27:02 +00002794 :term:`SYSROOT_DIRS_IGNORE`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002795 variables.
2796
2797 .. note::
2798
2799 Additionally, a recipe can customize the files further by
Andrew Geissler09036742021-06-25 14:25:14 -05002800 declaring a processing function in the :term:`SYSROOT_PREPROCESS_FUNCS`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002801 variable.
2802
2803 A shared state (sstate) object is built from these files and the
2804 files are placed into a subdirectory of
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002805 :ref:`structure-build-tmp-sysroots-components`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002806 The files are scanned for hardcoded paths to the original
2807 installation location. If the location is found in text files, the
2808 hardcoded locations are replaced by tokens and a list of the files
2809 needing such replacements is created. These adjustments are referred
2810 to as "FIXMEs". The list of files that are scanned for paths is
2811 controlled by the :term:`SSTATE_SCAN_FILES`
2812 variable.
2813
2814- *Stage Two:* The second stage addresses recipes that want to use
2815 something from another recipe and declare a dependency on that recipe
2816 through the :term:`DEPENDS` variable. The recipe will
2817 have a
2818 :ref:`ref-tasks-prepare_recipe_sysroot`
2819 task and when this task executes, it creates the ``recipe-sysroot``
2820 and ``recipe-sysroot-native`` in the recipe work directory (i.e.
2821 :term:`WORKDIR`). The OpenEmbedded build system
2822 creates hard links to copies of the relevant files from
2823 ``sysroots-components`` into the recipe work directory.
2824
2825 .. note::
2826
2827 If hard links are not possible, the build system uses actual
2828 copies.
2829
2830 The build system then addresses any "FIXMEs" to paths as defined from
2831 the list created in the first stage.
2832
2833 Finally, any files in ``${bindir}`` within the sysroot that have the
2834 prefix "``postinst-``" are executed.
2835
2836 .. note::
2837
2838 Although such sysroot post installation scripts are not
2839 recommended for general use, the files do allow some issues such
2840 as user creation and module indexes to be addressed.
2841
Andrew Geissler09036742021-06-25 14:25:14 -05002842 Because recipes can have other dependencies outside of :term:`DEPENDS`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002843 (e.g. ``do_unpack[depends] += "tar-native:do_populate_sysroot"``),
2844 the sysroot creation function ``extend_recipe_sysroot`` is also added
2845 as a pre-function for those tasks whose dependencies are not through
Andrew Geissler09036742021-06-25 14:25:14 -05002846 :term:`DEPENDS` but operate similarly.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002847
2848 When installing dependencies into the sysroot, the code traverses the
2849 dependency graph and processes dependencies in exactly the same way
2850 as the dependencies would or would not be when installed from sstate.
2851 This processing means, for example, a native tool would have its
2852 native dependencies added but a target library would not have its
2853 dependencies traversed or installed. The same sstate dependency code
2854 is used so that builds should be identical regardless of whether
2855 sstate was used or not. For a closer look, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06002856 ``setscene_depvalid()`` function in the :ref:`ref-classes-sstate` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002857
2858 The build system is careful to maintain manifests of the files it
2859 installs so that any given dependency can be installed as needed. The
2860 sstate hash of the installed item is also stored so that if it
2861 changes, the build system can reinstall it.
2862
2863.. _ref-classes-syslinux:
2864
Andrew Geissler517393d2023-01-13 08:55:19 -06002865``syslinux``
2866============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002867
Andrew Geissler517393d2023-01-13 08:55:19 -06002868The :ref:`ref-classes-syslinux` class provides syslinux-specific functions for
2869building bootable images.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002870
2871The class supports the following variables:
2872
2873- :term:`INITRD`: Indicates list of filesystem images to
2874 concatenate and use as an initial RAM disk (initrd). This variable is
2875 optional.
2876
2877- :term:`ROOTFS`: Indicates a filesystem image to include
2878 as the root filesystem. This variable is optional.
2879
2880- :term:`AUTO_SYSLINUXMENU`: Enables creating
2881 an automatic menu when set to "1".
2882
2883- :term:`LABELS`: Lists targets for automatic
2884 configuration.
2885
2886- :term:`APPEND`: Lists append string overrides for each
2887 label.
2888
2889- :term:`SYSLINUX_OPTS`: Lists additional options
2890 to add to the syslinux file. Semicolon characters separate multiple
2891 options.
2892
2893- :term:`SYSLINUX_SPLASH`: Lists a background
2894 for the VGA boot menu when you are using the boot menu.
2895
2896- :term:`SYSLINUX_DEFAULT_CONSOLE`: Set
2897 to "console=ttyX" to change kernel boot default console.
2898
2899- :term:`SYSLINUX_SERIAL`: Sets an alternate
2900 serial port. Or, turns off serial when the variable is set with an
2901 empty string.
2902
2903- :term:`SYSLINUX_SERIAL_TTY`: Sets an
2904 alternate "console=tty..." kernel boot argument.
2905
2906.. _ref-classes-systemd:
2907
Andrew Geissler517393d2023-01-13 08:55:19 -06002908``systemd``
2909===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002910
Andrew Geissler517393d2023-01-13 08:55:19 -06002911The :ref:`ref-classes-systemd` class provides support for recipes that install
2912systemd unit files.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002913
2914The functionality for this class is disabled unless you have "systemd"
2915in :term:`DISTRO_FEATURES`.
2916
2917Under this class, the recipe or Makefile (i.e. whatever the recipe is
2918calling during the :ref:`ref-tasks-install` task)
2919installs unit files into
2920``${``\ :term:`D`\ ``}${systemd_unitdir}/system``. If the unit
2921files being installed go into packages other than the main package, you
2922need to set :term:`SYSTEMD_PACKAGES` in your
2923recipe to identify the packages in which the files will be installed.
2924
2925You should set :term:`SYSTEMD_SERVICE` to the
2926name of the service file. You should also use a package name override to
2927indicate the package to which the value applies. If the value applies to
2928the recipe's main package, use ``${``\ :term:`PN`\ ``}``. Here
Andrew Geisslerc926e172021-05-07 16:11:35 -05002929is an example from the connman recipe::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002930
Patrick Williams0ca19cc2021-08-16 14:03:13 -05002931 SYSTEMD_SERVICE:${PN} = "connman.service"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002932
2933Services are set up to start on boot automatically
2934unless you have set
2935:term:`SYSTEMD_AUTO_ENABLE` to "disable".
2936
Andrew Geissler517393d2023-01-13 08:55:19 -06002937For more information on :ref:`ref-classes-systemd`, see the
2938":ref:`dev-manual/init-manager:selecting an initialization manager`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002939section in the Yocto Project Development Tasks Manual.
2940
2941.. _ref-classes-systemd-boot:
2942
Andrew Geissler517393d2023-01-13 08:55:19 -06002943``systemd-boot``
2944================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002945
Andrew Geissler517393d2023-01-13 08:55:19 -06002946The :ref:`ref-classes-systemd-boot` class provides functions specific to the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002947systemd-boot bootloader for building bootable images. This is an
2948internal class and is not intended to be used directly.
2949
2950.. note::
2951
Andrew Geissler517393d2023-01-13 08:55:19 -06002952 The :ref:`ref-classes-systemd-boot` class is a result from merging the ``gummiboot`` class
Andrew Geissler4c19ea12020-10-27 13:52:24 -05002953 used in previous Yocto Project releases with the ``systemd`` project.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002954
Andrew Geissler517393d2023-01-13 08:55:19 -06002955Set the :term:`EFI_PROVIDER` variable to ":ref:`ref-classes-systemd-boot`" to
2956use this class. Doing so creates a standalone EFI bootloader that is not
2957dependent on systemd.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002958
2959For information on more variables used and supported in this class, see
2960the :term:`SYSTEMD_BOOT_CFG`,
2961:term:`SYSTEMD_BOOT_ENTRIES`, and
2962:term:`SYSTEMD_BOOT_TIMEOUT` variables.
2963
2964You can also see the `Systemd-boot
Andrew Geisslerd1e89492021-02-12 15:35:20 -06002965documentation <https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002966for more information.
2967
2968.. _ref-classes-terminal:
2969
Andrew Geissler517393d2023-01-13 08:55:19 -06002970``terminal``
2971============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002972
Andrew Geissler517393d2023-01-13 08:55:19 -06002973The :ref:`ref-classes-terminal` class provides support for starting a terminal
2974session. The :term:`OE_TERMINAL` variable controls which terminal emulator is
2975used for the session.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002976
Andrew Geissler517393d2023-01-13 08:55:19 -06002977Other classes use the :ref:`ref-classes-terminal` class anywhere a separate
2978terminal session needs to be started. For example, the :ref:`ref-classes-patch`
2979class assuming :term:`PATCHRESOLVE` is set to "user", the
2980:ref:`ref-classes-cml1` class, and the :ref:`ref-classes-devshell` class all
2981use the :ref:`ref-classes-terminal` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002982
Patrick Williams975a06f2022-10-21 14:42:47 -05002983.. _ref-classes-testimage:
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002984
Andrew Geissler517393d2023-01-13 08:55:19 -06002985``testimage``
2986=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002987
Andrew Geissler517393d2023-01-13 08:55:19 -06002988The :ref:`ref-classes-testimage` class supports running automated tests against
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002989images using QEMU and on actual hardware. The classes handle loading the
2990tests and starting the image. To use the classes, you need to perform
2991steps to set up the environment.
2992
Patrick Williams975a06f2022-10-21 14:42:47 -05002993To enable this class, add the following to your configuration::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002994
Patrick Williams975a06f2022-10-21 14:42:47 -05002995 IMAGE_CLASSES += "testimage"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002996
2997The tests are commands that run on the target system over ``ssh``. Each
2998test is written in Python and makes use of the ``unittest`` module.
2999
Andrew Geissler517393d2023-01-13 08:55:19 -06003000The :ref:`ref-classes-testimage` class runs tests on an image when called using the
Andrew Geisslerc926e172021-05-07 16:11:35 -05003001following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003002
3003 $ bitbake -c testimage image
3004
Patrick Williams975a06f2022-10-21 14:42:47 -05003005Alternatively, if you wish to have tests automatically run for each image
3006after it is built, you can set :term:`TESTIMAGE_AUTO`::
3007
3008 TESTIMAGE_AUTO = "1"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003009
3010For information on how to enable, run, and create new tests, see the
Andrew Geissler517393d2023-01-13 08:55:19 -06003011":ref:`dev-manual/runtime-testing:performing automated runtime testing`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003012section in the Yocto Project Development Tasks Manual.
3013
3014.. _ref-classes-testsdk:
3015
Andrew Geissler517393d2023-01-13 08:55:19 -06003016``testsdk``
3017===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003018
3019This class supports running automated tests against software development
Andrew Geissler517393d2023-01-13 08:55:19 -06003020kits (SDKs). The :ref:`ref-classes-testsdk` class runs tests on an SDK when called
Andrew Geisslerc926e172021-05-07 16:11:35 -05003021using the following::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003022
3023 $ bitbake -c testsdk image
3024
3025.. note::
3026
Andrew Geissler4c19ea12020-10-27 13:52:24 -05003027 Best practices include using :term:`IMAGE_CLASSES` rather than
Andrew Geissler517393d2023-01-13 08:55:19 -06003028 :term:`INHERIT` to inherit the :ref:`ref-classes-testsdk` class for automated SDK
Andrew Geissler4c19ea12020-10-27 13:52:24 -05003029 testing.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003030
3031.. _ref-classes-texinfo:
3032
Andrew Geissler517393d2023-01-13 08:55:19 -06003033``texinfo``
3034===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003035
3036This class should be inherited by recipes whose upstream packages invoke
3037the ``texinfo`` utilities at build-time. Native and cross recipes are
3038made to use the dummy scripts provided by ``texinfo-dummy-native``, for
3039improved performance. Target architecture recipes use the genuine
3040Texinfo utilities. By default, they use the Texinfo utilities on the
3041host system.
3042
3043.. note::
3044
3045 If you want to use the Texinfo recipe shipped with the build system,
Andrew Geissler4c19ea12020-10-27 13:52:24 -05003046 you can remove "texinfo-native" from :term:`ASSUME_PROVIDED` and makeinfo
3047 from :term:`SANITY_REQUIRED_UTILITIES`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003048
3049.. _ref-classes-toaster:
3050
Andrew Geissler517393d2023-01-13 08:55:19 -06003051``toaster``
3052===========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003053
Andrew Geissler517393d2023-01-13 08:55:19 -06003054The :ref:`ref-classes-toaster` class collects information about packages and images and
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003055sends them as events that the BitBake user interface can receive. The
3056class is enabled when the Toaster user interface is running.
3057
3058This class is not intended to be used directly.
3059
3060.. _ref-classes-toolchain-scripts:
3061
Andrew Geissler517393d2023-01-13 08:55:19 -06003062``toolchain-scripts``
3063=====================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003064
Andrew Geissler517393d2023-01-13 08:55:19 -06003065The :ref:`ref-classes-toolchain-scripts` class provides the scripts used for setting up
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003066the environment for installed SDKs.
3067
3068.. _ref-classes-typecheck:
3069
Andrew Geissler517393d2023-01-13 08:55:19 -06003070``typecheck``
3071=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003072
Andrew Geissler517393d2023-01-13 08:55:19 -06003073The :ref:`ref-classes-typecheck` class provides support for validating the values of
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003074variables set at the configuration level against their defined types.
3075The OpenEmbedded build system allows you to define the type of a
Andrew Geisslerc926e172021-05-07 16:11:35 -05003076variable using the "type" varflag. Here is an example::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003077
3078 IMAGE_FEATURES[type] = "list"
3079
3080.. _ref-classes-uboot-config:
3081
Andrew Geissler517393d2023-01-13 08:55:19 -06003082``uboot-config``
3083================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003084
Andrew Geissler517393d2023-01-13 08:55:19 -06003085The :ref:`ref-classes-uboot-config` class provides support for U-Boot configuration for
Andrew Geisslerc926e172021-05-07 16:11:35 -05003086a machine. Specify the machine in your recipe as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003087
3088 UBOOT_CONFIG ??= <default>
3089 UBOOT_CONFIG[foo] = "config,images"
3090
Andrew Geisslerc926e172021-05-07 16:11:35 -05003091You can also specify the machine using this method::
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003092
3093 UBOOT_MACHINE = "config"
3094
3095See the :term:`UBOOT_CONFIG` and :term:`UBOOT_MACHINE` variables for additional
3096information.
3097
3098.. _ref-classes-uninative:
3099
Andrew Geissler517393d2023-01-13 08:55:19 -06003100``uninative``
3101=============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003102
3103Attempts to isolate the build system from the host distribution's C
3104library in order to make re-use of native shared state artifacts across
3105different host distributions practical. With this class enabled, a
3106tarball containing a pre-built C library is downloaded at the start of
3107the build. In the Poky reference distribution this is enabled by default
3108through ``meta/conf/distro/include/yocto-uninative.inc``. Other
3109distributions that do not derive from poky can also
3110"``require conf/distro/include/yocto-uninative.inc``" to use this.
3111Alternatively if you prefer, you can build the uninative-tarball recipe
3112yourself, publish the resulting tarball (e.g. via HTTP) and set
3113``UNINATIVE_URL`` and ``UNINATIVE_CHECKSUM`` appropriately. For an
3114example, see the ``meta/conf/distro/include/yocto-uninative.inc``.
3115
Andrew Geissler517393d2023-01-13 08:55:19 -06003116The :ref:`ref-classes-uninative` class is also used unconditionally by the extensible
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003117SDK. When building the extensible SDK, ``uninative-tarball`` is built
3118and the resulting tarball is included within the SDK.
3119
3120.. _ref-classes-update-alternatives:
3121
Andrew Geissler517393d2023-01-13 08:55:19 -06003122``update-alternatives``
3123=======================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003124
Andrew Geissler517393d2023-01-13 08:55:19 -06003125The :ref:`ref-classes-update-alternatives` class helps the alternatives system when
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003126multiple sources provide the same command. This situation occurs when
3127several programs that have the same or similar function are installed
3128with the same name. For example, the ``ar`` command is available from
3129the ``busybox``, ``binutils`` and ``elfutils`` packages. The
Andrew Geissler517393d2023-01-13 08:55:19 -06003130:ref:`ref-classes-update-alternatives` class handles renaming the binaries so that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003131multiple packages can be installed without conflicts. The ``ar`` command
3132still works regardless of which packages are installed or subsequently
3133removed. The class renames the conflicting binary in each package and
3134symlinks the highest priority binary during installation or removal of
3135packages.
3136
3137To use this class, you need to define a number of variables:
3138
3139- :term:`ALTERNATIVE`
3140
3141- :term:`ALTERNATIVE_LINK_NAME`
3142
3143- :term:`ALTERNATIVE_TARGET`
3144
3145- :term:`ALTERNATIVE_PRIORITY`
3146
3147These variables list alternative commands needed by a package, provide
3148pathnames for links, default links for targets, and so forth. For
3149details on how to use this class, see the comments in the
Patrick Williams975a06f2022-10-21 14:42:47 -05003150:yocto_git:`update-alternatives.bbclass </poky/tree/meta/classes-recipe/update-alternatives.bbclass>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003151file.
3152
3153.. note::
3154
Andrew Geissler4c19ea12020-10-27 13:52:24 -05003155 You can use the ``update-alternatives`` command directly in your recipes.
3156 However, this class simplifies things in most cases.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003157
3158.. _ref-classes-update-rc.d:
3159
Andrew Geissler517393d2023-01-13 08:55:19 -06003160``update-rc.d``
3161===============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003162
Andrew Geissler517393d2023-01-13 08:55:19 -06003163The :ref:`ref-classes-update-rc.d` class uses ``update-rc.d`` to safely install an
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003164initialization script on behalf of the package. The OpenEmbedded build
3165system takes care of details such as making sure the script is stopped
3166before a package is removed and started when the package is installed.
3167
Andrew Geissler09036742021-06-25 14:25:14 -05003168Three variables control this class: :term:`INITSCRIPT_PACKAGES`,
3169:term:`INITSCRIPT_NAME` and :term:`INITSCRIPT_PARAMS`. See the variable links
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003170for details.
3171
3172.. _ref-classes-useradd:
3173
Andrew Geissler517393d2023-01-13 08:55:19 -06003174``useradd*``
3175============
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003176
Patrick Williams2390b1b2022-11-03 13:47:49 -05003177The :ref:`useradd* <ref-classes-useradd>` classes support the addition of users or groups for
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003178usage by the package on the target. For example, if you have packages
3179that contain system services that should be run under their own user or
3180group, you can use these classes to enable creation of the user or
Andrew Geissler595f6302022-01-24 19:11:47 +00003181group. The :oe_git:`meta-skeleton/recipes-skeleton/useradd/useradd-example.bb
3182</openembedded-core/tree/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb>`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003183recipe in the :term:`Source Directory` provides a simple
3184example that shows how to add three users and groups to two packages.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003185
Patrick Williams2390b1b2022-11-03 13:47:49 -05003186The :ref:`useradd_base <ref-classes-useradd>` class provides basic functionality for user or
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003187groups settings.
3188
Patrick Williams2390b1b2022-11-03 13:47:49 -05003189The :ref:`useradd* <ref-classes-useradd>` classes support the
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003190:term:`USERADD_PACKAGES`,
3191:term:`USERADD_PARAM`,
3192:term:`GROUPADD_PARAM`, and
3193:term:`GROUPMEMS_PARAM` variables.
3194
Patrick Williams2390b1b2022-11-03 13:47:49 -05003195The :ref:`useradd-staticids <ref-classes-useradd>` class supports the addition of users or groups
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003196that have static user identification (``uid``) and group identification
3197(``gid``) values.
3198
3199The default behavior of the OpenEmbedded build system for assigning
3200``uid`` and ``gid`` values when packages add users and groups during
3201package install time is to add them dynamically. This works fine for
3202programs that do not care what the values of the resulting users and
3203groups become. In these cases, the order of the installation determines
3204the final ``uid`` and ``gid`` values. However, if non-deterministic
3205``uid`` and ``gid`` values are a problem, you can override the default,
3206dynamic application of these values by setting static values. When you
3207set static values, the OpenEmbedded build system looks in
3208:term:`BBPATH` for ``files/passwd`` and ``files/group``
3209files for the values.
3210
Andrew Geissler517393d2023-01-13 08:55:19 -06003211To use static ``uid`` and ``gid`` values, you need to set some variables. See
3212the :term:`USERADDEXTENSION`, :term:`USERADD_UID_TABLES`,
3213:term:`USERADD_GID_TABLES`, and :term:`USERADD_ERROR_DYNAMIC` variables.
3214You can also see the :ref:`ref-classes-useradd` class for additional
3215information.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003216
3217.. note::
3218
Patrick Williams2390b1b2022-11-03 13:47:49 -05003219 You do not use the :ref:`useradd-staticids <ref-classes-useradd>` class directly. You either enable
Andrew Geissler09036742021-06-25 14:25:14 -05003220 or disable the class by setting the :term:`USERADDEXTENSION` variable. If you
Andrew Geissler4c19ea12020-10-27 13:52:24 -05003221 enable or disable the class in a configured system, :term:`TMPDIR` might
Andrew Geissler09036742021-06-25 14:25:14 -05003222 contain incorrect ``uid`` and ``gid`` values. Deleting the :term:`TMPDIR`
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003223 directory will correct this condition.
3224
3225.. _ref-classes-utility-tasks:
3226
Andrew Geissler517393d2023-01-13 08:55:19 -06003227``utility-tasks``
3228=================
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003229
Andrew Geissler517393d2023-01-13 08:55:19 -06003230The :ref:`ref-classes-utility-tasks` class provides support for various
3231"utility" type tasks that are applicable to all recipes, such as
3232:ref:`ref-tasks-clean` and :ref:`ref-tasks-listtasks`.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003233
3234This class is enabled by default because it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06003235:ref:`ref-classes-base` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003236
3237.. _ref-classes-utils:
3238
Andrew Geissler517393d2023-01-13 08:55:19 -06003239``utils``
3240=========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003241
Andrew Geissler517393d2023-01-13 08:55:19 -06003242The :ref:`ref-classes-utils` class provides some useful Python functions that are
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003243typically used in inline Python expressions (e.g. ``${@...}``). One
3244example use is for ``bb.utils.contains()``.
3245
3246This class is enabled by default because it is inherited by the
Andrew Geissler517393d2023-01-13 08:55:19 -06003247:ref:`ref-classes-base` class.
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003248
3249.. _ref-classes-vala:
3250
Andrew Geissler517393d2023-01-13 08:55:19 -06003251``vala``
3252========
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003253
Andrew Geissler517393d2023-01-13 08:55:19 -06003254The :ref:`ref-classes-vala` class supports recipes that need to build software written
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003255using the Vala programming language.
3256
3257.. _ref-classes-waf:
3258
Andrew Geissler517393d2023-01-13 08:55:19 -06003259``waf``
3260=======
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003261
Andrew Geissler517393d2023-01-13 08:55:19 -06003262The :ref:`ref-classes-waf` class supports recipes that need to build software that uses
Andrew Geisslerc9f78652020-09-18 14:11:35 -05003263the Waf build system. You can use the
3264:term:`EXTRA_OECONF` or
3265:term:`PACKAGECONFIG_CONFARGS` variables
3266to specify additional configuration options to be passed on the Waf
3267command line.