blob: e657fe0e55b5b374bcf27fa374ce85ba1baedc06 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001.. SPDX-License-Identifier: CC-BY-SA-2.0-UK
2
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
16``.bbclass`` and are usually placed in a ``classes/`` directory beneath
17the ``meta*/`` directory found in the :term:`Source Directory`.
18Class files can also be pointed to by
19:term:`BUILDDIR` (e.g. ``build/``) in the same way as
20``.conf`` files in the ``conf`` directory. Class files are searched for
21in :term:`BBPATH` using the same method by which ``.conf``
22files are searched.
23
24This chapter discusses only the most useful and important classes. Other
25classes do exist within the ``meta/classes`` directory in the Source
26Directory. You can reference the ``.bbclass`` files directly for more
27information.
28
29.. _ref-classes-allarch:
30
31``allarch.bbclass``
32===================
33
34The ``allarch`` class is inherited by recipes that do not produce
35architecture-specific output. The class disables functionality that is
36normally needed for recipes that produce executable binaries (such as
37building the cross-compiler and a C library as pre-requisites, and
38splitting out of debug symbols during packaging).
39
40.. note::
41
42 Unlike some distro recipes (e.g. Debian), OpenEmbedded recipes that
43 produce packages that depend on tunings through use of the
44 :term:`RDEPENDS` and
45 :term:`TUNE_PKGARCH` variables, should never be
46 configured for all architectures using ``allarch``. This is the case
47 even if the recipes do not produce architecture-specific output.
48
49 Configuring such recipes for all architectures causes the
50 ``do_package_write_*`` tasks to
51 have different signatures for the machines with different tunings.
52 Additionally, unnecessary rebuilds occur every time an image for a
53 different ``MACHINE`` is built even when the recipe never changes.
54
55By default, all recipes inherit the :ref:`base <ref-classes-base>` and
56:ref:`package <ref-classes-package>` classes, which enable
57functionality needed for recipes that produce executable output. If your
58recipe, for example, only produces packages that contain configuration
59files, media files, or scripts (e.g. Python and Perl), then it should
60inherit the ``allarch`` class.
61
62.. _ref-classes-archiver:
63
64``archiver.bbclass``
65====================
66
67The ``archiver`` class supports releasing source code and other
68materials with the binaries.
69
70For more details on the source archiver, see the
71":ref:`dev-manual/dev-manual-common-tasks:maintaining open source license compliance during your product's lifecycle`"
72section in the Yocto Project Development Tasks Manual. You can also see
73the :term:`ARCHIVER_MODE` variable for information
74about the variable flags (varflags) that help control archive creation.
75
76.. _ref-classes-autotools:
77
78``autotools*.bbclass``
79======================
80
81The ``autotools*`` classes support Autotooled packages.
82
83The ``autoconf``, ``automake``, and ``libtool`` packages bring
84standardization. This class defines a set of tasks (e.g. ``configure``,
85``compile`` and so forth) that work for all Autotooled packages. It
86should usually be enough to define a few standard variables and then
87simply ``inherit autotools``. These classes can also work with software
88that emulates Autotools. For more information, see the
89":ref:`new-recipe-autotooled-package`" section
90in the Yocto Project Development Tasks Manual.
91
92By default, the ``autotools*`` classes use out-of-tree builds (i.e.
93``autotools.bbclass`` building with ``B != S``).
94
95If the software being built by a recipe does not support using
96out-of-tree builds, you should have the recipe inherit the
97``autotools-brokensep`` class. The ``autotools-brokensep`` class behaves
98the same as the ``autotools`` class but builds with :term:`B`
99== :term:`S`. This method is useful when out-of-tree build
100support is either not present or is broken.
101
102.. note::
103
104 It is recommended that out-of-tree support be fixed and used if at
105 all possible.
106
107It's useful to have some idea of how the tasks defined by the
108``autotools*`` classes work and what they do behind the scenes.
109
110- :ref:`ref-tasks-configure` - Regenerates the
111 configure script (using ``autoreconf``) and then launches it with a
112 standard set of arguments used during cross-compilation. You can pass
113 additional parameters to ``configure`` through the ``EXTRA_OECONF``
114 or :term:`PACKAGECONFIG_CONFARGS`
115 variables.
116
117- :ref:`ref-tasks-compile` - Runs ``make`` with
118 arguments that specify the compiler and linker. You can pass
119 additional arguments through the ``EXTRA_OEMAKE`` variable.
120
121- :ref:`ref-tasks-install` - Runs ``make install`` and
122 passes in ``${``\ :term:`D`\ ``}`` as ``DESTDIR``.
123
124.. _ref-classes-base:
125
126``base.bbclass``
127================
128
129The ``base`` class is special in that every ``.bb`` file implicitly
130inherits the class. This class contains definitions for standard basic
131tasks such as fetching, unpacking, configuring (empty by default),
132compiling (runs any ``Makefile`` present), installing (empty by default)
133and packaging (empty by default). These classes are often overridden or
134extended by other classes such as the
135:ref:`autotools <ref-classes-autotools>` class or the
136:ref:`package <ref-classes-package>` class.
137
138The class also contains some commonly used functions such as
139``oe_runmake``, which runs ``make`` with the arguments specified in
140:term:`EXTRA_OEMAKE` variable as well as the
141arguments passed directly to ``oe_runmake``.
142
143.. _ref-classes-bash-completion:
144
145``bash-completion.bbclass``
146===========================
147
148Sets up packaging and dependencies appropriate for recipes that build
149software that includes bash-completion data.
150
151.. _ref-classes-bin-package:
152
153``bin_package.bbclass``
154=======================
155
156The ``bin_package`` class is a helper class for recipes that extract the
157contents of a binary package (e.g. an RPM) and install those contents
158rather than building the binary from source. The binary package is
159extracted and new packages in the configured output package format are
160created. Extraction and installation of proprietary binaries is a good
161example use for this class.
162
163.. note::
164
165 For RPMs and other packages that do not contain a subdirectory, you
166 should specify an appropriate fetcher parameter to point to the
167 subdirectory. For example, if BitBake is using the Git fetcher (``git://``),
168 the "subpath" parameter limits the checkout to a specific subpath
169 of the tree. Here is an example where ``${BP}`` is used so that the files
170 are extracted into the subdirectory expected by the default value of
171 ``S``:
172 ::
173
174 SRC_URI = "git://example.com/downloads/somepackage.rpm;subpath=${BP}"
175
176
177 See the ":ref:`bitbake-user-manual/bitbake-user-manual-fetching:fetchers`" section in the BitBake User Manual for
178 more information on supported BitBake Fetchers.
179
180.. _ref-classes-binconfig:
181
182``binconfig.bbclass``
183=====================
184
185The ``binconfig`` class helps to correct paths in shell scripts.
186
187Before ``pkg-config`` had become widespread, libraries shipped shell
188scripts to give information about the libraries and include paths needed
189to build software (usually named ``LIBNAME-config``). This class assists
190any recipe using such scripts.
191
192During staging, the OpenEmbedded build system installs such scripts into
193the ``sysroots/`` directory. Inheriting this class results in all paths
194in these scripts being changed to point into the ``sysroots/`` directory
195so that all builds that use the script use the correct directories for
196the cross compiling layout. See the
197:term:`BINCONFIG_GLOB` variable for more
198information.
199
200.. _ref-classes-binconfig-disabled:
201
202``binconfig-disabled.bbclass``
203==============================
204
205An alternative version of the :ref:`binconfig <ref-classes-binconfig>`
206class, which disables binary configuration scripts by making them return
207an error in favor of using ``pkg-config`` to query the information. The
208scripts to be disabled should be specified using the
209:term:`BINCONFIG` variable within the recipe inheriting
210the class.
211
212.. _ref-classes-blacklist:
213
214``blacklist.bbclass``
215=====================
216
217The ``blacklist`` class prevents the OpenEmbedded build system from
218building specific recipes (blacklists them). To use this class, inherit
219the class globally and set :term:`PNBLACKLIST` for
220each recipe you wish to blacklist. Specify the :term:`PN`
221value as a variable flag (varflag) and provide a reason, which is
222reported, if the package is requested to be built as the value. For
223example, if you want to blacklist a recipe called "exoticware", you add
224the following to your ``local.conf`` or distribution configuration:
225::
226
227 INHERIT += "blacklist"
228 PNBLACKLIST[exoticware] = "Not supported by our organization."
229
230.. _ref-classes-buildhistory:
231
232``buildhistory.bbclass``
233========================
234
235The ``buildhistory`` class records a history of build output metadata,
236which can be used to detect possible regressions as well as used for
237analysis of the build output. For more information on using Build
238History, see the
239":ref:`dev-manual/dev-manual-common-tasks:maintaining build output quality`"
240section in the Yocto Project Development Tasks Manual.
241
242.. _ref-classes-buildstats:
243
244``buildstats.bbclass``
245======================
246
247The ``buildstats`` class records performance statistics about each task
248executed during the build (e.g. elapsed time, CPU usage, and I/O usage).
249
250When you use this class, the output goes into the
251:term:`BUILDSTATS_BASE` directory, which defaults
252to ``${TMPDIR}/buildstats/``. You can analyze the elapsed time using
253``scripts/pybootchartgui/pybootchartgui.py``, which produces a cascading
254chart of the entire build process and can be useful for highlighting
255bottlenecks.
256
257Collecting build statistics is enabled by default through the
258:term:`USER_CLASSES` variable from your
259``local.conf`` file. Consequently, you do not have to do anything to
260enable the class. However, if you want to disable the class, simply
261remove "buildstats" from the ``USER_CLASSES`` list.
262
263.. _ref-classes-buildstats-summary:
264
265``buildstats-summary.bbclass``
266==============================
267
268When inherited globally, prints statistics at the end of the build on
269sstate re-use. In order to function, this class requires the
270:ref:`buildstats <ref-classes-buildstats>` class be enabled.
271
272.. _ref-classes-ccache:
273
274``ccache.bbclass``
275==================
276
277The ``ccache`` class enables the C/C++ Compiler Cache for the build.
278This class is used to give a minor performance boost during the build.
279However, using the class can lead to unexpected side-effects. Thus, it
280is recommended that you do not use this class. See
281http://ccache.samba.org/ for information on the C/C++ Compiler
282Cache.
283
284.. _ref-classes-chrpath:
285
286``chrpath.bbclass``
287===================
288
289The ``chrpath`` class is a wrapper around the "chrpath" utility, which
290is used during the build process for ``nativesdk``, ``cross``, and
291``cross-canadian`` recipes to change ``RPATH`` records within binaries
292in order to make them relocatable.
293
294.. _ref-classes-clutter:
295
296``clutter.bbclass``
297===================
298
299The ``clutter`` class consolidates the major and minor version naming
300and other common items used by Clutter and related recipes.
301
302.. note::
303
304 Unlike some other classes related to specific libraries, recipes
305 building other software that uses Clutter do not need to inherit this
306 class unless they use the same recipe versioning scheme that the
307 Clutter and related recipes do.
308
309.. _ref-classes-cmake:
310
311``cmake.bbclass``
312=================
313
314The ``cmake`` class allows for recipes that need to build software using
315the `CMake <https://cmake.org/overview/>`__ build system. You can use
316the :term:`EXTRA_OECMAKE` variable to specify
317additional configuration options to be passed using the ``cmake``
318command line.
319
320On the occasion that you would be installing custom CMake toolchain
321files supplied by the application being built, you should install them
322to the preferred CMake Module directory: ``${D}${datadir}/cmake/``
323Modules during
324:ref:`ref-tasks-install`.
325
326.. _ref-classes-cml1:
327
328``cml1.bbclass``
329================
330
331The ``cml1`` class provides basic support for the Linux kernel style
332build configuration system.
333
334.. _ref-classes-compress_doc:
335
336``compress_doc.bbclass``
337========================
338
339Enables compression for man pages and info pages. This class is intended
340to be inherited globally. The default compression mechanism is gz (gzip)
341but you can select an alternative mechanism by setting the
342:term:`DOC_COMPRESS` variable.
343
344.. _ref-classes-copyleft_compliance:
345
346``copyleft_compliance.bbclass``
347===============================
348
349The ``copyleft_compliance`` class preserves source code for the purposes
350of license compliance. This class is an alternative to the ``archiver``
351class and is still used by some users even though it has been deprecated
352in favor of the :ref:`archiver <ref-classes-archiver>` class.
353
354.. _ref-classes-copyleft_filter:
355
356``copyleft_filter.bbclass``
357===========================
358
359A class used by the :ref:`archiver <ref-classes-archiver>` and
360:ref:`copyleft_compliance <ref-classes-copyleft_compliance>` classes
361for filtering licenses. The ``copyleft_filter`` class is an internal
362class and is not intended to be used directly.
363
364.. _ref-classes-core-image:
365
366``core-image.bbclass``
367======================
368
369The ``core-image`` class provides common definitions for the
370``core-image-*`` image recipes, such as support for additional
371:term:`IMAGE_FEATURES`.
372
373.. _ref-classes-cpan:
374
375``cpan*.bbclass``
376=================
377
378The ``cpan*`` classes support Perl modules.
379
380Recipes for Perl modules are simple. These recipes usually only need to
381point to the source's archive and then inherit the proper class file.
382Building is split into two methods depending on which method the module
383authors used.
384
385- Modules that use old ``Makefile.PL``-based build system require
386 ``cpan.bbclass`` in their recipes.
387
388- Modules that use ``Build.PL``-based build system require using
389 ``cpan_build.bbclass`` in their recipes.
390
391Both build methods inherit the ``cpan-base`` class for basic Perl
392support.
393
394.. _ref-classes-cross:
395
396``cross.bbclass``
397=================
398
399The ``cross`` class provides support for the recipes that build the
400cross-compilation tools.
401
402.. _ref-classes-cross-canadian:
403
404``cross-canadian.bbclass``
405==========================
406
407The ``cross-canadian`` class provides support for the recipes that build
408the Canadian Cross-compilation tools for SDKs. See the
409":ref:`overview-manual/overview-manual-concepts:cross-development toolchain generation`"
410section in the Yocto Project Overview and Concepts Manual for more
411discussion on these cross-compilation tools.
412
413.. _ref-classes-crosssdk:
414
415``crosssdk.bbclass``
416====================
417
418The ``crosssdk`` class provides support for the recipes that build the
419cross-compilation tools used for building SDKs. See the
420":ref:`overview-manual/overview-manual-concepts:cross-development toolchain generation`"
421section in the Yocto Project Overview and Concepts Manual for more
422discussion on these cross-compilation tools.
423
424.. _ref-classes-debian:
425
426``debian.bbclass``
427==================
428
429The ``debian`` class renames output packages so that they follow the
430Debian naming policy (i.e. ``glibc`` becomes ``libc6`` and
431``glibc-devel`` becomes ``libc6-dev``.) Renaming includes the library
432name and version as part of the package name.
433
434If a recipe creates packages for multiple libraries (shared object files
435of ``.so`` type), use the :term:`LEAD_SONAME`
436variable in the recipe to specify the library on which to apply the
437naming scheme.
438
439.. _ref-classes-deploy:
440
441``deploy.bbclass``
442==================
443
444The ``deploy`` class handles deploying files to the
445:term:`DEPLOY_DIR_IMAGE` directory. The main
446function of this class is to allow the deploy step to be accelerated by
447shared state. Recipes that inherit this class should define their own
448:ref:`ref-tasks-deploy` function to copy the files to be
449deployed to :term:`DEPLOYDIR`, and use ``addtask`` to
450add the task at the appropriate place, which is usually after
451:ref:`ref-tasks-compile` or
452:ref:`ref-tasks-install`. The class then takes care of
453staging the files from ``DEPLOYDIR`` to ``DEPLOY_DIR_IMAGE``.
454
455.. _ref-classes-devshell:
456
457``devshell.bbclass``
458====================
459
460The ``devshell`` class adds the ``do_devshell`` task. Distribution
461policy dictates whether to include this class. See the ":ref:`platdev-appdev-devshell`"
462section in the Yocto Project Development Tasks Manual for more
463information about using ``devshell``.
464
465.. _ref-classes-devupstream:
466
467``devupstream.bbclass``
468=======================
469
470The ``devupstream`` class uses
471:term:`BBCLASSEXTEND` to add a variant of the
472recipe that fetches from an alternative URI (e.g. Git) instead of a
473tarball. Following is an example:
474::
475
476 BBCLASSEXTEND = "devupstream:target"
477 SRC_URI_class-devupstream = "git://git.example.com/example"
478 SRCREV_class-devupstream = "abcd1234"
479
480Adding the above statements to your recipe creates a variant that has
481:term:`DEFAULT_PREFERENCE` set to "-1".
482Consequently, you need to select the variant of the recipe to use it.
483Any development-specific adjustments can be done by using the
484``class-devupstream`` override. Here is an example:
485::
486
487 DEPENDS_append_class-devupstream = " gperf-native"
488 do_configure_prepend_class-devupstream() {
489 touch ${S}/README
490 }
491
492The class
493currently only supports creating a development variant of the target
494recipe, not ``native`` or ``nativesdk`` variants.
495
496The ``BBCLASSEXTEND`` syntax (i.e. ``devupstream:target``) provides
497support for ``native`` and ``nativesdk`` variants. Consequently, this
498functionality can be added in a future release.
499
500Support for other version control systems such as Subversion is limited
501due to BitBake's automatic fetch dependencies (e.g.
502``subversion-native``).
503
504.. _ref-classes-distutils:
505
506``distutils*.bbclass``
507======================
508
509The ``distutils*`` classes support recipes for Python version 2.x
510extensions, which are simple. These recipes usually only need to point
511to the source's archive and then inherit the proper class. Building is
512split into two methods depending on which method the module authors
513used.
514
515- Extensions that use an Autotools-based build system require Autotools
516 and the classes based on ``distutils`` in their recipes.
517
518- Extensions that use build systems based on ``distutils`` require the
519 ``distutils`` class in their recipes.
520
521- Extensions that use build systems based on ``setuptools`` require the
522 :ref:`setuptools <ref-classes-setuptools>` class in their recipes.
523
524The ``distutils-common-base`` class is required by some of the
525``distutils*`` classes to provide common Python2 support.
526
527.. _ref-classes-distutils3:
528
529``distutils3*.bbclass``
530=======================
531
532The ``distutils3*`` classes support recipes for Python version 3.x
533extensions, which are simple. These recipes usually only need to point
534to the source's archive and then inherit the proper class. Building is
535split into three methods depending on which method the module authors
536used.
537
538- Extensions that use an Autotools-based build system require Autotools
539 and ``distutils``-based classes in their recipes.
540
541- Extensions that use ``distutils``-based build systems require the
542 ``distutils`` class in their recipes.
543
544- Extensions that use build systems based on ``setuptools3`` require
545 the :ref:`setuptools3 <ref-classes-setuptools>` class in their
546 recipes.
547
548The ``distutils3*`` classes either inherit their corresponding
549``distutils*`` class or replicate them using a Python3 version instead
550(e.g. ``distutils3-base`` inherits ``distutils-common-base``, which is
551the same as ``distutils-base`` but inherits ``python3native`` instead of
552``pythonnative``).
553
554.. _ref-classes-externalsrc:
555
556``externalsrc.bbclass``
557=======================
558
559The ``externalsrc`` class supports building software from source code
560that is external to the OpenEmbedded build system. Building software
561from an external source tree means that the build system's normal fetch,
562unpack, and patch process is not used.
563
564By default, the OpenEmbedded build system uses the :term:`S`
565and :term:`B` variables to locate unpacked recipe source code
566and to build it, respectively. When your recipe inherits the
567``externalsrc`` class, you use the
568:term:`EXTERNALSRC` and
569:term:`EXTERNALSRC_BUILD` variables to
570ultimately define ``S`` and ``B``.
571
572By default, this class expects the source code to support recipe builds
573that use the :term:`B` variable to point to the directory in
574which the OpenEmbedded build system places the generated objects built
575from the recipes. By default, the ``B`` directory is set to the
576following, which is separate from the source directory (``S``):
577::
578
579 ${WORKDIR}/${BPN}/{PV}/
580
581See these variables for more information:
582:term:`WORKDIR`, :term:`BPN`, and
583:term:`PV`,
584
585For more information on the ``externalsrc`` class, see the comments in
586``meta/classes/externalsrc.bbclass`` in the :term:`Source Directory`.
587For information on how to use the
588``externalsrc`` class, see the
589":ref:`dev-manual/dev-manual-common-tasks:building software from an external source`"
590section in the Yocto Project Development Tasks Manual.
591
592.. _ref-classes-extrausers:
593
594``extrausers.bbclass``
595======================
596
597The ``extrausers`` class allows additional user and group configuration
598to be applied at the image level. Inheriting this class either globally
599or from an image recipe allows additional user and group operations to
600be performed using the
601:term:`EXTRA_USERS_PARAMS` variable.
602
603.. note::
604
605 The user and group operations added using the
606 extrausers
607 class are not tied to a specific recipe outside of the recipe for the
608 image. Thus, the operations can be performed across the image as a
609 whole. Use the
610 useradd
611 class to add user and group configuration to a specific recipe.
612
613Here is an example that uses this class in an image recipe:
614::
615
616 inherit extrausers
617 EXTRA_USERS_PARAMS = "\
618 useradd -p '' tester; \
619 groupadd developers; \
620 userdel nobody; \
621 groupdel -g video; \
622 groupmod -g 1020 developers; \
623 usermod -s /bin/sh tester; \
624 "
625
626Here is an example that adds two users named "tester-jim" and "tester-sue" and assigns
627passwords:
628::
629
630 inherit extrausers
631 EXTRA_USERS_PARAMS = "\
632 useradd -P tester01 tester-jim; \
633 useradd -P tester01 tester-sue; \
634 "
635
636Finally, here is an example that sets the root password to "1876*18":
637::
638
639 inherit extrausers
640 EXTRA_USERS_PARAMS = "\
641 usermod -P 1876*18 root; \
642 "
643
644.. _ref-classes-features_check:
645
646``features_check.bbclass``
647=================================
648
649The ``features_check`` class allows individual recipes to check
650for required and conflicting
651:term:`DISTRO_FEATURES`, :term:`MACHINE_FEATURES` or :term:`COMBINED_FEATURES`.
652
653This class provides support for the following variables:
654
655- :term:`REQUIRED_DISTRO_FEATURES`
656- :term:`CONFLICT_DISTRO_FEATURES`
657- :term:`ANY_OF_DISTRO_FEATURES`
658- ``REQUIRED_MACHINE_FEATURES``
659- ``CONFLICT_MACHINE_FEATURES``
660- ``ANY_OF_MACHINE_FEATURES``
661- ``REQUIRED_COMBINED_FEATURES``
662- ``CONFLICT_COMBINED_FEATURES``
663- ``ANY_OF_COMBINED_FEATURES``
664
665If any conditions specified in the recipe using the above
666variables are not met, the recipe will be skipped, and if the
667build system attempts to build the recipe then an error will be
668triggered.
669
670.. _ref-classes-fontcache:
671
672``fontcache.bbclass``
673=====================
674
675The ``fontcache`` class generates the proper post-install and
676post-remove (postinst and postrm) scriptlets for font packages. These
677scriptlets call ``fc-cache`` (part of ``Fontconfig``) to add the fonts
678to the font information cache. Since the cache files are
679architecture-specific, ``fc-cache`` runs using QEMU if the postinst
680scriptlets need to be run on the build host during image creation.
681
682If the fonts being installed are in packages other than the main
683package, set :term:`FONT_PACKAGES` to specify the
684packages containing the fonts.
685
686.. _ref-classes-fs-uuid:
687
688``fs-uuid.bbclass``
689===================
690
691The ``fs-uuid`` class extracts UUID from
692``${``\ :term:`ROOTFS`\ ``}``, which must have been built
693by the time that this function gets called. The ``fs-uuid`` class only
694works on ``ext`` file systems and depends on ``tune2fs``.
695
696.. _ref-classes-gconf:
697
698``gconf.bbclass``
699=================
700
701The ``gconf`` class provides common functionality for recipes that need
702to install GConf schemas. The schemas will be put into a separate
703package (``${``\ :term:`PN`\ ``}-gconf``) that is created
704automatically when this class is inherited. This package uses the
705appropriate post-install and post-remove (postinst/postrm) scriptlets to
706register and unregister the schemas in the target image.
707
708.. _ref-classes-gettext:
709
710``gettext.bbclass``
711===================
712
713The ``gettext`` class provides support for building software that uses
714the GNU ``gettext`` internationalization and localization system. All
715recipes building software that use ``gettext`` should inherit this
716class.
717
718.. _ref-classes-gnomebase:
719
720``gnomebase.bbclass``
721=====================
722
723The ``gnomebase`` class is the base class for recipes that build
724software from the GNOME stack. This class sets
725:term:`SRC_URI` to download the source from the GNOME
726mirrors as well as extending :term:`FILES` with the typical
727GNOME installation paths.
728
729.. _ref-classes-gobject-introspection:
730
731``gobject-introspection.bbclass``
732=================================
733
734Provides support for recipes building software that supports GObject
735introspection. This functionality is only enabled if the
736"gobject-introspection-data" feature is in
737:term:`DISTRO_FEATURES` as well as
738"qemu-usermode" being in
739:term:`MACHINE_FEATURES`.
740
741.. note::
742
743 This functionality is backfilled by default and, if not applicable,
744 should be disabled through ``DISTRO_FEATURES_BACKFILL_CONSIDERED`` or
745 ``MACHINE_FEATURES_BACKFILL_CONSIDERED``, respectively.
746
747.. _ref-classes-grub-efi:
748
749``grub-efi.bbclass``
750====================
751
752The ``grub-efi`` class provides ``grub-efi``-specific functions for
753building bootable images.
754
755This class supports several variables:
756
757- :term:`INITRD`: Indicates list of filesystem images to
758 concatenate and use as an initial RAM disk (initrd) (optional).
759
760- :term:`ROOTFS`: Indicates a filesystem image to include
761 as the root filesystem (optional).
762
763- :term:`GRUB_GFXSERIAL`: Set this to "1" to have
764 graphics and serial in the boot menu.
765
766- :term:`LABELS`: A list of targets for the automatic
767 configuration.
768
769- :term:`APPEND`: An override list of append strings for
770 each ``LABEL``.
771
772- :term:`GRUB_OPTS`: Additional options to add to the
773 configuration (optional). Options are delimited using semi-colon
774 characters (``;``).
775
776- :term:`GRUB_TIMEOUT`: Timeout before executing
777 the default ``LABEL`` (optional).
778
779.. _ref-classes-gsettings:
780
781``gsettings.bbclass``
782=====================
783
784The ``gsettings`` class provides common functionality for recipes that
785need to install GSettings (glib) schemas. The schemas are assumed to be
786part of the main package. Appropriate post-install and post-remove
787(postinst/postrm) scriptlets are added to register and unregister the
788schemas in the target image.
789
790.. _ref-classes-gtk-doc:
791
792``gtk-doc.bbclass``
793===================
794
795The ``gtk-doc`` class is a helper class to pull in the appropriate
796``gtk-doc`` dependencies and disable ``gtk-doc``.
797
798.. _ref-classes-gtk-icon-cache:
799
800``gtk-icon-cache.bbclass``
801==========================
802
803The ``gtk-icon-cache`` class generates the proper post-install and
804post-remove (postinst/postrm) scriptlets for packages that use GTK+ and
805install icons. These scriptlets call ``gtk-update-icon-cache`` to add
806the fonts to GTK+'s icon cache. Since the cache files are
807architecture-specific, ``gtk-update-icon-cache`` is run using QEMU if
808the postinst scriptlets need to be run on the build host during image
809creation.
810
811.. _ref-classes-gtk-immodules-cache:
812
813``gtk-immodules-cache.bbclass``
814===============================
815
816The ``gtk-immodules-cache`` class generates the proper post-install and
817post-remove (postinst/postrm) scriptlets for packages that install GTK+
818input method modules for virtual keyboards. These scriptlets call
819``gtk-update-icon-cache`` to add the input method modules to the cache.
820Since the cache files are architecture-specific,
821``gtk-update-icon-cache`` is run using QEMU if the postinst scriptlets
822need to be run on the build host during image creation.
823
824If the input method modules being installed are in packages other than
825the main package, set
826:term:`GTKIMMODULES_PACKAGES` to specify
827the packages containing the modules.
828
829.. _ref-classes-gzipnative:
830
831``gzipnative.bbclass``
832======================
833
834The ``gzipnative`` class enables the use of different native versions of
835``gzip`` and ``pigz`` rather than the versions of these tools from the
836build host.
837
838.. _ref-classes-icecc:
839
840``icecc.bbclass``
841=================
842
843The ``icecc`` class supports
844`Icecream <https://github.com/icecc/icecream>`__, which facilitates
845taking compile jobs and distributing them among remote machines.
846
847The class stages directories with symlinks from ``gcc`` and ``g++`` to
848``icecc``, for both native and cross compilers. Depending on each
849configure or compile, the OpenEmbedded build system adds the directories
850at the head of the ``PATH`` list and then sets the ``ICECC_CXX`` and
851``ICEC_CC`` variables, which are the paths to the ``g++`` and ``gcc``
852compilers, respectively.
853
854For the cross compiler, the class creates a ``tar.gz`` file that
855contains the Yocto Project toolchain and sets ``ICECC_VERSION``, which
856is the version of the cross-compiler used in the cross-development
857toolchain, accordingly.
858
859The class handles all three different compile stages (i.e native
860,cross-kernel and target) and creates the necessary environment
861``tar.gz`` file to be used by the remote machines. The class also
862supports SDK generation.
863
864If :term:`ICECC_PATH` is not set in your
865``local.conf`` file, then the class tries to locate the ``icecc`` binary
866using ``which``. If :term:`ICECC_ENV_EXEC` is set
867in your ``local.conf`` file, the variable should point to the
868``icecc-create-env`` script provided by the user. If you do not point to
869a user-provided script, the build system uses the default script
870provided by the recipe ``icecc-create-env-native.bb``.
871
872.. note::
873
874 This script is a modified version and not the one that comes with
875 icecc.
876
877If you do not want the Icecream distributed compile support to apply to
878specific recipes or classes, you can effectively "blacklist" them by
879listing the recipes and classes using the
880:term:`ICECC_USER_PACKAGE_BL` and
881:term:`ICECC_USER_CLASS_BL`, variables,
882respectively, in your ``local.conf`` file. Doing so causes the
883OpenEmbedded build system to handle these compilations locally.
884
885Additionally, you can list recipes using the
886:term:`ICECC_USER_PACKAGE_WL` variable in
887your ``local.conf`` file to force ``icecc`` to be enabled for recipes
888using an empty :term:`PARALLEL_MAKE` variable.
889
890Inheriting the ``icecc`` class changes all sstate signatures.
891Consequently, if a development team has a dedicated build system that
892populates :term:`SSTATE_MIRRORS` and they want to
893reuse sstate from ``SSTATE_MIRRORS``, then all developers and the build
894system need to either inherit the ``icecc`` class or nobody should.
895
896At the distribution level, you can inherit the ``icecc`` class to be
897sure that all builders start with the same sstate signatures. After
898inheriting the class, you can then disable the feature by setting the
899:term:`ICECC_DISABLED` variable to "1" as follows:
900::
901
902 INHERIT_DISTRO_append = " icecc"
903 ICECC_DISABLED ??= "1"
904
905This practice
906makes sure everyone is using the same signatures but also requires
907individuals that do want to use Icecream to enable the feature
908individually as follows in your ``local.conf`` file:
909::
910
911 ICECC_DISABLED = ""
912
913.. _ref-classes-image:
914
915``image.bbclass``
916=================
917
918The ``image`` class helps support creating images in different formats.
919First, the root filesystem is created from packages using one of the
920``rootfs*.bbclass`` files (depending on the package format used) and
921then one or more image files are created.
922
923- The ``IMAGE_FSTYPES`` variable controls the types of images to
924 generate.
925
926- The ``IMAGE_INSTALL`` variable controls the list of packages to
927 install into the image.
928
929For information on customizing images, see the
930":ref:`usingpoky-extend-customimage`" section
931in the Yocto Project Development Tasks Manual. For information on how
932images are created, see the
933":ref:`images-dev-environment`" section in the
934Yocto Project Overview and Concpets Manual.
935
936.. _ref-classes-image-buildinfo:
937
938``image-buildinfo.bbclass``
939===========================
940
941The ``image-buildinfo`` class writes information to the target
942filesystem on ``/etc/build``.
943
944.. _ref-classes-image_types:
945
946``image_types.bbclass``
947=======================
948
949The ``image_types`` class defines all of the standard image output types
950that you can enable through the
951:term:`IMAGE_FSTYPES` variable. You can use this
952class as a reference on how to add support for custom image output
953types.
954
955By default, the :ref:`image <ref-classes-image>` class automatically
956enables the ``image_types`` class. The ``image`` class uses the
957``IMGCLASSES`` variable as follows:
958::
959
960 IMGCLASSES = "rootfs_${IMAGE_PKGTYPE} image_types ${IMAGE_CLASSES}"
961 IMGCLASSES += "${@['populate_sdk_base', 'populate_sdk_ext']['linux' in d.getVar("SDK_OS")]}"
962 IMGCLASSES += "${@bb.utils.contains_any('IMAGE_FSTYPES', 'live iso hddimg', 'image-live', '', d)}"
963 IMGCLASSES += "${@bb.utils.contains('IMAGE_FSTYPES', 'container', 'image-container', '', d)}"
964 IMGCLASSES += "image_types_wic"
965 IMGCLASSES += "rootfs-postcommands"
966 IMGCLASSES += "image-postinst-intercepts"
967 inherit ${IMGCLASSES}
968
969The ``image_types`` class also handles conversion and compression of images.
970
971.. note::
972
973 To build a VMware VMDK image, you need to add "wic.vmdk" to
974 ``IMAGE_FSTYPES``. This would also be similar for Virtual Box Virtual Disk
975 Image ("vdi") and QEMU Copy On Write Version 2 ("qcow2") images.
976
977.. _ref-classes-image-live:
978
979``image-live.bbclass``
980======================
981
982This class controls building "live" (i.e. HDDIMG and ISO) images. Live
983images contain syslinux for legacy booting, as well as the bootloader
984specified by :term:`EFI_PROVIDER` if
985:term:`MACHINE_FEATURES` contains "efi".
986
987Normally, you do not use this class directly. Instead, you add "live" to
988:term:`IMAGE_FSTYPES`.
989
990.. _ref-classes-image-mklibs:
991
992``image-mklibs.bbclass``
993========================
994
995The ``image-mklibs`` class enables the use of the ``mklibs`` utility
996during the :ref:`ref-tasks-rootfs` task, which optimizes
997the size of libraries contained in the image.
998
999By default, the class is enabled in the ``local.conf.template`` using
1000the :term:`USER_CLASSES` variable as follows:
1001::
1002
1003 USER_CLASSES ?= "buildstats image-mklibs image-prelink"
1004
1005.. _ref-classes-image-prelink:
1006
1007``image-prelink.bbclass``
1008=========================
1009
1010The ``image-prelink`` class enables the use of the ``prelink`` utility
1011during the :ref:`ref-tasks-rootfs` task, which optimizes
1012the dynamic linking of shared libraries to reduce executable startup
1013time.
1014
1015By default, the class is enabled in the ``local.conf.template`` using
1016the :term:`USER_CLASSES` variable as follows:
1017::
1018
1019 USER_CLASSES ?= "buildstats image-mklibs image-prelink"
1020
1021.. _ref-classes-insane:
1022
1023``insane.bbclass``
1024==================
1025
1026The ``insane`` class adds a step to the package generation process so
1027that output quality assurance checks are generated by the OpenEmbedded
1028build system. A range of checks are performed that check the build's
1029output for common problems that show up during runtime. Distribution
1030policy usually dictates whether to include this class.
1031
1032You can configure the sanity checks so that specific test failures
1033either raise a warning or an error message. Typically, failures for new
1034tests generate a warning. Subsequent failures for the same test would
1035then generate an error message once the metadata is in a known and good
1036condition. See the ":doc:`ref-qa-checks`" Chapter for a list of all the warning
1037and error messages you might encounter using a default configuration.
1038
1039Use the :term:`WARN_QA` and
1040:term:`ERROR_QA` variables to control the behavior of
1041these checks at the global level (i.e. in your custom distro
1042configuration). However, to skip one or more checks in recipes, you
1043should use :term:`INSANE_SKIP`. For example, to skip
1044the check for symbolic link ``.so`` files in the main package of a
1045recipe, add the following to the recipe. You need to realize that the
1046package name override, in this example ``${PN}``, must be used:
1047::
1048
1049 INSANE_SKIP_${PN} += "dev-so"
1050
1051Please keep in mind that the QA checks
1052exist in order to detect real or potential problems in the packaged
1053output. So exercise caution when disabling these checks.
1054
1055The following list shows the tests you can list with the ``WARN_QA`` and
1056``ERROR_QA`` variables:
1057
1058- ``already-stripped:`` Checks that produced binaries have not
1059 already been stripped prior to the build system extracting debug
1060 symbols. It is common for upstream software projects to default to
1061 stripping debug symbols for output binaries. In order for debugging
1062 to work on the target using ``-dbg`` packages, this stripping must be
1063 disabled.
1064
1065- ``arch:`` Checks the Executable and Linkable Format (ELF) type, bit
1066 size, and endianness of any binaries to ensure they match the target
1067 architecture. This test fails if any binaries do not match the type
1068 since there would be an incompatibility. The test could indicate that
1069 the wrong compiler or compiler options have been used. Sometimes
1070 software, like bootloaders, might need to bypass this check.
1071
1072- ``buildpaths:`` Checks for paths to locations on the build host
1073 inside the output files. Currently, this test triggers too many false
1074 positives and thus is not normally enabled.
1075
1076- ``build-deps:`` Determines if a build-time dependency that is
1077 specified through :term:`DEPENDS`, explicit
1078 :term:`RDEPENDS`, or task-level dependencies exists
1079 to match any runtime dependency. This determination is particularly
1080 useful to discover where runtime dependencies are detected and added
1081 during packaging. If no explicit dependency has been specified within
1082 the metadata, at the packaging stage it is too late to ensure that
1083 the dependency is built, and thus you can end up with an error when
1084 the package is installed into the image during the
1085 :ref:`ref-tasks-rootfs` task because the auto-detected
1086 dependency was not satisfied. An example of this would be where the
1087 :ref:`update-rc.d <ref-classes-update-rc.d>` class automatically
1088 adds a dependency on the ``initscripts-functions`` package to
1089 packages that install an initscript that refers to
1090 ``/etc/init.d/functions``. The recipe should really have an explicit
1091 ``RDEPENDS`` for the package in question on ``initscripts-functions``
1092 so that the OpenEmbedded build system is able to ensure that the
1093 ``initscripts`` recipe is actually built and thus the
1094 ``initscripts-functions`` package is made available.
1095
1096- ``compile-host-path:`` Checks the
1097 :ref:`ref-tasks-compile` log for indications that
1098 paths to locations on the build host were used. Using such paths
1099 might result in host contamination of the build output.
1100
1101- ``debug-deps:`` Checks that all packages except ``-dbg`` packages
1102 do not depend on ``-dbg`` packages, which would cause a packaging
1103 bug.
1104
1105- ``debug-files:`` Checks for ``.debug`` directories in anything but
1106 the ``-dbg`` package. The debug files should all be in the ``-dbg``
1107 package. Thus, anything packaged elsewhere is incorrect packaging.
1108
1109- ``dep-cmp:`` Checks for invalid version comparison statements in
1110 runtime dependency relationships between packages (i.e. in
1111 :term:`RDEPENDS`,
1112 :term:`RRECOMMENDS`,
1113 :term:`RSUGGESTS`,
1114 :term:`RPROVIDES`,
1115 :term:`RREPLACES`, and
1116 :term:`RCONFLICTS` variable values). Any invalid
1117 comparisons might trigger failures or undesirable behavior when
1118 passed to the package manager.
1119
1120- ``desktop:`` Runs the ``desktop-file-validate`` program against any
1121 ``.desktop`` files to validate their contents against the
1122 specification for ``.desktop`` files.
1123
1124- ``dev-deps:`` Checks that all packages except ``-dev`` or
1125 ``-staticdev`` packages do not depend on ``-dev`` packages, which
1126 would be a packaging bug.
1127
1128- ``dev-so:`` Checks that the ``.so`` symbolic links are in the
1129 ``-dev`` package and not in any of the other packages. In general,
1130 these symlinks are only useful for development purposes. Thus, the
1131 ``-dev`` package is the correct location for them. Some very rare
1132 cases do exist for dynamically loaded modules where these symlinks
1133 are needed instead in the main package.
1134
1135- ``file-rdeps:`` Checks that file-level dependencies identified by
1136 the OpenEmbedded build system at packaging time are satisfied. For
1137 example, a shell script might start with the line ``#!/bin/bash``.
1138 This line would translate to a file dependency on ``/bin/bash``. Of
1139 the three package managers that the OpenEmbedded build system
1140 supports, only RPM directly handles file-level dependencies,
1141 resolving them automatically to packages providing the files.
1142 However, the lack of that functionality in the other two package
1143 managers does not mean the dependencies do not still need resolving.
1144 This QA check attempts to ensure that explicitly declared
1145 :term:`RDEPENDS` exist to handle any file-level
1146 dependency detected in packaged files.
1147
1148- ``files-invalid:`` Checks for :term:`FILES` variable
1149 values that contain "//", which is invalid.
1150
1151- ``host-user-contaminated:`` Checks that no package produced by the
1152 recipe contains any files outside of ``/home`` with a user or group
1153 ID that matches the user running BitBake. A match usually indicates
1154 that the files are being installed with an incorrect UID/GID, since
1155 target IDs are independent from host IDs. For additional information,
1156 see the section describing the
1157 :ref:`ref-tasks-install` task.
1158
1159- ``incompatible-license:`` Report when packages are excluded from
1160 being created due to being marked with a license that is in
1161 :term:`INCOMPATIBLE_LICENSE`.
1162
1163- ``install-host-path:`` Checks the
1164 :ref:`ref-tasks-install` log for indications that
1165 paths to locations on the build host were used. Using such paths
1166 might result in host contamination of the build output.
1167
1168- ``installed-vs-shipped:`` Reports when files have been installed
1169 within ``do_install`` but have not been included in any package by
1170 way of the :term:`FILES` variable. Files that do not
1171 appear in any package cannot be present in an image later on in the
1172 build process. Ideally, all installed files should be packaged or not
1173 installed at all. These files can be deleted at the end of
1174 ``do_install`` if the files are not needed in any package.
1175
1176- ``invalid-chars:`` Checks that the recipe metadata variables
1177 :term:`DESCRIPTION`,
1178 :term:`SUMMARY`, :term:`LICENSE`, and
1179 :term:`SECTION` do not contain non-UTF-8 characters.
1180 Some package managers do not support such characters.
1181
1182- ``invalid-packageconfig:`` Checks that no undefined features are
1183 being added to :term:`PACKAGECONFIG`. For
1184 example, any name "foo" for which the following form does not exist:
1185 ::
1186
1187 PACKAGECONFIG[foo] = "..."
1188
1189- ``la:`` Checks ``.la`` files for any ``TMPDIR`` paths. Any ``.la``
1190 file containing these paths is incorrect since ``libtool`` adds the
1191 correct sysroot prefix when using the files automatically itself.
1192
1193- ``ldflags:`` Ensures that the binaries were linked with the
1194 :term:`LDFLAGS` options provided by the build system.
1195 If this test fails, check that the ``LDFLAGS`` variable is being
1196 passed to the linker command.
1197
1198- ``libdir:`` Checks for libraries being installed into incorrect
1199 (possibly hardcoded) installation paths. For example, this test will
1200 catch recipes that install ``/lib/bar.so`` when ``${base_libdir}`` is
1201 "lib32". Another example is when recipes install
1202 ``/usr/lib64/foo.so`` when ``${libdir}`` is "/usr/lib".
1203
1204- ``libexec:`` Checks if a package contains files in
1205 ``/usr/libexec``. This check is not performed if the ``libexecdir``
1206 variable has been set explicitly to ``/usr/libexec``.
1207
1208- ``packages-list:`` Checks for the same package being listed
1209 multiple times through the :term:`PACKAGES` variable
1210 value. Installing the package in this manner can cause errors during
1211 packaging.
1212
1213- ``perm-config:`` Reports lines in ``fs-perms.txt`` that have an
1214 invalid format.
1215
1216- ``perm-line:`` Reports lines in ``fs-perms.txt`` that have an
1217 invalid format.
1218
1219- ``perm-link:`` Reports lines in ``fs-perms.txt`` that specify
1220 'link' where the specified target already exists.
1221
1222- ``perms:`` Currently, this check is unused but reserved.
1223
1224- ``pkgconfig:`` Checks ``.pc`` files for any
1225 :term:`TMPDIR`/:term:`WORKDIR` paths.
1226 Any ``.pc`` file containing these paths is incorrect since
1227 ``pkg-config`` itself adds the correct sysroot prefix when the files
1228 are accessed.
1229
1230- ``pkgname:`` Checks that all packages in
1231 :term:`PACKAGES` have names that do not contain
1232 invalid characters (i.e. characters other than 0-9, a-z, ., +, and
1233 -).
1234
1235- ``pkgv-undefined:`` Checks to see if the ``PKGV`` variable is
1236 undefined during :ref:`ref-tasks-package`.
1237
1238- ``pkgvarcheck:`` Checks through the variables
1239 :term:`RDEPENDS`,
1240 :term:`RRECOMMENDS`,
1241 :term:`RSUGGESTS`,
1242 :term:`RCONFLICTS`,
1243 :term:`RPROVIDES`,
1244 :term:`RREPLACES`, :term:`FILES`,
1245 :term:`ALLOW_EMPTY`, ``pkg_preinst``,
1246 ``pkg_postinst``, ``pkg_prerm`` and ``pkg_postrm``, and reports if
1247 there are variable sets that are not package-specific. Using these
1248 variables without a package suffix is bad practice, and might
1249 unnecessarily complicate dependencies of other packages within the
1250 same recipe or have other unintended consequences.
1251
1252- ``pn-overrides:`` Checks that a recipe does not have a name
1253 (:term:`PN`) value that appears in
1254 :term:`OVERRIDES`. If a recipe is named such that
1255 its ``PN`` value matches something already in ``OVERRIDES`` (e.g.
1256 ``PN`` happens to be the same as :term:`MACHINE` or
1257 :term:`DISTRO`), it can have unexpected consequences.
1258 For example, assignments such as ``FILES_${PN} = "xyz"`` effectively
1259 turn into ``FILES = "xyz"``.
1260
1261- ``rpaths:`` Checks for rpaths in the binaries that contain build
1262 system paths such as ``TMPDIR``. If this test fails, bad ``-rpath``
1263 options are being passed to the linker commands and your binaries
1264 have potential security issues.
1265
1266- ``split-strip:`` Reports that splitting or stripping debug symbols
1267 from binaries has failed.
1268
1269- ``staticdev:`` Checks for static library files (``*.a``) in
1270 non-``staticdev`` packages.
1271
1272- ``symlink-to-sysroot:`` Checks for symlinks in packages that point
1273 into :term:`TMPDIR` on the host. Such symlinks will
1274 work on the host, but are clearly invalid when running on the target.
1275
1276- ``textrel:`` Checks for ELF binaries that contain relocations in
1277 their ``.text`` sections, which can result in a performance impact at
1278 runtime. See the explanation for the ``ELF binary`` message in
1279 ":doc:`ref-qa-checks`" for more information regarding runtime performance
1280 issues.
1281
1282- ``unlisted-pkg-lics:`` Checks that all declared licenses applying
1283 for a package are also declared on the recipe level (i.e. any license
1284 in ``LICENSE_*`` should appear in :term:`LICENSE`).
1285
1286- ``useless-rpaths:`` Checks for dynamic library load paths (rpaths)
1287 in the binaries that by default on a standard system are searched by
1288 the linker (e.g. ``/lib`` and ``/usr/lib``). While these paths will
1289 not cause any breakage, they do waste space and are unnecessary.
1290
1291- ``var-undefined:`` Reports when variables fundamental to packaging
1292 (i.e. :term:`WORKDIR`,
1293 :term:`DEPLOY_DIR`, :term:`D`,
1294 :term:`PN`, and :term:`PKGD`) are undefined
1295 during :ref:`ref-tasks-package`.
1296
1297- ``version-going-backwards:`` If Build History is enabled, reports
1298 when a package being written out has a lower version than the
1299 previously written package under the same name. If you are placing
1300 output packages into a feed and upgrading packages on a target system
1301 using that feed, the version of a package going backwards can result
1302 in the target system not correctly upgrading to the "new" version of
1303 the package.
1304
1305 .. note::
1306
1307 If you are not using runtime package management on your target
1308 system, then you do not need to worry about this situation.
1309
1310- ``xorg-driver-abi:`` Checks that all packages containing Xorg
1311 drivers have ABI dependencies. The ``xserver-xorg`` recipe provides
1312 driver ABI names. All drivers should depend on the ABI versions that
1313 they have been built against. Driver recipes that include
1314 ``xorg-driver-input.inc`` or ``xorg-driver-video.inc`` will
1315 automatically get these versions. Consequently, you should only need
1316 to explicitly add dependencies to binary driver recipes.
1317
1318.. _ref-classes-insserv:
1319
1320``insserv.bbclass``
1321===================
1322
1323The ``insserv`` class uses the ``insserv`` utility to update the order
1324of symbolic links in ``/etc/rc?.d/`` within an image based on
1325dependencies specified by LSB headers in the ``init.d`` scripts
1326themselves.
1327
1328.. _ref-classes-kernel:
1329
1330``kernel.bbclass``
1331==================
1332
1333The ``kernel`` class handles building Linux kernels. The class contains
1334code to build all kernel trees. All needed headers are staged into the
1335``STAGING_KERNEL_DIR`` directory to allow out-of-tree module builds
1336using the :ref:`module <ref-classes-module>` class.
1337
1338This means that each built kernel module is packaged separately and
1339inter-module dependencies are created by parsing the ``modinfo`` output.
1340If all modules are required, then installing the ``kernel-modules``
1341package installs all packages with modules and various other kernel
1342packages such as ``kernel-vmlinux``.
1343
1344The ``kernel`` class contains logic that allows you to embed an initial
1345RAM filesystem (initramfs) image when you build the kernel image. For
1346information on how to build an initramfs, see the
1347":ref:`building-an-initramfs-image`" section in
1348the Yocto Project Development Tasks Manual.
1349
1350Various other classes are used by the ``kernel`` and ``module`` classes
1351internally including the :ref:`kernel-arch <ref-classes-kernel-arch>`,
1352:ref:`module-base <ref-classes-module-base>`, and
1353:ref:`linux-kernel-base <ref-classes-linux-kernel-base>` classes.
1354
1355.. _ref-classes-kernel-arch:
1356
1357``kernel-arch.bbclass``
1358=======================
1359
1360The ``kernel-arch`` class sets the ``ARCH`` environment variable for
1361Linux kernel compilation (including modules).
1362
1363.. _ref-classes-kernel-devicetree:
1364
1365``kernel-devicetree.bbclass``
1366=============================
1367
1368The ``kernel-devicetree`` class, which is inherited by the
1369:ref:`kernel <ref-classes-kernel>` class, supports device tree
1370generation.
1371
1372.. _ref-classes-kernel-fitimage:
1373
1374``kernel-fitimage.bbclass``
1375===========================
1376
1377The ``kernel-fitimage`` class provides support to pack a kernel Image,
1378device trees and a RAM disk into a single FIT image. In theory, a FIT
1379image can support any number of kernels, RAM disks and device-trees.
1380However, ``kernel-fitimage`` currently only supports
1381limited usescases: just one kernel image, an optional RAM disk, and
1382any number of device tree.
1383
1384To create a FIT image, it is required that :term:`KERNEL_CLASSES`
1385is set to "kernel-fitimage" and :term:`KERNEL_IMAGETYPE`
1386is set to "fitImage".
1387
1388The options for the device tree compiler passed to mkimage -D feature
1389when creating the FIT image are specified using the
1390:term:`UBOOT_MKIMAGE_DTCOPTS` variable.
1391
1392Only a single kernel can be added to the FIT image created by
1393``kernel-fitimage`` and the kernel image in FIT is mandatory. The
1394address where the kernel image is to be loaded by U-boot is
1395specified by :term:`UBOOT_LOADADDRESS` and the entrypoint by
1396:term:`UBOOT_ENTRYPOINT`.
1397
1398Multiple device trees can be added to the FIT image created by
1399``kernel-fitimage`` and the device tree is optional.
1400The address where the device tree is to be loaded by U-boot is
1401specified by :term:`UBOOT_DTBO_LOADADDRESS` for device tree overlays
1402and by :term:`UBOOT_DTB_LOADADDRESS` for device tree binaries.
1403
1404Only a single RAM disk can be added to the FIT image created by
1405``kernel-fitimage`` and the RAM disk in FIT is optional.
1406The address where the RAM disk image is to be loaded by U-boot
1407is specified by :term:`UBOOT_RD_LOADADDRESS` and the entrypoint by
1408:term:`UBOOT_RD_ENTRYPOINT`. The ramdisk is added to FIT image when
1409:term:`INITRAMFS_IMAGE` is specified.
1410
1411The FIT image generated by ``kernel-fitimage`` class is signed when the
1412variables :term:`UBOOT_SIGN_ENABLE`, :term:`UBOOT_MKIMAGE_DTCOPTS`,
1413:term:`UBOOT_SIGN_KEYDIR` and :term:`UBOOT_SIGN_KEYNAME` are set
1414appropriately. The default values used for :term:`FIT_HASH_ALG` and
1415:term:`FIT_SIGN_ALG` in ``kernel-fitimage`` are "sha256" and
1416"rsa2048" respectively.
1417
1418
1419.. _ref-classes-kernel-grub:
1420
1421``kernel-grub.bbclass``
1422=======================
1423
1424The ``kernel-grub`` class updates the boot area and the boot menu with
1425the kernel as the priority boot mechanism while installing a RPM to
1426update the kernel on a deployed target.
1427
1428.. _ref-classes-kernel-module-split:
1429
1430``kernel-module-split.bbclass``
1431===============================
1432
1433The ``kernel-module-split`` class provides common functionality for
1434splitting Linux kernel modules into separate packages.
1435
1436.. _ref-classes-kernel-uboot:
1437
1438``kernel-uboot.bbclass``
1439========================
1440
1441The ``kernel-uboot`` class provides support for building from
1442vmlinux-style kernel sources.
1443
1444.. _ref-classes-kernel-uimage:
1445
1446``kernel-uimage.bbclass``
1447=========================
1448
1449The ``kernel-uimage`` class provides support to pack uImage.
1450
1451.. _ref-classes-kernel-yocto:
1452
1453``kernel-yocto.bbclass``
1454========================
1455
1456The ``kernel-yocto`` class provides common functionality for building
1457from linux-yocto style kernel source repositories.
1458
1459.. _ref-classes-kernelsrc:
1460
1461``kernelsrc.bbclass``
1462=====================
1463
1464The ``kernelsrc`` class sets the Linux kernel source and version.
1465
1466.. _ref-classes-lib_package:
1467
1468``lib_package.bbclass``
1469=======================
1470
1471The ``lib_package`` class supports recipes that build libraries and
1472produce executable binaries, where those binaries should not be
1473installed by default along with the library. Instead, the binaries are
1474added to a separate ``${``\ :term:`PN`\ ``}-bin`` package to
1475make their installation optional.
1476
1477.. _ref-classes-libc*:
1478
1479``libc*.bbclass``
1480=================
1481
1482The ``libc*`` classes support recipes that build packages with ``libc``:
1483
1484- The ``libc-common`` class provides common support for building with
1485 ``libc``.
1486
1487- The ``libc-package`` class supports packaging up ``glibc`` and
1488 ``eglibc``.
1489
1490.. _ref-classes-license:
1491
1492``license.bbclass``
1493===================
1494
1495The ``license`` class provides license manifest creation and license
1496exclusion. This class is enabled by default using the default value for
1497the :term:`INHERIT_DISTRO` variable.
1498
1499.. _ref-classes-linux-kernel-base:
1500
1501``linux-kernel-base.bbclass``
1502=============================
1503
1504The ``linux-kernel-base`` class provides common functionality for
1505recipes that build out of the Linux kernel source tree. These builds
1506goes beyond the kernel itself. For example, the Perf recipe also
1507inherits this class.
1508
1509.. _ref-classes-linuxloader:
1510
1511``linuxloader.bbclass``
1512=======================
1513
1514Provides the function ``linuxloader()``, which gives the value of the
1515dynamic loader/linker provided on the platform. This value is used by a
1516number of other classes.
1517
1518.. _ref-classes-logging:
1519
1520``logging.bbclass``
1521===================
1522
1523The ``logging`` class provides the standard shell functions used to log
1524messages for various BitBake severity levels (i.e. ``bbplain``,
1525``bbnote``, ``bbwarn``, ``bberror``, ``bbfatal``, and ``bbdebug``).
1526
1527This class is enabled by default since it is inherited by the ``base``
1528class.
1529
1530.. _ref-classes-meta:
1531
1532``meta.bbclass``
1533================
1534
1535The ``meta`` class is inherited by recipes that do not build any output
1536packages themselves, but act as a "meta" target for building other
1537recipes.
1538
1539.. _ref-classes-metadata_scm:
1540
1541``metadata_scm.bbclass``
1542========================
1543
1544The ``metadata_scm`` class provides functionality for querying the
1545branch and revision of a Source Code Manager (SCM) repository.
1546
1547The :ref:`base <ref-classes-base>` class uses this class to print the
1548revisions of each layer before starting every build. The
1549``metadata_scm`` class is enabled by default because it is inherited by
1550the ``base`` class.
1551
1552.. _ref-classes-migrate_localcount:
1553
1554``migrate_localcount.bbclass``
1555==============================
1556
1557The ``migrate_localcount`` class verifies a recipe's localcount data and
1558increments it appropriately.
1559
1560.. _ref-classes-mime:
1561
1562``mime.bbclass``
1563================
1564
1565The ``mime`` class generates the proper post-install and post-remove
1566(postinst/postrm) scriptlets for packages that install MIME type files.
1567These scriptlets call ``update-mime-database`` to add the MIME types to
1568the shared database.
1569
1570.. _ref-classes-mirrors:
1571
1572``mirrors.bbclass``
1573===================
1574
1575The ``mirrors`` class sets up some standard
1576:term:`MIRRORS` entries for source code mirrors. These
1577mirrors provide a fall-back path in case the upstream source specified
1578in :term:`SRC_URI` within recipes is unavailable.
1579
1580This class is enabled by default since it is inherited by the
1581:ref:`base <ref-classes-base>` class.
1582
1583.. _ref-classes-module:
1584
1585``module.bbclass``
1586==================
1587
1588The ``module`` class provides support for building out-of-tree Linux
1589kernel modules. The class inherits the
1590:ref:`module-base <ref-classes-module-base>` and
1591:ref:`kernel-module-split <ref-classes-kernel-module-split>` classes,
1592and implements the :ref:`ref-tasks-compile` and
1593:ref:`ref-tasks-install` tasks. The class provides
1594everything needed to build and package a kernel module.
1595
1596For general information on out-of-tree Linux kernel modules, see the
1597":ref:`kernel-dev/kernel-dev-common:incorporating out-of-tree modules`"
1598section in the Yocto Project Linux Kernel Development Manual.
1599
1600.. _ref-classes-module-base:
1601
1602``module-base.bbclass``
1603=======================
1604
1605The ``module-base`` class provides the base functionality for building
1606Linux kernel modules. Typically, a recipe that builds software that
1607includes one or more kernel modules and has its own means of building
1608the module inherits this class as opposed to inheriting the
1609:ref:`module <ref-classes-module>` class.
1610
1611.. _ref-classes-multilib*:
1612
1613``multilib*.bbclass``
1614=====================
1615
1616The ``multilib*`` classes provide support for building libraries with
1617different target optimizations or target architectures and installing
1618them side-by-side in the same image.
1619
1620For more information on using the Multilib feature, see the
1621":ref:`combining-multiple-versions-library-files-into-one-image`"
1622section in the Yocto Project Development Tasks Manual.
1623
1624.. _ref-classes-native:
1625
1626``native.bbclass``
1627==================
1628
1629The ``native`` class provides common functionality for recipes that
1630build tools to run on the :term:`Build Host` (i.e. tools that use the compiler
1631or other tools from the build host).
1632
1633You can create a recipe that builds tools that run natively on the host
1634a couple different ways:
1635
1636- Create a myrecipe\ ``-native.bb`` recipe that inherits the ``native``
1637 class. If you use this method, you must order the inherit statement
1638 in the recipe after all other inherit statements so that the
1639 ``native`` class is inherited last.
1640
1641 .. note::
1642
1643 When creating a recipe this way, the recipe name must follow this
1644 naming convention:
1645 ::
1646
1647 myrecipe-native.bb
1648
1649
1650 Not using this naming convention can lead to subtle problems
1651 caused by existing code that depends on that naming convention.
1652
1653- Create or modify a target recipe that contains the following:
1654 ::
1655
1656 BBCLASSEXTEND = "native"
1657
1658 Inside the
1659 recipe, use ``_class-native`` and ``_class-target`` overrides to
1660 specify any functionality specific to the respective native or target
1661 case.
1662
1663Although applied differently, the ``native`` class is used with both
1664methods. The advantage of the second method is that you do not need to
1665have two separate recipes (assuming you need both) for native and
1666target. All common parts of the recipe are automatically shared.
1667
1668.. _ref-classes-nativesdk:
1669
1670``nativesdk.bbclass``
1671=====================
1672
1673The ``nativesdk`` class provides common functionality for recipes that
1674wish to build tools to run as part of an SDK (i.e. tools that run on
1675:term:`SDKMACHINE`).
1676
1677You can create a recipe that builds tools that run on the SDK machine a
1678couple different ways:
1679
1680- Create a ``nativesdk-``\ myrecipe\ ``.bb`` recipe that inherits the
1681 ``nativesdk`` class. If you use this method, you must order the
1682 inherit statement in the recipe after all other inherit statements so
1683 that the ``nativesdk`` class is inherited last.
1684
1685- Create a ``nativesdk`` variant of any recipe by adding the following:
1686 ::
1687
1688 BBCLASSEXTEND = "nativesdk"
1689
1690 Inside the
1691 recipe, use ``_class-nativesdk`` and ``_class-target`` overrides to
1692 specify any functionality specific to the respective SDK machine or
1693 target case.
1694
1695.. note::
1696
1697 When creating a recipe, you must follow this naming convention:
1698 ::
1699
1700 nativesdk-myrecipe.bb
1701
1702
1703 Not doing so can lead to subtle problems because code exists that
1704 depends on the naming convention.
1705
1706Although applied differently, the ``nativesdk`` class is used with both
1707methods. The advantage of the second method is that you do not need to
1708have two separate recipes (assuming you need both) for the SDK machine
1709and the target. All common parts of the recipe are automatically shared.
1710
1711.. _ref-classes-nopackages:
1712
1713``nopackages.bbclass``
1714======================
1715
1716Disables packaging tasks for those recipes and classes where packaging
1717is not needed.
1718
1719.. _ref-classes-npm:
1720
1721``npm.bbclass``
1722===============
1723
1724Provides support for building Node.js software fetched using the `node
1725package manager (NPM) <https://en.wikipedia.org/wiki/Npm_(software)>`__.
1726
1727.. note::
1728
1729 Currently, recipes inheriting this class must use the ``npm://``
1730 fetcher to have dependencies fetched and packaged automatically.
1731
1732For information on how to create NPM packages, see the
1733":ref:`dev-manual/dev-manual-common-tasks:creating node package manager (npm) packages`"
1734section in the Yocto Project Development Tasks Manual.
1735
1736.. _ref-classes-oelint:
1737
1738``oelint.bbclass``
1739==================
1740
1741The ``oelint`` class is an obsolete lint checking tool that exists in
1742``meta/classes`` in the :term:`Source Directory`.
1743
1744A number of classes exist that could be generally useful in OE-Core but
1745are never actually used within OE-Core itself. The ``oelint`` class is
1746one such example. However, being aware of this class can reduce the
1747proliferation of different versions of similar classes across multiple
1748layers.
1749
1750.. _ref-classes-own-mirrors:
1751
1752``own-mirrors.bbclass``
1753=======================
1754
1755The ``own-mirrors`` class makes it easier to set up your own
1756:term:`PREMIRRORS` from which to first fetch source
1757before attempting to fetch it from the upstream specified in
1758:term:`SRC_URI` within each recipe.
1759
1760To use this class, inherit it globally and specify
1761:term:`SOURCE_MIRROR_URL`. Here is an example:
1762::
1763
1764 INHERIT += "own-mirrors"
1765 SOURCE_MIRROR_URL = "http://example.com/my-source-mirror"
1766
1767You can specify only a single URL
1768in ``SOURCE_MIRROR_URL``.
1769
1770.. _ref-classes-package:
1771
1772``package.bbclass``
1773===================
1774
1775The ``package`` class supports generating packages from a build's
1776output. The core generic functionality is in ``package.bbclass``. The
1777code specific to particular package types resides in these
1778package-specific classes:
1779:ref:`package_deb <ref-classes-package_deb>`,
1780:ref:`package_rpm <ref-classes-package_rpm>`,
1781:ref:`package_ipk <ref-classes-package_ipk>`, and
1782:ref:`package_tar <ref-classes-package_tar>`.
1783
1784.. note::
1785
1786 The
1787 package_tar
1788 class is broken and not supported. It is recommended that you do not
1789 use this class.
1790
1791You can control the list of resulting package formats by using the
1792``PACKAGE_CLASSES`` variable defined in your ``conf/local.conf``
1793configuration file, which is located in the :term:`Build Directory`.
1794When defining the variable, you can
1795specify one or more package types. Since images are generated from
1796packages, a packaging class is needed to enable image generation. The
1797first class listed in this variable is used for image generation.
1798
1799If you take the optional step to set up a repository (package feed) on
1800the development host that can be used by DNF, you can install packages
1801from the feed while you are running the image on the target (i.e.
1802runtime installation of packages). For more information, see the
1803":ref:`dev-manual/dev-manual-common-tasks:using runtime package management`"
1804section in the Yocto Project Development Tasks Manual.
1805
1806The package-specific class you choose can affect build-time performance
1807and has space ramifications. In general, building a package with IPK
1808takes about thirty percent less time as compared to using RPM to build
1809the same or similar package. This comparison takes into account a
1810complete build of the package with all dependencies previously built.
1811The reason for this discrepancy is because the RPM package manager
1812creates and processes more :term:`Metadata` than the IPK package
1813manager. Consequently, you might consider setting ``PACKAGE_CLASSES`` to
1814"package_ipk" if you are building smaller systems.
1815
1816Before making your package manager decision, however, you should
1817consider some further things about using RPM:
1818
1819- RPM starts to provide more abilities than IPK due to the fact that it
1820 processes more Metadata. For example, this information includes
1821 individual file types, file checksum generation and evaluation on
1822 install, sparse file support, conflict detection and resolution for
1823 Multilib systems, ACID style upgrade, and repackaging abilities for
1824 rollbacks.
1825
1826- For smaller systems, the extra space used for the Berkeley Database
1827 and the amount of metadata when using RPM can affect your ability to
1828 perform on-device upgrades.
1829
1830You can find additional information on the effects of the package class
1831at these two Yocto Project mailing list links:
1832
1833- :yocto_lists:`/pipermail/poky/2011-May/006362.html`
1834
1835- :yocto_lists:`/pipermail/poky/2011-May/006363.html`
1836
1837.. _ref-classes-package_deb:
1838
1839``package_deb.bbclass``
1840=======================
1841
1842The ``package_deb`` class provides support for creating packages that
1843use the Debian (i.e. ``.deb``) file format. The class ensures the
1844packages are written out in a ``.deb`` file format to the
1845``${``\ :term:`DEPLOY_DIR_DEB`\ ``}`` directory.
1846
1847This class inherits the :ref:`package <ref-classes-package>` class and
1848is enabled through the :term:`PACKAGE_CLASSES`
1849variable in the ``local.conf`` file.
1850
1851.. _ref-classes-package_ipk:
1852
1853``package_ipk.bbclass``
1854=======================
1855
1856The ``package_ipk`` class provides support for creating packages that
1857use the IPK (i.e. ``.ipk``) file format. The class ensures the packages
1858are written out in a ``.ipk`` file format to the
1859``${``\ :term:`DEPLOY_DIR_IPK`\ ``}`` directory.
1860
1861This class inherits the :ref:`package <ref-classes-package>` class and
1862is enabled through the :term:`PACKAGE_CLASSES`
1863variable in the ``local.conf`` file.
1864
1865.. _ref-classes-package_rpm:
1866
1867``package_rpm.bbclass``
1868=======================
1869
1870The ``package_rpm`` class provides support for creating packages that
1871use the RPM (i.e. ``.rpm``) file format. The class ensures the packages
1872are written out in a ``.rpm`` file format to the
1873``${``\ :term:`DEPLOY_DIR_RPM`\ ``}`` directory.
1874
1875This class inherits the :ref:`package <ref-classes-package>` class and
1876is enabled through the :term:`PACKAGE_CLASSES`
1877variable in the ``local.conf`` file.
1878
1879.. _ref-classes-package_tar:
1880
1881``package_tar.bbclass``
1882=======================
1883
1884The ``package_tar`` class provides support for creating tarballs. The
1885class ensures the packages are written out in a tarball format to the
1886``${``\ :term:`DEPLOY_DIR_TAR`\ ``}`` directory.
1887
1888This class inherits the :ref:`package <ref-classes-package>` class and
1889is enabled through the :term:`PACKAGE_CLASSES`
1890variable in the ``local.conf`` file.
1891
1892.. note::
1893
1894 You cannot specify the ``package_tar`` class first using the
1895 ``PACKAGE_CLASSES`` variable. You must use ``.deb``, ``.ipk``, or ``.rpm``
1896 file formats for your image or SDK.
1897
1898.. _ref-classes-packagedata:
1899
1900``packagedata.bbclass``
1901=======================
1902
1903The ``packagedata`` class provides common functionality for reading
1904``pkgdata`` files found in :term:`PKGDATA_DIR`. These
1905files contain information about each output package produced by the
1906OpenEmbedded build system.
1907
1908This class is enabled by default because it is inherited by the
1909:ref:`package <ref-classes-package>` class.
1910
1911.. _ref-classes-packagegroup:
1912
1913``packagegroup.bbclass``
1914========================
1915
1916The ``packagegroup`` class sets default values appropriate for package
1917group recipes (e.g. ``PACKAGES``, ``PACKAGE_ARCH``, ``ALLOW_EMPTY``, and
1918so forth). It is highly recommended that all package group recipes
1919inherit this class.
1920
1921For information on how to use this class, see the
1922":ref:`usingpoky-extend-customimage-customtasks`"
1923section in the Yocto Project Development Tasks Manual.
1924
1925Previously, this class was called the ``task`` class.
1926
1927.. _ref-classes-patch:
1928
1929``patch.bbclass``
1930=================
1931
1932The ``patch`` class provides all functionality for applying patches
1933during the :ref:`ref-tasks-patch` task.
1934
1935This class is enabled by default because it is inherited by the
1936:ref:`base <ref-classes-base>` class.
1937
1938.. _ref-classes-perlnative:
1939
1940``perlnative.bbclass``
1941======================
1942
1943When inherited by a recipe, the ``perlnative`` class supports using the
1944native version of Perl built by the build system rather than using the
1945version provided by the build host.
1946
1947.. _ref-classes-pixbufcache:
1948
1949``pixbufcache.bbclass``
1950=======================
1951
1952The ``pixbufcache`` class generates the proper post-install and
1953post-remove (postinst/postrm) scriptlets for packages that install
1954pixbuf loaders, which are used with ``gdk-pixbuf``. These scriptlets
1955call ``update_pixbuf_cache`` to add the pixbuf loaders to the cache.
1956Since the cache files are architecture-specific, ``update_pixbuf_cache``
1957is run using QEMU if the postinst scriptlets need to be run on the build
1958host during image creation.
1959
1960If the pixbuf loaders being installed are in packages other than the
1961recipe's main package, set
1962:term:`PIXBUF_PACKAGES` to specify the packages
1963containing the loaders.
1964
1965.. _ref-classes-pkgconfig:
1966
1967``pkgconfig.bbclass``
1968=====================
1969
1970The ``pkgconfig`` class provides a standard way to get header and
1971library information by using ``pkg-config``. This class aims to smooth
1972integration of ``pkg-config`` into libraries that use it.
1973
1974During staging, BitBake installs ``pkg-config`` data into the
1975``sysroots/`` directory. By making use of sysroot functionality within
1976``pkg-config``, the ``pkgconfig`` class no longer has to manipulate the
1977files.
1978
1979.. _ref-classes-populate-sdk:
1980
1981``populate_sdk.bbclass``
1982========================
1983
1984The ``populate_sdk`` class provides support for SDK-only recipes. For
1985information on advantages gained when building a cross-development
1986toolchain using the :ref:`ref-tasks-populate_sdk`
1987task, see the ":ref:`sdk-manual/sdk-appendix-obtain:building an sdk installer`"
1988section in the Yocto Project Application Development and the Extensible
1989Software Development Kit (eSDK) manual.
1990
1991.. _ref-classes-populate-sdk-*:
1992
1993``populate_sdk_*.bbclass``
1994==========================
1995
1996The ``populate_sdk_*`` classes support SDK creation and consist of the
1997following classes:
1998
1999- ``populate_sdk_base``: The base class supporting SDK creation under
2000 all package managers (i.e. DEB, RPM, and opkg).
2001
2002- ``populate_sdk_deb``: Supports creation of the SDK given the Debian
2003 package manager.
2004
2005- ``populate_sdk_rpm``: Supports creation of the SDK given the RPM
2006 package manager.
2007
2008- ``populate_sdk_ipk``: Supports creation of the SDK given the opkg
2009 (IPK format) package manager.
2010
2011- ``populate_sdk_ext``: Supports extensible SDK creation under all
2012 package managers.
2013
2014The ``populate_sdk_base`` class inherits the appropriate
2015``populate_sdk_*`` (i.e. ``deb``, ``rpm``, and ``ipk``) based on
2016:term:`IMAGE_PKGTYPE`.
2017
2018The base class ensures all source and destination directories are
2019established and then populates the SDK. After populating the SDK, the
2020``populate_sdk_base`` class constructs two sysroots:
2021``${``\ :term:`SDK_ARCH`\ ``}-nativesdk``, which
2022contains the cross-compiler and associated tooling, and the target,
2023which contains a target root filesystem that is configured for the SDK
2024usage. These two images reside in :term:`SDK_OUTPUT`,
2025which consists of the following:
2026::
2027
2028 ${SDK_OUTPUT}/${SDK_ARCH}-nativesdk-pkgs
2029 ${SDK_OUTPUT}/${SDKTARGETSYSROOT}/target-pkgs
2030
2031Finally, the base populate SDK class creates the toolchain environment
2032setup script, the tarball of the SDK, and the installer.
2033
2034The respective ``populate_sdk_deb``, ``populate_sdk_rpm``, and
2035``populate_sdk_ipk`` classes each support the specific type of SDK.
2036These classes are inherited by and used with the ``populate_sdk_base``
2037class.
2038
2039For more information on the cross-development toolchain generation, see
2040the ":ref:`overview-manual/overview-manual-concepts:cross-development toolchain generation`"
2041section in the Yocto Project Overview and Concepts Manual. For
2042information on advantages gained when building a cross-development
2043toolchain using the :ref:`ref-tasks-populate_sdk`
2044task, see the
2045":ref:`sdk-manual/sdk-appendix-obtain:building an sdk installer`"
2046section in the Yocto Project Application Development and the Extensible
2047Software Development Kit (eSDK) manual.
2048
2049.. _ref-classes-prexport:
2050
2051``prexport.bbclass``
2052====================
2053
2054The ``prexport`` class provides functionality for exporting
2055:term:`PR` values.
2056
2057.. note::
2058
2059 This class is not intended to be used directly. Rather, it is enabled
2060 when using "``bitbake-prserv-tool export``".
2061
2062.. _ref-classes-primport:
2063
2064``primport.bbclass``
2065====================
2066
2067The ``primport`` class provides functionality for importing
2068:term:`PR` values.
2069
2070.. note::
2071
2072 This class is not intended to be used directly. Rather, it is enabled
2073 when using "``bitbake-prserv-tool import``".
2074
2075.. _ref-classes-prserv:
2076
2077``prserv.bbclass``
2078==================
2079
2080The ``prserv`` class provides functionality for using a :ref:`PR
2081service <dev-manual/dev-manual-common-tasks:working with a pr service>` in order to
2082automatically manage the incrementing of the :term:`PR`
2083variable for each recipe.
2084
2085This class is enabled by default because it is inherited by the
2086:ref:`package <ref-classes-package>` class. However, the OpenEmbedded
2087build system will not enable the functionality of this class unless
2088:term:`PRSERV_HOST` has been set.
2089
2090.. _ref-classes-ptest:
2091
2092``ptest.bbclass``
2093=================
2094
2095The ``ptest`` class provides functionality for packaging and installing
2096runtime tests for recipes that build software that provides these tests.
2097
2098This class is intended to be inherited by individual recipes. However,
2099the class' functionality is largely disabled unless "ptest" appears in
2100:term:`DISTRO_FEATURES`. See the
2101":ref:`dev-manual/dev-manual-common-tasks:testing packages with ptest`"
2102section in the Yocto Project Development Tasks Manual for more information
2103on ptest.
2104
2105.. _ref-classes-ptest-gnome:
2106
2107``ptest-gnome.bbclass``
2108=======================
2109
2110Enables package tests (ptests) specifically for GNOME packages, which
2111have tests intended to be executed with ``gnome-desktop-testing``.
2112
2113For information on setting up and running ptests, see the
2114":ref:`dev-manual/dev-manual-common-tasks:testing packages with ptest`"
2115section in the Yocto Project Development Tasks Manual.
2116
2117.. _ref-classes-python-dir:
2118
2119``python-dir.bbclass``
2120======================
2121
2122The ``python-dir`` class provides the base version, location, and site
2123package location for Python.
2124
2125.. _ref-classes-python3native:
2126
2127``python3native.bbclass``
2128=========================
2129
2130The ``python3native`` class supports using the native version of Python
21313 built by the build system rather than support of the version provided
2132by the build host.
2133
2134.. _ref-classes-pythonnative:
2135
2136``pythonnative.bbclass``
2137========================
2138
2139When inherited by a recipe, the ``pythonnative`` class supports using
2140the native version of Python built by the build system rather than using
2141the version provided by the build host.
2142
2143.. _ref-classes-qemu:
2144
2145``qemu.bbclass``
2146================
2147
2148The ``qemu`` class provides functionality for recipes that either need
2149QEMU or test for the existence of QEMU. Typically, this class is used to
2150run programs for a target system on the build host using QEMU's
2151application emulation mode.
2152
2153.. _ref-classes-recipe_sanity:
2154
2155``recipe_sanity.bbclass``
2156=========================
2157
2158The ``recipe_sanity`` class checks for the presence of any host system
2159recipe prerequisites that might affect the build (e.g. variables that
2160are set or software that is present).
2161
2162.. _ref-classes-relocatable:
2163
2164``relocatable.bbclass``
2165=======================
2166
2167The ``relocatable`` class enables relocation of binaries when they are
2168installed into the sysroot.
2169
2170This class makes use of the :ref:`chrpath <ref-classes-chrpath>` class
2171and is used by both the :ref:`cross <ref-classes-cross>` and
2172:ref:`native <ref-classes-native>` classes.
2173
2174.. _ref-classes-remove-libtool:
2175
2176``remove-libtool.bbclass``
2177==========================
2178
2179The ``remove-libtool`` class adds a post function to the
2180:ref:`ref-tasks-install` task to remove all ``.la`` files
2181installed by ``libtool``. Removing these files results in them being
2182absent from both the sysroot and target packages.
2183
2184If a recipe needs the ``.la`` files to be installed, then the recipe can
2185override the removal by setting ``REMOVE_LIBTOOL_LA`` to "0" as follows:
2186::
2187
2188 REMOVE_LIBTOOL_LA = "0"
2189
2190.. note::
2191
2192 The ``remove-libtool`` class is not enabled by default.
2193
2194.. _ref-classes-report-error:
2195
2196``report-error.bbclass``
2197========================
2198
2199The ``report-error`` class supports enabling the :ref:`error reporting
2200tool <dev-manual/dev-manual-common-tasks:using the error reporting tool>`",
2201which allows you to submit build error information to a central database.
2202
2203The class collects debug information for recipe, recipe version, task,
2204machine, distro, build system, target system, host distro, branch,
2205commit, and log. From the information, report files using a JSON format
2206are created and stored in
2207``${``\ :term:`LOG_DIR`\ ``}/error-report``.
2208
2209.. _ref-classes-rm-work:
2210
2211``rm_work.bbclass``
2212===================
2213
2214The ``rm_work`` class supports deletion of temporary workspace, which
2215can ease your hard drive demands during builds.
2216
2217The OpenEmbedded build system can use a substantial amount of disk space
2218during the build process. A portion of this space is the work files
2219under the ``${TMPDIR}/work`` directory for each recipe. Once the build
2220system generates the packages for a recipe, the work files for that
2221recipe are no longer needed. However, by default, the build system
2222preserves these files for inspection and possible debugging purposes. If
2223you would rather have these files deleted to save disk space as the
2224build progresses, you can enable ``rm_work`` by adding the following to
2225your ``local.conf`` file, which is found in the :term:`Build Directory`.
2226::
2227
2228 INHERIT += "rm_work"
2229
2230If you are
2231modifying and building source code out of the work directory for a
2232recipe, enabling ``rm_work`` will potentially result in your changes to
2233the source being lost. To exclude some recipes from having their work
2234directories deleted by ``rm_work``, you can add the names of the recipe
2235or recipes you are working on to the ``RM_WORK_EXCLUDE`` variable, which
2236can also be set in your ``local.conf`` file. Here is an example:
2237::
2238
2239 RM_WORK_EXCLUDE += "busybox glibc"
2240
2241.. _ref-classes-rootfs*:
2242
2243``rootfs*.bbclass``
2244===================
2245
2246The ``rootfs*`` classes support creating the root filesystem for an
2247image and consist of the following classes:
2248
2249- The ``rootfs-postcommands`` class, which defines filesystem
2250 post-processing functions for image recipes.
2251
2252- The ``rootfs_deb`` class, which supports creation of root filesystems
2253 for images built using ``.deb`` packages.
2254
2255- The ``rootfs_rpm`` class, which supports creation of root filesystems
2256 for images built using ``.rpm`` packages.
2257
2258- The ``rootfs_ipk`` class, which supports creation of root filesystems
2259 for images built using ``.ipk`` packages.
2260
2261- The ``rootfsdebugfiles`` class, which installs additional files found
2262 on the build host directly into the root filesystem.
2263
2264The root filesystem is created from packages using one of the
2265``rootfs*.bbclass`` files as determined by the
2266:term:`PACKAGE_CLASSES` variable.
2267
2268For information on how root filesystem images are created, see the
2269":ref:`image-generation-dev-environment`"
2270section in the Yocto Project Overview and Concepts Manual.
2271
2272.. _ref-classes-sanity:
2273
2274``sanity.bbclass``
2275==================
2276
2277The ``sanity`` class checks to see if prerequisite software is present
2278on the host system so that users can be notified of potential problems
2279that might affect their build. The class also performs basic user
2280configuration checks from the ``local.conf`` configuration file to
2281prevent common mistakes that cause build failures. Distribution policy
2282usually determines whether to include this class.
2283
2284.. _ref-classes-scons:
2285
2286``scons.bbclass``
2287=================
2288
2289The ``scons`` class supports recipes that need to build software that
2290uses the SCons build system. You can use the
2291:term:`EXTRA_OESCONS` variable to specify
2292additional configuration options you want to pass SCons command line.
2293
2294.. _ref-classes-sdl:
2295
2296``sdl.bbclass``
2297===============
2298
2299The ``sdl`` class supports recipes that need to build software that uses
2300the Simple DirectMedia Layer (SDL) library.
2301
2302.. _ref-classes-setuptools:
2303
2304``setuptools.bbclass``
2305======================
2306
2307The ``setuptools`` class supports Python version 2.x extensions that use
2308build systems based on ``setuptools``. If your recipe uses these build
2309systems, the recipe needs to inherit the ``setuptools`` class.
2310
2311.. _ref-classes-setuptools3:
2312
2313``setuptools3.bbclass``
2314=======================
2315
2316The ``setuptools3`` class supports Python version 3.x extensions that
2317use build systems based on ``setuptools3``. If your recipe uses these
2318build systems, the recipe needs to inherit the ``setuptools3`` class.
2319
2320.. _ref-classes-sign_rpm:
2321
2322``sign_rpm.bbclass``
2323====================
2324
2325The ``sign_rpm`` class supports generating signed RPM packages.
2326
2327.. _ref-classes-sip:
2328
2329``sip.bbclass``
2330===============
2331
2332The ``sip`` class supports recipes that build or package SIP-based
2333Python bindings.
2334
2335.. _ref-classes-siteconfig:
2336
2337``siteconfig.bbclass``
2338======================
2339
2340The ``siteconfig`` class provides functionality for handling site
2341configuration. The class is used by the
2342:ref:`autotools <ref-classes-autotools>` class to accelerate the
2343:ref:`ref-tasks-configure` task.
2344
2345.. _ref-classes-siteinfo:
2346
2347``siteinfo.bbclass``
2348====================
2349
2350The ``siteinfo`` class provides information about the targets that might
2351be needed by other classes or recipes.
2352
2353As an example, consider Autotools, which can require tests that must
2354execute on the target hardware. Since this is not possible in general
2355when cross compiling, site information is used to provide cached test
2356results so these tests can be skipped over but still make the correct
2357values available. The ``meta/site directory`` contains test results
2358sorted into different categories such as architecture, endianness, and
2359the ``libc`` used. Site information provides a list of files containing
2360data relevant to the current build in the ``CONFIG_SITE`` variable that
2361Autotools automatically picks up.
2362
2363The class also provides variables like ``SITEINFO_ENDIANNESS`` and
2364``SITEINFO_BITS`` that can be used elsewhere in the metadata.
2365
2366.. _ref-classes-spdx:
2367
2368``spdx.bbclass``
2369================
2370
2371The ``spdx`` class integrates real-time license scanning, generation of
2372SPDX standard output, and verification of license information during the
2373build.
2374
2375.. note::
2376
2377 This class is currently at the prototype stage in the 1.6 release.
2378
2379.. _ref-classes-sstate:
2380
2381``sstate.bbclass``
2382==================
2383
2384The ``sstate`` class provides support for Shared State (sstate). By
2385default, the class is enabled through the
2386:term:`INHERIT_DISTRO` variable's default value.
2387
2388For more information on sstate, see the
2389":ref:`overview-manual/overview-manual-concepts:shared state cache`"
2390section in the Yocto Project Overview and Concepts Manual.
2391
2392.. _ref-classes-staging:
2393
2394``staging.bbclass``
2395===================
2396
2397The ``staging`` class installs files into individual recipe work
2398directories for sysroots. The class contains the following key tasks:
2399
2400- The :ref:`ref-tasks-populate_sysroot` task,
2401 which is responsible for handing the files that end up in the recipe
2402 sysroots.
2403
2404- The
2405 :ref:`ref-tasks-prepare_recipe_sysroot`
2406 task (a "partner" task to the ``populate_sysroot`` task), which
2407 installs the files into the individual recipe work directories (i.e.
2408 :term:`WORKDIR`).
2409
2410The code in the ``staging`` class is complex and basically works in two
2411stages:
2412
2413- *Stage One:* The first stage addresses recipes that have files they
2414 want to share with other recipes that have dependencies on the
2415 originating recipe. Normally these dependencies are installed through
2416 the :ref:`ref-tasks-install` task into
2417 ``${``\ :term:`D`\ ``}``. The ``do_populate_sysroot`` task
2418 copies a subset of these files into ``${SYSROOT_DESTDIR}``. This
2419 subset of files is controlled by the
2420 :term:`SYSROOT_DIRS`,
2421 :term:`SYSROOT_DIRS_NATIVE`, and
2422 :term:`SYSROOT_DIRS_BLACKLIST`
2423 variables.
2424
2425 .. note::
2426
2427 Additionally, a recipe can customize the files further by
2428 declaring a processing function in the ``SYSROOT_PREPROCESS_FUNCS``
2429 variable.
2430
2431 A shared state (sstate) object is built from these files and the
2432 files are placed into a subdirectory of
2433 :ref:`structure-build-tmp-sysroots-components`.
2434 The files are scanned for hardcoded paths to the original
2435 installation location. If the location is found in text files, the
2436 hardcoded locations are replaced by tokens and a list of the files
2437 needing such replacements is created. These adjustments are referred
2438 to as "FIXMEs". The list of files that are scanned for paths is
2439 controlled by the :term:`SSTATE_SCAN_FILES`
2440 variable.
2441
2442- *Stage Two:* The second stage addresses recipes that want to use
2443 something from another recipe and declare a dependency on that recipe
2444 through the :term:`DEPENDS` variable. The recipe will
2445 have a
2446 :ref:`ref-tasks-prepare_recipe_sysroot`
2447 task and when this task executes, it creates the ``recipe-sysroot``
2448 and ``recipe-sysroot-native`` in the recipe work directory (i.e.
2449 :term:`WORKDIR`). The OpenEmbedded build system
2450 creates hard links to copies of the relevant files from
2451 ``sysroots-components`` into the recipe work directory.
2452
2453 .. note::
2454
2455 If hard links are not possible, the build system uses actual
2456 copies.
2457
2458 The build system then addresses any "FIXMEs" to paths as defined from
2459 the list created in the first stage.
2460
2461 Finally, any files in ``${bindir}`` within the sysroot that have the
2462 prefix "``postinst-``" are executed.
2463
2464 .. note::
2465
2466 Although such sysroot post installation scripts are not
2467 recommended for general use, the files do allow some issues such
2468 as user creation and module indexes to be addressed.
2469
2470 Because recipes can have other dependencies outside of ``DEPENDS``
2471 (e.g. ``do_unpack[depends] += "tar-native:do_populate_sysroot"``),
2472 the sysroot creation function ``extend_recipe_sysroot`` is also added
2473 as a pre-function for those tasks whose dependencies are not through
2474 ``DEPENDS`` but operate similarly.
2475
2476 When installing dependencies into the sysroot, the code traverses the
2477 dependency graph and processes dependencies in exactly the same way
2478 as the dependencies would or would not be when installed from sstate.
2479 This processing means, for example, a native tool would have its
2480 native dependencies added but a target library would not have its
2481 dependencies traversed or installed. The same sstate dependency code
2482 is used so that builds should be identical regardless of whether
2483 sstate was used or not. For a closer look, see the
2484 ``setscene_depvalid()`` function in the
2485 :ref:`sstate <ref-classes-sstate>` class.
2486
2487 The build system is careful to maintain manifests of the files it
2488 installs so that any given dependency can be installed as needed. The
2489 sstate hash of the installed item is also stored so that if it
2490 changes, the build system can reinstall it.
2491
2492.. _ref-classes-syslinux:
2493
2494``syslinux.bbclass``
2495====================
2496
2497The ``syslinux`` class provides syslinux-specific functions for building
2498bootable images.
2499
2500The class supports the following variables:
2501
2502- :term:`INITRD`: Indicates list of filesystem images to
2503 concatenate and use as an initial RAM disk (initrd). This variable is
2504 optional.
2505
2506- :term:`ROOTFS`: Indicates a filesystem image to include
2507 as the root filesystem. This variable is optional.
2508
2509- :term:`AUTO_SYSLINUXMENU`: Enables creating
2510 an automatic menu when set to "1".
2511
2512- :term:`LABELS`: Lists targets for automatic
2513 configuration.
2514
2515- :term:`APPEND`: Lists append string overrides for each
2516 label.
2517
2518- :term:`SYSLINUX_OPTS`: Lists additional options
2519 to add to the syslinux file. Semicolon characters separate multiple
2520 options.
2521
2522- :term:`SYSLINUX_SPLASH`: Lists a background
2523 for the VGA boot menu when you are using the boot menu.
2524
2525- :term:`SYSLINUX_DEFAULT_CONSOLE`: Set
2526 to "console=ttyX" to change kernel boot default console.
2527
2528- :term:`SYSLINUX_SERIAL`: Sets an alternate
2529 serial port. Or, turns off serial when the variable is set with an
2530 empty string.
2531
2532- :term:`SYSLINUX_SERIAL_TTY`: Sets an
2533 alternate "console=tty..." kernel boot argument.
2534
2535.. _ref-classes-systemd:
2536
2537``systemd.bbclass``
2538===================
2539
2540The ``systemd`` class provides support for recipes that install systemd
2541unit files.
2542
2543The functionality for this class is disabled unless you have "systemd"
2544in :term:`DISTRO_FEATURES`.
2545
2546Under this class, the recipe or Makefile (i.e. whatever the recipe is
2547calling during the :ref:`ref-tasks-install` task)
2548installs unit files into
2549``${``\ :term:`D`\ ``}${systemd_unitdir}/system``. If the unit
2550files being installed go into packages other than the main package, you
2551need to set :term:`SYSTEMD_PACKAGES` in your
2552recipe to identify the packages in which the files will be installed.
2553
2554You should set :term:`SYSTEMD_SERVICE` to the
2555name of the service file. You should also use a package name override to
2556indicate the package to which the value applies. If the value applies to
2557the recipe's main package, use ``${``\ :term:`PN`\ ``}``. Here
2558is an example from the connman recipe:
2559::
2560
2561 SYSTEMD_SERVICE_${PN} = "connman.service"
2562
2563Services are set up to start on boot automatically
2564unless you have set
2565:term:`SYSTEMD_AUTO_ENABLE` to "disable".
2566
2567For more information on ``systemd``, see the
2568":ref:`dev-manual/dev-manual-common-tasks:selecting an initialization manager`"
2569section in the Yocto Project Development Tasks Manual.
2570
2571.. _ref-classes-systemd-boot:
2572
2573``systemd-boot.bbclass``
2574========================
2575
2576The ``systemd-boot`` class provides functions specific to the
2577systemd-boot bootloader for building bootable images. This is an
2578internal class and is not intended to be used directly.
2579
2580.. note::
2581
2582 The ``systemd-boot`` class is a result from merging the ``gummiboot`` class
2583 used in previous Yocto Project releases with the ``systemd`` project.
2584
2585Set the :term:`EFI_PROVIDER` variable to
2586"systemd-boot" to use this class. Doing so creates a standalone EFI
2587bootloader that is not dependent on systemd.
2588
2589For information on more variables used and supported in this class, see
2590the :term:`SYSTEMD_BOOT_CFG`,
2591:term:`SYSTEMD_BOOT_ENTRIES`, and
2592:term:`SYSTEMD_BOOT_TIMEOUT` variables.
2593
2594You can also see the `Systemd-boot
2595documentation <http://www.freedesktop.org/wiki/Software/systemd/systemd-boot/>`__
2596for more information.
2597
2598.. _ref-classes-terminal:
2599
2600``terminal.bbclass``
2601====================
2602
2603The ``terminal`` class provides support for starting a terminal session.
2604The :term:`OE_TERMINAL` variable controls which
2605terminal emulator is used for the session.
2606
2607Other classes use the ``terminal`` class anywhere a separate terminal
2608session needs to be started. For example, the
2609:ref:`patch <ref-classes-patch>` class assuming
2610:term:`PATCHRESOLVE` is set to "user", the
2611:ref:`cml1 <ref-classes-cml1>` class, and the
2612:ref:`devshell <ref-classes-devshell>` class all use the ``terminal``
2613class.
2614
2615.. _ref-classes-testimage*:
2616
2617``testimage*.bbclass``
2618======================
2619
2620The ``testimage*`` classes support running automated tests against
2621images using QEMU and on actual hardware. The classes handle loading the
2622tests and starting the image. To use the classes, you need to perform
2623steps to set up the environment.
2624
2625.. note::
2626
2627 Best practices include using :term:`IMAGE_CLASSES` rather than
2628 :term:`INHERIT` to inherit the ``testimage`` class for automated image
2629 testing.
2630
2631The tests are commands that run on the target system over ``ssh``. Each
2632test is written in Python and makes use of the ``unittest`` module.
2633
2634The ``testimage.bbclass`` runs tests on an image when called using the
2635following:
2636::
2637
2638 $ bitbake -c testimage image
2639
2640The ``testimage-auto`` class
2641runs tests on an image after the image is constructed (i.e.
2642:term:`TESTIMAGE_AUTO` must be set to "1").
2643
2644For information on how to enable, run, and create new tests, see the
2645":ref:`dev-manual/dev-manual-common-tasks:performing automated runtime testing`"
2646section in the Yocto Project Development Tasks Manual.
2647
2648.. _ref-classes-testsdk:
2649
2650``testsdk.bbclass``
2651===================
2652
2653This class supports running automated tests against software development
2654kits (SDKs). The ``testsdk`` class runs tests on an SDK when called
2655using the following:
2656::
2657
2658 $ bitbake -c testsdk image
2659
2660.. note::
2661
2662 Best practices include using :term:`IMAGE_CLASSES` rather than
2663 :term:`INHERIT` to inherit the ``testsdk`` class for automated SDK
2664 testing.
2665
2666.. _ref-classes-texinfo:
2667
2668``texinfo.bbclass``
2669===================
2670
2671This class should be inherited by recipes whose upstream packages invoke
2672the ``texinfo`` utilities at build-time. Native and cross recipes are
2673made to use the dummy scripts provided by ``texinfo-dummy-native``, for
2674improved performance. Target architecture recipes use the genuine
2675Texinfo utilities. By default, they use the Texinfo utilities on the
2676host system.
2677
2678.. note::
2679
2680 If you want to use the Texinfo recipe shipped with the build system,
2681 you can remove "texinfo-native" from :term:`ASSUME_PROVIDED` and makeinfo
2682 from :term:`SANITY_REQUIRED_UTILITIES`.
2683
2684.. _ref-classes-toaster:
2685
2686``toaster.bbclass``
2687===================
2688
2689The ``toaster`` class collects information about packages and images and
2690sends them as events that the BitBake user interface can receive. The
2691class is enabled when the Toaster user interface is running.
2692
2693This class is not intended to be used directly.
2694
2695.. _ref-classes-toolchain-scripts:
2696
2697``toolchain-scripts.bbclass``
2698=============================
2699
2700The ``toolchain-scripts`` class provides the scripts used for setting up
2701the environment for installed SDKs.
2702
2703.. _ref-classes-typecheck:
2704
2705``typecheck.bbclass``
2706=====================
2707
2708The ``typecheck`` class provides support for validating the values of
2709variables set at the configuration level against their defined types.
2710The OpenEmbedded build system allows you to define the type of a
2711variable using the "type" varflag. Here is an example:
2712::
2713
2714 IMAGE_FEATURES[type] = "list"
2715
2716.. _ref-classes-uboot-config:
2717
2718``uboot-config.bbclass``
2719========================
2720
2721The ``uboot-config`` class provides support for U-Boot configuration for
2722a machine. Specify the machine in your recipe as follows:
2723::
2724
2725 UBOOT_CONFIG ??= <default>
2726 UBOOT_CONFIG[foo] = "config,images"
2727
2728You can also specify the machine using this method:
2729::
2730
2731 UBOOT_MACHINE = "config"
2732
2733See the :term:`UBOOT_CONFIG` and :term:`UBOOT_MACHINE` variables for additional
2734information.
2735
2736.. _ref-classes-uninative:
2737
2738``uninative.bbclass``
2739=====================
2740
2741Attempts to isolate the build system from the host distribution's C
2742library in order to make re-use of native shared state artifacts across
2743different host distributions practical. With this class enabled, a
2744tarball containing a pre-built C library is downloaded at the start of
2745the build. In the Poky reference distribution this is enabled by default
2746through ``meta/conf/distro/include/yocto-uninative.inc``. Other
2747distributions that do not derive from poky can also
2748"``require conf/distro/include/yocto-uninative.inc``" to use this.
2749Alternatively if you prefer, you can build the uninative-tarball recipe
2750yourself, publish the resulting tarball (e.g. via HTTP) and set
2751``UNINATIVE_URL`` and ``UNINATIVE_CHECKSUM`` appropriately. For an
2752example, see the ``meta/conf/distro/include/yocto-uninative.inc``.
2753
2754The ``uninative`` class is also used unconditionally by the extensible
2755SDK. When building the extensible SDK, ``uninative-tarball`` is built
2756and the resulting tarball is included within the SDK.
2757
2758.. _ref-classes-update-alternatives:
2759
2760``update-alternatives.bbclass``
2761===============================
2762
2763The ``update-alternatives`` class helps the alternatives system when
2764multiple sources provide the same command. This situation occurs when
2765several programs that have the same or similar function are installed
2766with the same name. For example, the ``ar`` command is available from
2767the ``busybox``, ``binutils`` and ``elfutils`` packages. The
2768``update-alternatives`` class handles renaming the binaries so that
2769multiple packages can be installed without conflicts. The ``ar`` command
2770still works regardless of which packages are installed or subsequently
2771removed. The class renames the conflicting binary in each package and
2772symlinks the highest priority binary during installation or removal of
2773packages.
2774
2775To use this class, you need to define a number of variables:
2776
2777- :term:`ALTERNATIVE`
2778
2779- :term:`ALTERNATIVE_LINK_NAME`
2780
2781- :term:`ALTERNATIVE_TARGET`
2782
2783- :term:`ALTERNATIVE_PRIORITY`
2784
2785These variables list alternative commands needed by a package, provide
2786pathnames for links, default links for targets, and so forth. For
2787details on how to use this class, see the comments in the
2788:yocto_git:`update-alternatives.bbclass </cgit/cgit.cgi/poky/tree/meta/classes/update-alternatives.bbclass>`
2789file.
2790
2791.. note::
2792
2793 You can use the ``update-alternatives`` command directly in your recipes.
2794 However, this class simplifies things in most cases.
2795
2796.. _ref-classes-update-rc.d:
2797
2798``update-rc.d.bbclass``
2799=======================
2800
2801The ``update-rc.d`` class uses ``update-rc.d`` to safely install an
2802initialization script on behalf of the package. The OpenEmbedded build
2803system takes care of details such as making sure the script is stopped
2804before a package is removed and started when the package is installed.
2805
2806Three variables control this class: ``INITSCRIPT_PACKAGES``,
2807``INITSCRIPT_NAME`` and ``INITSCRIPT_PARAMS``. See the variable links
2808for details.
2809
2810.. _ref-classes-useradd:
2811
2812``useradd*.bbclass``
2813====================
2814
2815The ``useradd*`` classes support the addition of users or groups for
2816usage by the package on the target. For example, if you have packages
2817that contain system services that should be run under their own user or
2818group, you can use these classes to enable creation of the user or
2819group. The ``meta-skeleton/recipes-skeleton/useradd/useradd-example.bb``
2820recipe in the :term:`Source Directory` provides a simple
2821example that shows how to add three users and groups to two packages.
2822See the ``useradd-example.bb`` recipe for more information on how to use
2823these classes.
2824
2825The ``useradd_base`` class provides basic functionality for user or
2826groups settings.
2827
2828The ``useradd*`` classes support the
2829:term:`USERADD_PACKAGES`,
2830:term:`USERADD_PARAM`,
2831:term:`GROUPADD_PARAM`, and
2832:term:`GROUPMEMS_PARAM` variables.
2833
2834The ``useradd-staticids`` class supports the addition of users or groups
2835that have static user identification (``uid``) and group identification
2836(``gid``) values.
2837
2838The default behavior of the OpenEmbedded build system for assigning
2839``uid`` and ``gid`` values when packages add users and groups during
2840package install time is to add them dynamically. This works fine for
2841programs that do not care what the values of the resulting users and
2842groups become. In these cases, the order of the installation determines
2843the final ``uid`` and ``gid`` values. However, if non-deterministic
2844``uid`` and ``gid`` values are a problem, you can override the default,
2845dynamic application of these values by setting static values. When you
2846set static values, the OpenEmbedded build system looks in
2847:term:`BBPATH` for ``files/passwd`` and ``files/group``
2848files for the values.
2849
2850To use static ``uid`` and ``gid`` values, you need to set some
2851variables. See the :term:`USERADDEXTENSION`,
2852:term:`USERADD_UID_TABLES`,
2853:term:`USERADD_GID_TABLES`, and
2854:term:`USERADD_ERROR_DYNAMIC` variables.
2855You can also see the :ref:`useradd <ref-classes-useradd>` class for
2856additional information.
2857
2858.. note::
2859
2860 You do not use the ``useradd-staticids`` class directly. You either enable
2861 or disable the class by setting the ``USERADDEXTENSION`` variable. If you
2862 enable or disable the class in a configured system, :term:`TMPDIR` might
2863 contain incorrect ``uid`` and ``gid`` values. Deleting the ``TMPDIR``
2864 directory will correct this condition.
2865
2866.. _ref-classes-utility-tasks:
2867
2868``utility-tasks.bbclass``
2869=========================
2870
2871The ``utility-tasks`` class provides support for various "utility" type
2872tasks that are applicable to all recipes, such as
2873:ref:`ref-tasks-clean` and
2874:ref:`ref-tasks-listtasks`.
2875
2876This class is enabled by default because it is inherited by the
2877:ref:`base <ref-classes-base>` class.
2878
2879.. _ref-classes-utils:
2880
2881``utils.bbclass``
2882=================
2883
2884The ``utils`` class provides some useful Python functions that are
2885typically used in inline Python expressions (e.g. ``${@...}``). One
2886example use is for ``bb.utils.contains()``.
2887
2888This class is enabled by default because it is inherited by the
2889:ref:`base <ref-classes-base>` class.
2890
2891.. _ref-classes-vala:
2892
2893``vala.bbclass``
2894================
2895
2896The ``vala`` class supports recipes that need to build software written
2897using the Vala programming language.
2898
2899.. _ref-classes-waf:
2900
2901``waf.bbclass``
2902===============
2903
2904The ``waf`` class supports recipes that need to build software that uses
2905the Waf build system. You can use the
2906:term:`EXTRA_OECONF` or
2907:term:`PACKAGECONFIG_CONFARGS` variables
2908to specify additional configuration options to be passed on the Waf
2909command line.