Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1 | .. SPDX-License-Identifier: CC-BY-2.5 |
| 2 | |
| 3 | ======== |
| 4 | Overview |
| 5 | ======== |
| 6 | |
| 7 | | |
| 8 | |
| 9 | Welcome to the BitBake User Manual. This manual provides information on |
| 10 | the BitBake tool. The information attempts to be as independent as |
| 11 | possible regarding systems that use BitBake, such as OpenEmbedded and |
| 12 | the Yocto Project. In some cases, scenarios or examples within the |
| 13 | context of a build system are used in the manual to help with |
| 14 | understanding. For these cases, the manual clearly states the context. |
| 15 | |
| 16 | .. _intro: |
| 17 | |
| 18 | Introduction |
| 19 | ============ |
| 20 | |
| 21 | Fundamentally, BitBake is a generic task execution engine that allows |
| 22 | shell and Python tasks to be run efficiently and in parallel while |
| 23 | working within complex inter-task dependency constraints. One of |
| 24 | BitBake's main users, OpenEmbedded, takes this core and builds embedded |
| 25 | Linux software stacks using a task-oriented approach. |
| 26 | |
| 27 | Conceptually, BitBake is similar to GNU Make in some regards but has |
| 28 | significant differences: |
| 29 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 30 | - BitBake executes tasks according to the provided metadata that builds up |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 31 | the tasks. Metadata is stored in recipe (``.bb``) and related recipe |
| 32 | "append" (``.bbappend``) files, configuration (``.conf``) and |
| 33 | underlying include (``.inc``) files, and in class (``.bbclass``) |
| 34 | files. The metadata provides BitBake with instructions on what tasks |
| 35 | to run and the dependencies between those tasks. |
| 36 | |
| 37 | - BitBake includes a fetcher library for obtaining source code from |
| 38 | various places such as local files, source control systems, or |
| 39 | websites. |
| 40 | |
| 41 | - The instructions for each unit to be built (e.g. a piece of software) |
| 42 | are known as "recipe" files and contain all the information about the |
| 43 | unit (dependencies, source file locations, checksums, description and |
| 44 | so on). |
| 45 | |
| 46 | - BitBake includes a client/server abstraction and can be used from a |
| 47 | command line or used as a service over XML-RPC and has several |
| 48 | different user interfaces. |
| 49 | |
| 50 | History and Goals |
| 51 | ================= |
| 52 | |
| 53 | BitBake was originally a part of the OpenEmbedded project. It was |
| 54 | inspired by the Portage package management system used by the Gentoo |
| 55 | Linux distribution. On December 7, 2004, OpenEmbedded project team |
| 56 | member Chris Larson split the project into two distinct pieces: |
| 57 | |
| 58 | - BitBake, a generic task executor |
| 59 | |
| 60 | - OpenEmbedded, a metadata set utilized by BitBake |
| 61 | |
| 62 | Today, BitBake is the primary basis of the |
| 63 | `OpenEmbedded <http://www.openembedded.org/>`__ project, which is being |
| 64 | used to build and maintain Linux distributions such as the `Angstrom |
| 65 | Distribution <http://www.angstrom-distribution.org/>`__, and which is |
| 66 | also being used as the build tool for Linux projects such as the `Yocto |
| 67 | Project <http://www.yoctoproject.org>`__. |
| 68 | |
| 69 | Prior to BitBake, no other build tool adequately met the needs of an |
| 70 | aspiring embedded Linux distribution. All of the build systems used by |
| 71 | traditional desktop Linux distributions lacked important functionality, |
| 72 | and none of the ad hoc Buildroot-based systems, prevalent in the |
| 73 | embedded space, were scalable or maintainable. |
| 74 | |
| 75 | Some important original goals for BitBake were: |
| 76 | |
| 77 | - Handle cross-compilation. |
| 78 | |
| 79 | - Handle inter-package dependencies (build time on target architecture, |
| 80 | build time on native architecture, and runtime). |
| 81 | |
| 82 | - Support running any number of tasks within a given package, |
| 83 | including, but not limited to, fetching upstream sources, unpacking |
| 84 | them, patching them, configuring them, and so forth. |
| 85 | |
| 86 | - Be Linux distribution agnostic for both build and target systems. |
| 87 | |
| 88 | - Be architecture agnostic. |
| 89 | |
| 90 | - Support multiple build and target operating systems (e.g. Cygwin, the |
| 91 | BSDs, and so forth). |
| 92 | |
| 93 | - Be self-contained, rather than tightly integrated into the build |
| 94 | machine's root filesystem. |
| 95 | |
| 96 | - Handle conditional metadata on the target architecture, operating |
| 97 | system, distribution, and machine. |
| 98 | |
| 99 | - Be easy to use the tools to supply local metadata and packages |
| 100 | against which to operate. |
| 101 | |
| 102 | - Be easy to use BitBake to collaborate between multiple projects for |
| 103 | their builds. |
| 104 | |
| 105 | - Provide an inheritance mechanism to share common metadata between |
| 106 | many packages. |
| 107 | |
| 108 | Over time it became apparent that some further requirements were |
| 109 | necessary: |
| 110 | |
| 111 | - Handle variants of a base recipe (e.g. native, sdk, and multilib). |
| 112 | |
| 113 | - Split metadata into layers and allow layers to enhance or override |
| 114 | other layers. |
| 115 | |
| 116 | - Allow representation of a given set of input variables to a task as a |
| 117 | checksum. Based on that checksum, allow acceleration of builds with |
| 118 | prebuilt components. |
| 119 | |
| 120 | BitBake satisfies all the original requirements and many more with |
| 121 | extensions being made to the basic functionality to reflect the |
| 122 | additional requirements. Flexibility and power have always been the |
| 123 | priorities. BitBake is highly extensible and supports embedded Python |
| 124 | code and execution of any arbitrary tasks. |
| 125 | |
| 126 | .. _Concepts: |
| 127 | |
| 128 | Concepts |
| 129 | ======== |
| 130 | |
| 131 | BitBake is a program written in the Python language. At the highest |
| 132 | level, BitBake interprets metadata, decides what tasks are required to |
| 133 | run, and executes those tasks. Similar to GNU Make, BitBake controls how |
| 134 | software is built. GNU Make achieves its control through "makefiles", |
| 135 | while BitBake uses "recipes". |
| 136 | |
| 137 | BitBake extends the capabilities of a simple tool like GNU Make by |
| 138 | allowing for the definition of much more complex tasks, such as |
| 139 | assembling entire embedded Linux distributions. |
| 140 | |
| 141 | The remainder of this section introduces several concepts that should be |
| 142 | understood in order to better leverage the power of BitBake. |
| 143 | |
| 144 | Recipes |
| 145 | ------- |
| 146 | |
| 147 | BitBake Recipes, which are denoted by the file extension ``.bb``, are |
| 148 | the most basic metadata files. These recipe files provide BitBake with |
| 149 | the following: |
| 150 | |
| 151 | - Descriptive information about the package (author, homepage, license, |
| 152 | and so on) |
| 153 | |
| 154 | - The version of the recipe |
| 155 | |
| 156 | - Existing dependencies (both build and runtime dependencies) |
| 157 | |
| 158 | - Where the source code resides and how to fetch it |
| 159 | |
| 160 | - Whether the source code requires any patches, where to find them, and |
| 161 | how to apply them |
| 162 | |
| 163 | - How to configure and compile the source code |
| 164 | |
| 165 | - How to assemble the generated artifacts into one or more installable |
| 166 | packages |
| 167 | |
| 168 | - Where on the target machine to install the package or packages |
| 169 | created |
| 170 | |
| 171 | Within the context of BitBake, or any project utilizing BitBake as its |
| 172 | build system, files with the ``.bb`` extension are referred to as |
| 173 | recipes. |
| 174 | |
| 175 | .. note:: |
| 176 | |
| 177 | The term "package" is also commonly used to describe recipes. |
| 178 | However, since the same word is used to describe packaged output from |
| 179 | a project, it is best to maintain a single descriptive term - |
| 180 | "recipes". Put another way, a single "recipe" file is quite capable |
| 181 | of generating a number of related but separately installable |
| 182 | "packages". In fact, that ability is fairly common. |
| 183 | |
| 184 | Configuration Files |
| 185 | ------------------- |
| 186 | |
| 187 | Configuration files, which are denoted by the ``.conf`` extension, |
| 188 | define various configuration variables that govern the project's build |
| 189 | process. These files fall into several areas that define machine |
| 190 | configuration, distribution configuration, possible compiler tuning, |
| 191 | general common configuration, and user configuration. The main |
| 192 | configuration file is the sample ``bitbake.conf`` file, which is located |
| 193 | within the BitBake source tree ``conf`` directory. |
| 194 | |
| 195 | Classes |
| 196 | ------- |
| 197 | |
| 198 | Class files, which are denoted by the ``.bbclass`` extension, contain |
| 199 | information that is useful to share between metadata files. The BitBake |
| 200 | source tree currently comes with one class metadata file called |
| 201 | ``base.bbclass``. You can find this file in the ``classes`` directory. |
| 202 | The ``base.bbclass`` class files is special since it is always included |
| 203 | automatically for all recipes and classes. This class contains |
| 204 | definitions for standard basic tasks such as fetching, unpacking, |
| 205 | configuring (empty by default), compiling (runs any Makefile present), |
| 206 | installing (empty by default) and packaging (empty by default). These |
| 207 | tasks are often overridden or extended by other classes added during the |
| 208 | project development process. |
| 209 | |
| 210 | Layers |
| 211 | ------ |
| 212 | |
| 213 | Layers allow you to isolate different types of customizations from each |
| 214 | other. While you might find it tempting to keep everything in one layer |
| 215 | when working on a single project, the more modular your metadata, the |
| 216 | easier it is to cope with future changes. |
| 217 | |
| 218 | To illustrate how you can use layers to keep things modular, consider |
| 219 | customizations you might make to support a specific target machine. |
| 220 | These types of customizations typically reside in a special layer, |
| 221 | rather than a general layer, called a Board Support Package (BSP) layer. |
| 222 | Furthermore, the machine customizations should be isolated from recipes |
| 223 | and metadata that support a new GUI environment, for example. This |
| 224 | situation gives you a couple of layers: one for the machine |
| 225 | configurations and one for the GUI environment. It is important to |
| 226 | understand, however, that the BSP layer can still make machine-specific |
| 227 | additions to recipes within the GUI environment layer without polluting |
| 228 | the GUI layer itself with those machine-specific changes. You can |
| 229 | accomplish this through a recipe that is a BitBake append |
| 230 | (``.bbappend``) file. |
| 231 | |
| 232 | .. _append-bbappend-files: |
| 233 | |
| 234 | Append Files |
| 235 | ------------ |
| 236 | |
| 237 | Append files, which are files that have the ``.bbappend`` file |
| 238 | extension, extend or override information in an existing recipe file. |
| 239 | |
| 240 | BitBake expects every append file to have a corresponding recipe file. |
| 241 | Furthermore, the append file and corresponding recipe file must use the |
| 242 | same root filename. The filenames can differ only in the file type |
| 243 | suffix used (e.g. ``formfactor_0.0.bb`` and |
| 244 | ``formfactor_0.0.bbappend``). |
| 245 | |
| 246 | Information in append files extends or overrides the information in the |
| 247 | underlying, similarly-named recipe files. |
| 248 | |
| 249 | When you name an append file, you can use the "``%``" wildcard character |
| 250 | to allow for matching recipe names. For example, suppose you have an |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 251 | append file named as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 252 | |
| 253 | busybox_1.21.%.bbappend |
| 254 | |
| 255 | That append file |
| 256 | would match any ``busybox_1.21.``\ x\ ``.bb`` version of the recipe. So, |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 257 | the append file would match the following recipe names:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 258 | |
| 259 | busybox_1.21.1.bb |
| 260 | busybox_1.21.2.bb |
| 261 | busybox_1.21.3.bb |
| 262 | |
| 263 | .. note:: |
| 264 | |
| 265 | The use of the " % " character is limited in that it only works directly in |
| 266 | front of the .bbappend portion of the append file's name. You cannot use the |
| 267 | wildcard character in any other location of the name. |
| 268 | |
| 269 | If the ``busybox`` recipe was updated to ``busybox_1.3.0.bb``, the |
| 270 | append name would not match. However, if you named the append file |
| 271 | ``busybox_1.%.bbappend``, then you would have a match. |
| 272 | |
| 273 | In the most general case, you could name the append file something as |
| 274 | simple as ``busybox_%.bbappend`` to be entirely version independent. |
| 275 | |
| 276 | Obtaining BitBake |
| 277 | ================= |
| 278 | |
| 279 | You can obtain BitBake several different ways: |
| 280 | |
| 281 | - **Cloning BitBake:** Using Git to clone the BitBake source code |
| 282 | repository is the recommended method for obtaining BitBake. Cloning |
| 283 | the repository makes it easy to get bug fixes and have access to |
| 284 | stable branches and the master branch. Once you have cloned BitBake, |
| 285 | you should use the latest stable branch for development since the |
| 286 | master branch is for BitBake development and might contain less |
| 287 | stable changes. |
| 288 | |
| 289 | You usually need a version of BitBake that matches the metadata you |
| 290 | are using. The metadata is generally backwards compatible but not |
| 291 | forward compatible. |
| 292 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 293 | Here is an example that clones the BitBake repository:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 294 | |
| 295 | $ git clone git://git.openembedded.org/bitbake |
| 296 | |
| 297 | This command clones the BitBake |
| 298 | Git repository into a directory called ``bitbake``. Alternatively, |
| 299 | you can designate a directory after the ``git clone`` command if you |
| 300 | want to call the new directory something other than ``bitbake``. Here |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 301 | is an example that names the directory ``bbdev``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 302 | |
| 303 | $ git clone git://git.openembedded.org/bitbake bbdev |
| 304 | |
| 305 | - **Installation using your Distribution Package Management System:** |
| 306 | This method is not recommended because the BitBake version that is |
| 307 | provided by your distribution, in most cases, is several releases |
| 308 | behind a snapshot of the BitBake repository. |
| 309 | |
| 310 | - **Taking a snapshot of BitBake:** Downloading a snapshot of BitBake |
| 311 | from the source code repository gives you access to a known branch or |
| 312 | release of BitBake. |
| 313 | |
| 314 | .. note:: |
| 315 | |
| 316 | Cloning the Git repository, as described earlier, is the preferred |
| 317 | method for getting BitBake. Cloning the repository makes it easier |
| 318 | to update as patches are added to the stable branches. |
| 319 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 320 | The following example downloads a snapshot of BitBake version 1.17.0:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 321 | |
| 322 | $ wget http://git.openembedded.org/bitbake/snapshot/bitbake-1.17.0.tar.gz |
| 323 | $ tar zxpvf bitbake-1.17.0.tar.gz |
| 324 | |
| 325 | After extraction of the tarball using |
| 326 | the tar utility, you have a directory entitled ``bitbake-1.17.0``. |
| 327 | |
| 328 | - **Using the BitBake that Comes With Your Build Checkout:** A final |
| 329 | possibility for getting a copy of BitBake is that it already comes |
| 330 | with your checkout of a larger BitBake-based build system, such as |
| 331 | Poky. Rather than manually checking out individual layers and gluing |
| 332 | them together yourself, you can check out an entire build system. The |
| 333 | checkout will already include a version of BitBake that has been |
| 334 | thoroughly tested for compatibility with the other components. For |
| 335 | information on how to check out a particular BitBake-based build |
| 336 | system, consult that build system's supporting documentation. |
| 337 | |
| 338 | .. _bitbake-user-manual-command: |
| 339 | |
| 340 | The BitBake Command |
| 341 | =================== |
| 342 | |
| 343 | The ``bitbake`` command is the primary interface to the BitBake tool. |
| 344 | This section presents the BitBake command syntax and provides several |
| 345 | execution examples. |
| 346 | |
| 347 | Usage and syntax |
| 348 | ---------------- |
| 349 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 350 | Following is the usage and syntax for BitBake:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 351 | |
| 352 | $ bitbake -h |
| 353 | Usage: bitbake [options] [recipename/target recipe:do_task ...] |
| 354 | |
| 355 | Executes the specified task (default is 'build') for a given set of target recipes (.bb files). |
| 356 | It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which |
| 357 | will provide the layer, BBFILES and other configuration information. |
| 358 | |
| 359 | Options: |
| 360 | --version show program's version number and exit |
| 361 | -h, --help show this help message and exit |
| 362 | -b BUILDFILE, --buildfile=BUILDFILE |
| 363 | Execute tasks from a specific .bb recipe directly. |
| 364 | WARNING: Does not handle any dependencies from other |
| 365 | recipes. |
| 366 | -k, --continue Continue as much as possible after an error. While the |
| 367 | target that failed and anything depending on it cannot |
| 368 | be built, as much as possible will be built before |
| 369 | stopping. |
| 370 | -f, --force Force the specified targets/task to run (invalidating |
| 371 | any existing stamp file). |
| 372 | -c CMD, --cmd=CMD Specify the task to execute. The exact options |
| 373 | available depend on the metadata. Some examples might |
| 374 | be 'compile' or 'populate_sysroot' or 'listtasks' may |
| 375 | give a list of the tasks available. |
| 376 | -C INVALIDATE_STAMP, --clear-stamp=INVALIDATE_STAMP |
| 377 | Invalidate the stamp for the specified task such as |
| 378 | 'compile' and then run the default task for the |
| 379 | specified target(s). |
| 380 | -r PREFILE, --read=PREFILE |
| 381 | Read the specified file before bitbake.conf. |
| 382 | -R POSTFILE, --postread=POSTFILE |
| 383 | Read the specified file after bitbake.conf. |
| 384 | -v, --verbose Enable tracing of shell tasks (with 'set -x'). Also |
| 385 | print bb.note(...) messages to stdout (in addition to |
| 386 | writing them to ${T}/log.do_<task>). |
| 387 | -D, --debug Increase the debug level. You can specify this more |
| 388 | than once. -D sets the debug level to 1, where only |
| 389 | bb.debug(1, ...) messages are printed to stdout; -DD |
| 390 | sets the debug level to 2, where both bb.debug(1, ...) |
| 391 | and bb.debug(2, ...) messages are printed; etc. |
| 392 | Without -D, no debug messages are printed. Note that |
| 393 | -D only affects output to stdout. All debug messages |
| 394 | are written to ${T}/log.do_taskname, regardless of the |
| 395 | debug level. |
| 396 | -q, --quiet Output less log message data to the terminal. You can |
| 397 | specify this more than once. |
| 398 | -n, --dry-run Don't execute, just go through the motions. |
| 399 | -S SIGNATURE_HANDLER, --dump-signatures=SIGNATURE_HANDLER |
| 400 | Dump out the signature construction information, with |
| 401 | no task execution. The SIGNATURE_HANDLER parameter is |
| 402 | passed to the handler. Two common values are none and |
| 403 | printdiff but the handler may define more/less. none |
| 404 | means only dump the signature, printdiff means compare |
| 405 | the dumped signature with the cached one. |
| 406 | -p, --parse-only Quit after parsing the BB recipes. |
| 407 | -s, --show-versions Show current and preferred versions of all recipes. |
| 408 | -e, --environment Show the global or per-recipe environment complete |
| 409 | with information about where variables were |
| 410 | set/changed. |
| 411 | -g, --graphviz Save dependency tree information for the specified |
| 412 | targets in the dot syntax. |
| 413 | -I EXTRA_ASSUME_PROVIDED, --ignore-deps=EXTRA_ASSUME_PROVIDED |
| 414 | Assume these dependencies don't exist and are already |
| 415 | provided (equivalent to ASSUME_PROVIDED). Useful to |
| 416 | make dependency graphs more appealing |
| 417 | -l DEBUG_DOMAINS, --log-domains=DEBUG_DOMAINS |
| 418 | Show debug logging for the specified logging domains |
| 419 | -P, --profile Profile the command and save reports. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 420 | -u UI, --ui=UI The user interface to use (knotty, ncurses, taskexp or |
| 421 | teamcity - default knotty). |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 422 | --token=XMLRPCTOKEN Specify the connection token to be used when |
| 423 | connecting to a remote server. |
| 424 | --revisions-changed Set the exit code depending on whether upstream |
| 425 | floating revisions have changed or not. |
| 426 | --server-only Run bitbake without a UI, only starting a server |
| 427 | (cooker) process. |
| 428 | -B BIND, --bind=BIND The name/address for the bitbake xmlrpc server to bind |
| 429 | to. |
| 430 | -T SERVER_TIMEOUT, --idle-timeout=SERVER_TIMEOUT |
| 431 | Set timeout to unload bitbake server due to |
| 432 | inactivity, set to -1 means no unload, default: |
| 433 | Environment variable BB_SERVER_TIMEOUT. |
| 434 | --no-setscene Do not run any setscene tasks. sstate will be ignored |
| 435 | and everything needed, built. |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 436 | --skip-setscene Skip setscene tasks if they would be executed. Tasks |
| 437 | previously restored from sstate will be kept, unlike |
| 438 | --no-setscene |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 439 | --setscene-only Only run setscene tasks, don't run any real tasks. |
| 440 | --remote-server=REMOTE_SERVER |
| 441 | Connect to the specified server. |
| 442 | -m, --kill-server Terminate any running bitbake server. |
| 443 | --observe-only Connect to a server as an observing-only client. |
| 444 | --status-only Check the status of the remote bitbake server. |
| 445 | -w WRITEEVENTLOG, --write-log=WRITEEVENTLOG |
| 446 | Writes the event log of the build to a bitbake event |
| 447 | json file. Use '' (empty string) to assign the name |
| 448 | automatically. |
| 449 | --runall=RUNALL Run the specified task for any recipe in the taskgraph |
| 450 | of the specified target (even if it wouldn't otherwise |
| 451 | have run). |
| 452 | --runonly=RUNONLY Run only the specified task within the taskgraph of |
| 453 | the specified targets (and any task dependencies those |
| 454 | tasks may have). |
| 455 | |
| 456 | .. _bitbake-examples: |
| 457 | |
| 458 | Examples |
| 459 | -------- |
| 460 | |
| 461 | This section presents some examples showing how to use BitBake. |
| 462 | |
| 463 | .. _example-executing-a-task-against-a-single-recipe: |
| 464 | |
| 465 | Executing a Task Against a Single Recipe |
| 466 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 467 | |
| 468 | Executing tasks for a single recipe file is relatively simple. You |
| 469 | specify the file in question, and BitBake parses it and executes the |
| 470 | specified task. If you do not specify a task, BitBake executes the |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 471 | default task, which is "build". BitBake obeys inter-task dependencies |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 472 | when doing so. |
| 473 | |
| 474 | The following command runs the build task, which is the default task, on |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 475 | the ``foo_1.0.bb`` recipe file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 476 | |
| 477 | $ bitbake -b foo_1.0.bb |
| 478 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 479 | The following command runs the clean task on the ``foo.bb`` recipe file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 480 | |
| 481 | $ bitbake -b foo.bb -c clean |
| 482 | |
| 483 | .. note:: |
| 484 | |
| 485 | The "-b" option explicitly does not handle recipe dependencies. Other |
| 486 | than for debugging purposes, it is instead recommended that you use |
| 487 | the syntax presented in the next section. |
| 488 | |
| 489 | Executing Tasks Against a Set of Recipe Files |
| 490 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 491 | |
| 492 | There are a number of additional complexities introduced when one wants |
| 493 | to manage multiple ``.bb`` files. Clearly there needs to be a way to |
| 494 | tell BitBake what files are available and, of those, which you want to |
| 495 | execute. There also needs to be a way for each recipe to express its |
| 496 | dependencies, both for build-time and runtime. There must be a way for |
| 497 | you to express recipe preferences when multiple recipes provide the same |
| 498 | functionality, or when there are multiple versions of a recipe. |
| 499 | |
| 500 | The ``bitbake`` command, when not using "--buildfile" or "-b" only |
| 501 | accepts a "PROVIDES". You cannot provide anything else. By default, a |
| 502 | recipe file generally "PROVIDES" its "packagename" as shown in the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 503 | following example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 504 | |
| 505 | $ bitbake foo |
| 506 | |
| 507 | This next example "PROVIDES" the |
| 508 | package name and also uses the "-c" option to tell BitBake to just |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 509 | execute the ``do_clean`` task:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 510 | |
| 511 | $ bitbake -c clean foo |
| 512 | |
| 513 | Executing a List of Task and Recipe Combinations |
| 514 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 515 | |
| 516 | The BitBake command line supports specifying different tasks for |
| 517 | individual targets when you specify multiple targets. For example, |
| 518 | suppose you had two targets (or recipes) ``myfirstrecipe`` and |
| 519 | ``mysecondrecipe`` and you needed BitBake to run ``taskA`` for the first |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 520 | recipe and ``taskB`` for the second recipe:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 521 | |
| 522 | $ bitbake myfirstrecipe:do_taskA mysecondrecipe:do_taskB |
| 523 | |
| 524 | Generating Dependency Graphs |
| 525 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 526 | |
| 527 | BitBake is able to generate dependency graphs using the ``dot`` syntax. |
| 528 | You can convert these graphs into images using the ``dot`` tool from |
| 529 | `Graphviz <http://www.graphviz.org>`__. |
| 530 | |
| 531 | When you generate a dependency graph, BitBake writes two files to the |
| 532 | current working directory: |
| 533 | |
| 534 | - ``task-depends.dot``: Shows dependencies between tasks. These |
| 535 | dependencies match BitBake's internal task execution list. |
| 536 | |
| 537 | - ``pn-buildlist``: Shows a simple list of targets that are to be |
| 538 | built. |
| 539 | |
| 540 | To stop depending on common depends, use the "-I" depend option and |
| 541 | BitBake omits them from the graph. Leaving this information out can |
| 542 | produce more readable graphs. This way, you can remove from the graph |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 543 | :term:`DEPENDS` from inherited classes such as ``base.bbclass``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 544 | |
| 545 | Here are two examples that create dependency graphs. The second example |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 546 | omits depends common in OpenEmbedded from the graph:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 547 | |
| 548 | $ bitbake -g foo |
| 549 | |
| 550 | $ bitbake -g -I virtual/kernel -I eglibc foo |
| 551 | |
| 552 | Executing a Multiple Configuration Build |
| 553 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 554 | |
| 555 | BitBake is able to build multiple images or packages using a single |
| 556 | command where the different targets require different configurations |
| 557 | (multiple configuration builds). Each target, in this scenario, is |
| 558 | referred to as a "multiconfig". |
| 559 | |
| 560 | To accomplish a multiple configuration build, you must define each |
| 561 | target's configuration separately using a parallel configuration file in |
| 562 | the build directory. The location for these multiconfig configuration |
| 563 | files is specific. They must reside in the current build directory in a |
| 564 | sub-directory of ``conf`` named ``multiconfig``. Following is an example |
| 565 | for two separate targets: |
| 566 | |
| 567 | .. image:: figures/bb_multiconfig_files.png |
| 568 | :align: center |
| 569 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 570 | The reason for this required file hierarchy is because the :term:`BBPATH` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 571 | variable is not constructed until the layers are parsed. Consequently, |
| 572 | using the configuration file as a pre-configuration file is not possible |
| 573 | unless it is located in the current working directory. |
| 574 | |
| 575 | Minimally, each configuration file must define the machine and the |
| 576 | temporary directory BitBake uses for the build. Suggested practice |
| 577 | dictates that you do not overlap the temporary directories used during |
| 578 | the builds. |
| 579 | |
| 580 | Aside from separate configuration files for each target, you must also |
| 581 | enable BitBake to perform multiple configuration builds. Enabling is |
| 582 | accomplished by setting the |
| 583 | :term:`BBMULTICONFIG` variable in the |
| 584 | ``local.conf`` configuration file. As an example, suppose you had |
| 585 | configuration files for ``target1`` and ``target2`` defined in the build |
| 586 | directory. The following statement in the ``local.conf`` file both |
| 587 | enables BitBake to perform multiple configuration builds and specifies |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 588 | the two extra multiconfigs:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 589 | |
| 590 | BBMULTICONFIG = "target1 target2" |
| 591 | |
| 592 | Once the target configuration files are in place and BitBake has been |
| 593 | enabled to perform multiple configuration builds, use the following |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 594 | command form to start the builds:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 595 | |
| 596 | $ bitbake [mc:multiconfigname:]target [[[mc:multiconfigname:]target] ... ] |
| 597 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 598 | Here is an example for two extra multiconfigs: ``target1`` and ``target2``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 599 | |
| 600 | $ bitbake mc::target mc:target1:target mc:target2:target |
| 601 | |
| 602 | .. _bb-enabling-multiple-configuration-build-dependencies: |
| 603 | |
| 604 | Enabling Multiple Configuration Build Dependencies |
| 605 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 606 | |
| 607 | Sometimes dependencies can exist between targets (multiconfigs) in a |
| 608 | multiple configuration build. For example, suppose that in order to |
| 609 | build an image for a particular architecture, the root filesystem of |
| 610 | another build for a different architecture needs to exist. In other |
| 611 | words, the image for the first multiconfig depends on the root |
| 612 | filesystem of the second multiconfig. This dependency is essentially |
| 613 | that the task in the recipe that builds one multiconfig is dependent on |
| 614 | the completion of the task in the recipe that builds another |
| 615 | multiconfig. |
| 616 | |
| 617 | To enable dependencies in a multiple configuration build, you must |
| 618 | declare the dependencies in the recipe using the following statement |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 619 | form:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 620 | |
| 621 | task_or_package[mcdepends] = "mc:from_multiconfig:to_multiconfig:recipe_name:task_on_which_to_depend" |
| 622 | |
| 623 | To better show how to use this statement, consider an example with two |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 624 | multiconfigs: ``target1`` and ``target2``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 625 | |
| 626 | image_task[mcdepends] = "mc:target1:target2:image2:rootfs_task" |
| 627 | |
| 628 | In this example, the |
| 629 | ``from_multiconfig`` is "target1" and the ``to_multiconfig`` is "target2". The |
| 630 | task on which the image whose recipe contains image_task depends on the |
| 631 | completion of the rootfs_task used to build out image2, which is |
| 632 | associated with the "target2" multiconfig. |
| 633 | |
| 634 | Once you set up this dependency, you can build the "target1" multiconfig |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 635 | using a BitBake command as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 636 | |
| 637 | $ bitbake mc:target1:image1 |
| 638 | |
| 639 | This command executes all the tasks needed to create ``image1`` for the "target1" |
| 640 | multiconfig. Because of the dependency, BitBake also executes through |
| 641 | the ``rootfs_task`` for the "target2" multiconfig build. |
| 642 | |
| 643 | Having a recipe depend on the root filesystem of another build might not |
| 644 | seem that useful. Consider this change to the statement in the image1 |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 645 | recipe:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 646 | |
| 647 | image_task[mcdepends] = "mc:target1:target2:image2:image_task" |
| 648 | |
| 649 | In this case, BitBake must create ``image2`` for the "target2" build since |
| 650 | the "target1" build depends on it. |
| 651 | |
| 652 | Because "target1" and "target2" are enabled for multiple configuration |
| 653 | builds and have separate configuration files, BitBake places the |
| 654 | artifacts for each build in the respective temporary build directories. |