Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 1 | .. SPDX-License-Identifier: CC-BY-SA-2.0-UK |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 2 | |
| 3 | ***** |
| 4 | Tasks |
| 5 | ***** |
| 6 | |
| 7 | Tasks are units of execution for BitBake. Recipes (``.bb`` files) use |
| 8 | tasks to complete configuring, compiling, and packaging software. This |
| 9 | chapter provides a reference of the tasks defined in the OpenEmbedded |
| 10 | build system. |
| 11 | |
| 12 | Normal Recipe Build Tasks |
| 13 | ========================= |
| 14 | |
| 15 | The following sections describe normal tasks associated with building a |
| 16 | recipe. For more information on tasks and dependencies, see the |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 17 | ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-metadata:tasks`" and |
| 18 | ":ref:`bitbake:bitbake-user-manual/bitbake-user-manual-execution:dependencies`" sections in the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 19 | BitBake User Manual. |
| 20 | |
| 21 | .. _ref-tasks-build: |
| 22 | |
| 23 | ``do_build`` |
| 24 | ------------ |
| 25 | |
| 26 | The default task for all recipes. This task depends on all other normal |
| 27 | tasks required to build a recipe. |
| 28 | |
| 29 | .. _ref-tasks-compile: |
| 30 | |
| 31 | ``do_compile`` |
| 32 | -------------- |
| 33 | |
| 34 | Compiles the source code. This task runs with the current working |
| 35 | directory set to ``${``\ :term:`B`\ ``}``. |
| 36 | |
| 37 | The default behavior of this task is to run the ``oe_runmake`` function |
| 38 | if a makefile (``Makefile``, ``makefile``, or ``GNUmakefile``) is found. |
| 39 | If no such file is found, the ``do_compile`` task does nothing. |
| 40 | |
| 41 | .. _ref-tasks-compile_ptest_base: |
| 42 | |
| 43 | ``do_compile_ptest_base`` |
| 44 | ------------------------- |
| 45 | |
| 46 | Compiles the runtime test suite included in the software being built. |
| 47 | |
| 48 | .. _ref-tasks-configure: |
| 49 | |
| 50 | ``do_configure`` |
| 51 | ---------------- |
| 52 | |
| 53 | Configures the source by enabling and disabling any build-time and |
| 54 | configuration options for the software being built. The task runs with |
| 55 | the current working directory set to ``${``\ :term:`B`\ ``}``. |
| 56 | |
| 57 | The default behavior of this task is to run ``oe_runmake clean`` if a |
| 58 | makefile (``Makefile``, ``makefile``, or ``GNUmakefile``) is found and |
| 59 | :term:`CLEANBROKEN` is not set to "1". If no such |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 60 | file is found or the :term:`CLEANBROKEN` variable is set to "1", the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 61 | ``do_configure`` task does nothing. |
| 62 | |
| 63 | .. _ref-tasks-configure_ptest_base: |
| 64 | |
| 65 | ``do_configure_ptest_base`` |
| 66 | --------------------------- |
| 67 | |
| 68 | Configures the runtime test suite included in the software being built. |
| 69 | |
| 70 | .. _ref-tasks-deploy: |
| 71 | |
| 72 | ``do_deploy`` |
| 73 | ------------- |
| 74 | |
| 75 | Writes output files that are to be deployed to |
| 76 | ``${``\ :term:`DEPLOY_DIR_IMAGE`\ ``}``. The |
| 77 | task runs with the current working directory set to |
| 78 | ``${``\ :term:`B`\ ``}``. |
| 79 | |
| 80 | Recipes implementing this task should inherit the |
| 81 | :ref:`deploy <ref-classes-deploy>` class and should write the output |
| 82 | to ``${``\ :term:`DEPLOYDIR`\ ``}``, which is not to be |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 83 | confused with ``${DEPLOY_DIR}``. The :ref:`deploy <ref-classes-deploy>` class sets up |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 84 | ``do_deploy`` as a shared state (sstate) task that can be accelerated |
| 85 | through sstate use. The sstate mechanism takes care of copying the |
| 86 | output from ``${DEPLOYDIR}`` to ``${DEPLOY_DIR_IMAGE}``. |
| 87 | |
| 88 | .. note:: |
| 89 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 90 | Do not write the output directly to ``${DEPLOY_DIR_IMAGE}``, as this causes |
| 91 | the sstate mechanism to malfunction. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 92 | |
| 93 | The ``do_deploy`` task is not added as a task by default and |
| 94 | consequently needs to be added manually. If you want the task to run |
| 95 | after :ref:`ref-tasks-compile`, you can add it by doing |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 96 | the following:: |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 97 | |
| 98 | addtask deploy after do_compile |
| 99 | |
| 100 | Adding ``do_deploy`` after other tasks works the same way. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 101 | |
| 102 | .. note:: |
| 103 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 104 | You do not need to add ``before do_build`` to the ``addtask`` command |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 105 | (though it is harmless), because the :ref:`base <ref-classes-base>` class contains the following:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 106 | |
| 107 | do_build[recrdeptask] += "do_deploy" |
| 108 | |
| 109 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 110 | See the ":ref:`bitbake-user-manual/bitbake-user-manual-execution:dependencies`" |
| 111 | section in the BitBake User Manual for more information. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 112 | |
| 113 | If the ``do_deploy`` task re-executes, any previous output is removed |
| 114 | (i.e. "cleaned"). |
| 115 | |
| 116 | .. _ref-tasks-fetch: |
| 117 | |
| 118 | ``do_fetch`` |
| 119 | ------------ |
| 120 | |
| 121 | Fetches the source code. This task uses the |
| 122 | :term:`SRC_URI` variable and the argument's prefix to |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 123 | determine the correct :ref:`fetcher <bitbake:bitbake-user-manual/bitbake-user-manual-fetching:fetchers>` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 124 | module. |
| 125 | |
| 126 | .. _ref-tasks-image: |
| 127 | |
| 128 | ``do_image`` |
| 129 | ------------ |
| 130 | |
| 131 | Starts the image generation process. The ``do_image`` task runs after |
| 132 | the OpenEmbedded build system has run the |
| 133 | :ref:`ref-tasks-rootfs` task during which packages are |
| 134 | identified for installation into the image and the root filesystem is |
| 135 | created, complete with post-processing. |
| 136 | |
| 137 | The ``do_image`` task performs pre-processing on the image through the |
| 138 | :term:`IMAGE_PREPROCESS_COMMAND` and |
| 139 | dynamically generates supporting ``do_image_*`` tasks as needed. |
| 140 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 141 | For more information on image creation, see the ":ref:`overview-manual/concepts:image generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 142 | section in the Yocto Project Overview and Concepts Manual. |
| 143 | |
| 144 | .. _ref-tasks-image-complete: |
| 145 | |
| 146 | ``do_image_complete`` |
| 147 | --------------------- |
| 148 | |
| 149 | Completes the image generation process. The ``do_image_complete`` task |
| 150 | runs after the OpenEmbedded build system has run the |
| 151 | :ref:`ref-tasks-image` task during which image |
| 152 | pre-processing occurs and through dynamically generated ``do_image_*`` |
| 153 | tasks the image is constructed. |
| 154 | |
| 155 | The ``do_image_complete`` task performs post-processing on the image |
| 156 | through the |
| 157 | :term:`IMAGE_POSTPROCESS_COMMAND`. |
| 158 | |
| 159 | For more information on image creation, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 160 | ":ref:`overview-manual/concepts:image generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 161 | section in the Yocto Project Overview and Concepts Manual. |
| 162 | |
| 163 | .. _ref-tasks-install: |
| 164 | |
| 165 | ``do_install`` |
| 166 | -------------- |
| 167 | |
| 168 | Copies files that are to be packaged into the holding area |
| 169 | ``${``\ :term:`D`\ ``}``. This task runs with the current |
| 170 | working directory set to ``${``\ :term:`B`\ ``}``, which is the |
| 171 | compilation directory. The ``do_install`` task, as well as other tasks |
| 172 | that either directly or indirectly depend on the installed files (e.g. |
| 173 | :ref:`ref-tasks-package`, ``do_package_write_*``, and |
| 174 | :ref:`ref-tasks-rootfs`), run under |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 175 | :ref:`fakeroot <overview-manual/concepts:fakeroot and pseudo>`. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 176 | |
| 177 | .. note:: |
| 178 | |
| 179 | When installing files, be careful not to set the owner and group IDs |
| 180 | of the installed files to unintended values. Some methods of copying |
| 181 | files, notably when using the recursive ``cp`` command, can preserve |
| 182 | the UID and/or GID of the original file, which is usually not what |
| 183 | you want. The ``host-user-contaminated`` QA check checks for files |
| 184 | that probably have the wrong ownership. |
| 185 | |
| 186 | Safe methods for installing files include the following: |
| 187 | |
| 188 | - The ``install`` utility. This utility is the preferred method. |
| 189 | |
Patrick Williams | 4585273 | 2022-04-02 08:58:32 -0500 | [diff] [blame] | 190 | - The ``cp`` command with the ``--no-preserve=ownership`` option. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 191 | |
Patrick Williams | 4585273 | 2022-04-02 08:58:32 -0500 | [diff] [blame] | 192 | - The ``tar`` command with the ``--no-same-owner`` option. See the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 193 | ``bin_package.bbclass`` file in the ``meta/classes`` directory of |
| 194 | the :term:`Source Directory` for an example. |
| 195 | |
| 196 | .. _ref-tasks-install_ptest_base: |
| 197 | |
| 198 | ``do_install_ptest_base`` |
| 199 | ------------------------- |
| 200 | |
| 201 | Copies the runtime test suite files from the compilation directory to a |
| 202 | holding area. |
| 203 | |
| 204 | .. _ref-tasks-package: |
| 205 | |
| 206 | ``do_package`` |
| 207 | -------------- |
| 208 | |
| 209 | Analyzes the content of the holding area |
| 210 | ``${``\ :term:`D`\ ``}`` and splits the content into subsets |
| 211 | based on available packages and files. This task makes use of the |
| 212 | :term:`PACKAGES` and :term:`FILES` |
| 213 | variables. |
| 214 | |
| 215 | The ``do_package`` task, in conjunction with the |
| 216 | :ref:`ref-tasks-packagedata` task, also saves some |
| 217 | important package metadata. For additional information, see the |
| 218 | :term:`PKGDESTWORK` variable and the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 219 | ":ref:`overview-manual/concepts:automatically added runtime dependencies`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 220 | section in the Yocto Project Overview and Concepts Manual. |
| 221 | |
| 222 | .. _ref-tasks-package_qa: |
| 223 | |
| 224 | ``do_package_qa`` |
| 225 | ----------------- |
| 226 | |
| 227 | Runs QA checks on packaged files. For more information on these checks, |
| 228 | see the :ref:`insane <ref-classes-insane>` class. |
| 229 | |
| 230 | .. _ref-tasks-package_write_deb: |
| 231 | |
| 232 | ``do_package_write_deb`` |
| 233 | ------------------------ |
| 234 | |
| 235 | Creates Debian packages (i.e. ``*.deb`` files) and places them in the |
| 236 | ``${``\ :term:`DEPLOY_DIR_DEB`\ ``}`` directory in |
| 237 | the package feeds area. For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 238 | ":ref:`overview-manual/concepts:package feeds`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 239 | the Yocto Project Overview and Concepts Manual. |
| 240 | |
| 241 | .. _ref-tasks-package_write_ipk: |
| 242 | |
| 243 | ``do_package_write_ipk`` |
| 244 | ------------------------ |
| 245 | |
| 246 | Creates IPK packages (i.e. ``*.ipk`` files) and places them in the |
| 247 | ``${``\ :term:`DEPLOY_DIR_IPK`\ ``}`` directory in |
| 248 | the package feeds area. For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 249 | ":ref:`overview-manual/concepts:package feeds`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 250 | the Yocto Project Overview and Concepts Manual. |
| 251 | |
| 252 | .. _ref-tasks-package_write_rpm: |
| 253 | |
| 254 | ``do_package_write_rpm`` |
| 255 | ------------------------ |
| 256 | |
| 257 | Creates RPM packages (i.e. ``*.rpm`` files) and places them in the |
| 258 | ``${``\ :term:`DEPLOY_DIR_RPM`\ ``}`` directory in |
| 259 | the package feeds area. For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 260 | ":ref:`overview-manual/concepts:package feeds`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 261 | the Yocto Project Overview and Concepts Manual. |
| 262 | |
| 263 | .. _ref-tasks-package_write_tar: |
| 264 | |
| 265 | ``do_package_write_tar`` |
| 266 | ------------------------ |
| 267 | |
| 268 | Creates tarballs and places them in the |
| 269 | ``${``\ :term:`DEPLOY_DIR_TAR`\ ``}`` directory in |
| 270 | the package feeds area. For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 271 | ":ref:`overview-manual/concepts:package feeds`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 272 | the Yocto Project Overview and Concepts Manual. |
| 273 | |
| 274 | .. _ref-tasks-packagedata: |
| 275 | |
| 276 | ``do_packagedata`` |
| 277 | ------------------ |
| 278 | |
| 279 | Saves package metadata generated by the |
| 280 | :ref:`ref-tasks-package` task in |
| 281 | :term:`PKGDATA_DIR` to make it available globally. |
| 282 | |
| 283 | .. _ref-tasks-patch: |
| 284 | |
| 285 | ``do_patch`` |
| 286 | ------------ |
| 287 | |
| 288 | Locates patch files and applies them to the source code. |
| 289 | |
| 290 | After fetching and unpacking source files, the build system uses the |
| 291 | recipe's :term:`SRC_URI` statements |
| 292 | to locate and apply patch files to the source code. |
| 293 | |
| 294 | .. note:: |
| 295 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 296 | The build system uses the :term:`FILESPATH` variable to determine the |
| 297 | default set of directories when searching for patches. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 298 | |
| 299 | Patch files, by default, are ``*.patch`` and ``*.diff`` files created |
| 300 | and kept in a subdirectory of the directory holding the recipe file. For |
| 301 | example, consider the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 302 | :yocto_git:`bluez5 </poky/tree/meta/recipes-connectivity/bluez5>` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 303 | recipe from the OE-Core layer (i.e. ``poky/meta``):: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 304 | |
| 305 | poky/meta/recipes-connectivity/bluez5 |
| 306 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 307 | This recipe has two patch files located here:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 308 | |
| 309 | poky/meta/recipes-connectivity/bluez5/bluez5 |
| 310 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 311 | In the ``bluez5`` recipe, the :term:`SRC_URI` statements point to the source |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 312 | and patch files needed to build the package. |
| 313 | |
| 314 | .. note:: |
| 315 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 316 | In the case for the ``bluez5_5.48.bb`` recipe, the :term:`SRC_URI` statements |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 317 | are from an include file ``bluez5.inc``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 318 | |
| 319 | As mentioned earlier, the build system treats files whose file types are |
| 320 | ``.patch`` and ``.diff`` as patch files. However, you can use the |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 321 | "apply=yes" parameter with the :term:`SRC_URI` statement to indicate any |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 322 | file as a patch file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 323 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 324 | SRC_URI = " \ |
| 325 | git://path_to_repo/some_package \ |
| 326 | file://file;apply=yes \ |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 327 | " |
| 328 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 329 | Conversely, if you have a file whose file type is ``.patch`` or ``.diff`` |
| 330 | and you want to exclude it so that the ``do_patch`` task does not apply |
| 331 | it during the patch phase, you can use the "apply=no" parameter with the |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 332 | :term:`SRC_URI` statement:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 333 | |
| 334 | SRC_URI = " \ |
| 335 | git://path_to_repo/some_package \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 336 | file://file1.patch \ |
| 337 | file://file2.patch;apply=no \ |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 338 | " |
| 339 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 340 | In the previous example ``file1.patch`` would be applied as a patch by default |
| 341 | while ``file2.patch`` would not be applied. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 342 | |
| 343 | You can find out more about the patching process in the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 344 | ":ref:`overview-manual/concepts:patching`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 345 | the Yocto Project Overview and Concepts Manual and the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 346 | ":ref:`dev-manual/common-tasks:patching code`" section in the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 347 | Yocto Project Development Tasks Manual. |
| 348 | |
| 349 | .. _ref-tasks-populate_lic: |
| 350 | |
| 351 | ``do_populate_lic`` |
| 352 | ------------------- |
| 353 | |
| 354 | Writes license information for the recipe that is collected later when |
| 355 | the image is constructed. |
| 356 | |
| 357 | .. _ref-tasks-populate_sdk: |
| 358 | |
| 359 | ``do_populate_sdk`` |
| 360 | ------------------- |
| 361 | |
| 362 | Creates the file and directory structure for an installable SDK. See the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 363 | ":ref:`overview-manual/concepts:sdk generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 364 | section in the Yocto Project Overview and Concepts Manual for more |
| 365 | information. |
| 366 | |
| 367 | .. _ref-tasks-populate_sdk_ext: |
| 368 | |
| 369 | ``do_populate_sdk_ext`` |
| 370 | ----------------------- |
| 371 | |
| 372 | Creates the file and directory structure for an installable extensible |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 373 | SDK (eSDK). See the ":ref:`overview-manual/concepts:sdk generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 374 | section in the Yocto Project Overview and Concepts Manual for more |
| 375 | information. |
| 376 | |
| 377 | |
| 378 | .. _ref-tasks-populate_sysroot: |
| 379 | |
| 380 | ``do_populate_sysroot`` |
| 381 | ----------------------- |
| 382 | |
| 383 | Stages (copies) a subset of the files installed by the |
| 384 | :ref:`ref-tasks-install` task into the appropriate |
| 385 | sysroot. For information on how to access these files from other |
| 386 | recipes, see the :term:`STAGING_DIR* <STAGING_DIR_HOST>` variables. |
| 387 | Directories that would typically not be needed by other recipes at build |
| 388 | time (e.g. ``/etc``) are not copied by default. |
| 389 | |
| 390 | For information on what directories are copied by default, see the |
| 391 | :term:`SYSROOT_DIRS* <SYSROOT_DIRS>` variables. You can change |
| 392 | these variables inside your recipe if you need to make additional (or |
| 393 | fewer) directories available to other recipes at build time. |
| 394 | |
| 395 | The ``do_populate_sysroot`` task is a shared state (sstate) task, which |
| 396 | means that the task can be accelerated through sstate use. Realize also |
| 397 | that if the task is re-executed, any previous output is removed (i.e. |
| 398 | "cleaned"). |
| 399 | |
| 400 | .. _ref-tasks-prepare_recipe_sysroot: |
| 401 | |
| 402 | ``do_prepare_recipe_sysroot`` |
| 403 | ----------------------------- |
| 404 | |
| 405 | Installs the files into the individual recipe specific sysroots (i.e. |
| 406 | ``recipe-sysroot`` and ``recipe-sysroot-native`` under |
| 407 | ``${``\ :term:`WORKDIR`\ ``}`` based upon the |
| 408 | dependencies specified by :term:`DEPENDS`). See the |
| 409 | ":ref:`staging <ref-classes-staging>`" class for more information. |
| 410 | |
| 411 | .. _ref-tasks-rm_work: |
| 412 | |
| 413 | ``do_rm_work`` |
| 414 | -------------- |
| 415 | |
| 416 | Removes work files after the OpenEmbedded build system has finished with |
| 417 | them. You can learn more by looking at the |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 418 | ":ref:`ref-classes-rm-work`" section. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 419 | |
| 420 | .. _ref-tasks-unpack: |
| 421 | |
| 422 | ``do_unpack`` |
| 423 | ------------- |
| 424 | |
| 425 | Unpacks the source code into a working directory pointed to by |
| 426 | ``${``\ :term:`WORKDIR`\ ``}``. The :term:`S` |
| 427 | variable also plays a role in where unpacked source files ultimately |
| 428 | reside. For more information on how source files are unpacked, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 429 | ":ref:`overview-manual/concepts:source fetching`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 430 | section in the Yocto Project Overview and Concepts Manual and also see |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 431 | the :term:`WORKDIR` and :term:`S` variable descriptions. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 432 | |
| 433 | Manually Called Tasks |
| 434 | ===================== |
| 435 | |
| 436 | These tasks are typically manually triggered (e.g. by using the |
| 437 | ``bitbake -c`` command-line option): |
| 438 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 439 | ``do_checkuri`` |
| 440 | --------------- |
| 441 | |
| 442 | Validates the :term:`SRC_URI` value. |
| 443 | |
| 444 | .. _ref-tasks-clean: |
| 445 | |
| 446 | ``do_clean`` |
| 447 | ------------ |
| 448 | |
| 449 | Removes all output files for a target from the |
| 450 | :ref:`ref-tasks-unpack` task forward (i.e. ``do_unpack``, |
| 451 | :ref:`ref-tasks-configure`, |
| 452 | :ref:`ref-tasks-compile`, |
| 453 | :ref:`ref-tasks-install`, and |
| 454 | :ref:`ref-tasks-package`). |
| 455 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 456 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 457 | |
| 458 | $ bitbake -c clean recipe |
| 459 | |
| 460 | Running this task does not remove the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 461 | :ref:`sstate <overview-manual/concepts:shared state cache>` cache files. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 462 | Consequently, if no changes have been made and the recipe is rebuilt |
| 463 | after cleaning, output files are simply restored from the sstate cache. |
| 464 | If you want to remove the sstate cache files for the recipe, you need to |
| 465 | use the :ref:`ref-tasks-cleansstate` task instead |
| 466 | (i.e. ``bitbake -c cleansstate`` recipe). |
| 467 | |
| 468 | .. _ref-tasks-cleanall: |
| 469 | |
| 470 | ``do_cleanall`` |
| 471 | --------------- |
| 472 | |
| 473 | Removes all output files, shared state |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 474 | (:ref:`sstate <overview-manual/concepts:shared state cache>`) cache, and |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 475 | downloaded source files for a target (i.e. the contents of |
| 476 | :term:`DL_DIR`). Essentially, the ``do_cleanall`` task is |
| 477 | identical to the :ref:`ref-tasks-cleansstate` task |
| 478 | with the added removal of downloaded source files. |
| 479 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 480 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 481 | |
| 482 | $ bitbake -c cleanall recipe |
| 483 | |
| 484 | Typically, you would not normally use the ``cleanall`` task. Do so only |
| 485 | if you want to start fresh with the :ref:`ref-tasks-fetch` |
| 486 | task. |
| 487 | |
| 488 | .. _ref-tasks-cleansstate: |
| 489 | |
| 490 | ``do_cleansstate`` |
| 491 | ------------------ |
| 492 | |
| 493 | Removes all output files and shared state |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 494 | (:ref:`sstate <overview-manual/concepts:shared state cache>`) cache for a |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 495 | target. Essentially, the ``do_cleansstate`` task is identical to the |
| 496 | :ref:`ref-tasks-clean` task with the added removal of |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 497 | shared state (:ref:`sstate <overview-manual/concepts:shared state cache>`) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 498 | cache. |
| 499 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 500 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 501 | |
| 502 | $ bitbake -c cleansstate recipe |
| 503 | |
| 504 | When you run the ``do_cleansstate`` task, the OpenEmbedded build system |
| 505 | no longer uses any sstate. Consequently, building the recipe from |
| 506 | scratch is guaranteed. |
| 507 | |
| 508 | .. note:: |
| 509 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 510 | The ``do_cleansstate`` task cannot remove sstate from a remote sstate |
| 511 | mirror. If you need to build a target from scratch using remote mirrors, use |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 512 | the "-f" option as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 513 | |
| 514 | $ bitbake -f -c do_cleansstate target |
| 515 | |
| 516 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 517 | .. _ref-tasks-pydevshell: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 518 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 519 | ``do_pydevshell`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 520 | ----------------- |
| 521 | |
| 522 | Starts a shell in which an interactive Python interpreter allows you to |
| 523 | interact with the BitBake build environment. From within this shell, you |
| 524 | can directly examine and set bits from the data store and execute |
Andrew Geissler | d583833 | 2022-05-27 11:33:10 -0500 | [diff] [blame] | 525 | functions as if within the BitBake environment. See the ":ref:`dev-manual/common-tasks:using a Python development shell`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 526 | the Yocto Project Development Tasks Manual for more information about |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 527 | using ``pydevshell``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 528 | |
| 529 | .. _ref-tasks-devshell: |
| 530 | |
| 531 | ``do_devshell`` |
| 532 | --------------- |
| 533 | |
| 534 | Starts a shell whose environment is set up for development, debugging, |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 535 | or both. See the ":ref:`dev-manual/common-tasks:using a development shell`" section in the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 536 | Yocto Project Development Tasks Manual for more information about using |
| 537 | ``devshell``. |
| 538 | |
| 539 | .. _ref-tasks-listtasks: |
| 540 | |
| 541 | ``do_listtasks`` |
| 542 | ---------------- |
| 543 | |
| 544 | Lists all defined tasks for a target. |
| 545 | |
| 546 | .. _ref-tasks-package_index: |
| 547 | |
| 548 | ``do_package_index`` |
| 549 | -------------------- |
| 550 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 551 | Creates or updates the index in the :ref:`overview-manual/concepts:package feeds` area. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 552 | |
| 553 | .. note:: |
| 554 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 555 | This task is not triggered with the ``bitbake -c`` command-line option as |
| 556 | are the other tasks in this section. Because this task is specifically for |
| 557 | the ``package-index`` recipe, you run it using ``bitbake package-index``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 558 | |
| 559 | Image-Related Tasks |
| 560 | =================== |
| 561 | |
| 562 | The following tasks are applicable to image recipes. |
| 563 | |
| 564 | .. _ref-tasks-bootimg: |
| 565 | |
| 566 | ``do_bootimg`` |
| 567 | -------------- |
| 568 | |
| 569 | Creates a bootable live image. See the |
| 570 | :term:`IMAGE_FSTYPES` variable for additional |
| 571 | information on live image types. |
| 572 | |
| 573 | .. _ref-tasks-bundle_initramfs: |
| 574 | |
| 575 | ``do_bundle_initramfs`` |
| 576 | ----------------------- |
| 577 | |
| 578 | Combines an initial RAM disk (initramfs) image and kernel together to |
| 579 | form a single image. The |
| 580 | :term:`CONFIG_INITRAMFS_SOURCE` variable |
| 581 | has some more information about these types of images. |
| 582 | |
| 583 | .. _ref-tasks-rootfs: |
| 584 | |
| 585 | ``do_rootfs`` |
| 586 | ------------- |
| 587 | |
| 588 | Creates the root filesystem (file and directory structure) for an image. |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 589 | See the ":ref:`overview-manual/concepts:image generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 590 | section in the Yocto Project Overview and Concepts Manual for more |
| 591 | information on how the root filesystem is created. |
| 592 | |
| 593 | .. _ref-tasks-testimage: |
| 594 | |
| 595 | ``do_testimage`` |
| 596 | ---------------- |
| 597 | |
| 598 | Boots an image and performs runtime tests within the image. For |
| 599 | information on automatically testing images, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 600 | ":ref:`dev-manual/common-tasks:performing automated runtime testing`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 601 | section in the Yocto Project Development Tasks Manual. |
| 602 | |
| 603 | .. _ref-tasks-testimage_auto: |
| 604 | |
| 605 | ``do_testimage_auto`` |
| 606 | --------------------- |
| 607 | |
| 608 | Boots an image and performs runtime tests within the image immediately |
| 609 | after it has been built. This task is enabled when you set |
| 610 | :term:`TESTIMAGE_AUTO` equal to "1". |
| 611 | |
| 612 | For information on automatically testing images, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 613 | ":ref:`dev-manual/common-tasks:performing automated runtime testing`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 614 | section in the Yocto Project Development Tasks Manual. |
| 615 | |
| 616 | Kernel-Related Tasks |
| 617 | ==================== |
| 618 | |
| 619 | The following tasks are applicable to kernel recipes. Some of these |
| 620 | tasks (e.g. the :ref:`ref-tasks-menuconfig` task) are |
| 621 | also applicable to recipes that use Linux kernel style configuration |
| 622 | such as the BusyBox recipe. |
| 623 | |
| 624 | .. _ref-tasks-compile_kernelmodules: |
| 625 | |
| 626 | ``do_compile_kernelmodules`` |
| 627 | ---------------------------- |
| 628 | |
| 629 | Runs the step that builds the kernel modules (if needed). Building a |
| 630 | kernel consists of two steps: 1) the kernel (``vmlinux``) is built, and |
| 631 | 2) the modules are built (i.e. ``make modules``). |
| 632 | |
| 633 | .. _ref-tasks-diffconfig: |
| 634 | |
| 635 | ``do_diffconfig`` |
| 636 | ----------------- |
| 637 | |
| 638 | When invoked by the user, this task creates a file containing the |
| 639 | differences between the original config as produced by |
| 640 | :ref:`ref-tasks-kernel_configme` task and the |
| 641 | changes made by the user with other methods (i.e. using |
| 642 | (:ref:`ref-tasks-kernel_menuconfig`). Once the |
| 643 | file of differences is created, it can be used to create a config |
| 644 | fragment that only contains the differences. You can invoke this task |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 645 | from the command line as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 646 | |
| 647 | $ bitbake linux-yocto -c diffconfig |
| 648 | |
| 649 | For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 650 | ":ref:`kernel-dev/common:creating configuration fragments`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 651 | section in the Yocto Project Linux Kernel Development Manual. |
| 652 | |
| 653 | .. _ref-tasks-kernel_checkout: |
| 654 | |
| 655 | ``do_kernel_checkout`` |
| 656 | ---------------------- |
| 657 | |
| 658 | Converts the newly unpacked kernel source into a form with which the |
| 659 | OpenEmbedded build system can work. Because the kernel source can be |
| 660 | fetched in several different ways, the ``do_kernel_checkout`` task makes |
| 661 | sure that subsequent tasks are given a clean working tree copy of the |
| 662 | kernel with the correct branches checked out. |
| 663 | |
| 664 | .. _ref-tasks-kernel_configcheck: |
| 665 | |
| 666 | ``do_kernel_configcheck`` |
| 667 | ------------------------- |
| 668 | |
| 669 | Validates the configuration produced by the |
| 670 | :ref:`ref-tasks-kernel_menuconfig` task. The |
| 671 | ``do_kernel_configcheck`` task produces warnings when a requested |
| 672 | configuration does not appear in the final ``.config`` file or when you |
| 673 | override a policy configuration in a hardware configuration fragment. |
| 674 | You can run this task explicitly and view the output by using the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 675 | following command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 676 | |
| 677 | $ bitbake linux-yocto -c kernel_configcheck -f |
| 678 | |
| 679 | For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 680 | ":ref:`kernel-dev/common:validating configuration`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 681 | section in the Yocto Project Linux Kernel Development Manual. |
| 682 | |
| 683 | .. _ref-tasks-kernel_configme: |
| 684 | |
| 685 | ``do_kernel_configme`` |
| 686 | ---------------------- |
| 687 | |
| 688 | After the kernel is patched by the :ref:`ref-tasks-patch` |
| 689 | task, the ``do_kernel_configme`` task assembles and merges all the |
| 690 | kernel config fragments into a merged configuration that can then be |
| 691 | passed to the kernel configuration phase proper. This is also the time |
| 692 | during which user-specified defconfigs are applied if present, and where |
| 693 | configuration modes such as ``--allnoconfig`` are applied. |
| 694 | |
| 695 | .. _ref-tasks-kernel_menuconfig: |
| 696 | |
| 697 | ``do_kernel_menuconfig`` |
| 698 | ------------------------ |
| 699 | |
| 700 | Invoked by the user to manipulate the ``.config`` file used to build a |
| 701 | linux-yocto recipe. This task starts the Linux kernel configuration |
| 702 | tool, which you then use to modify the kernel configuration. |
| 703 | |
| 704 | .. note:: |
| 705 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 706 | You can also invoke this tool from the command line as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 707 | |
| 708 | $ bitbake linux-yocto -c menuconfig |
| 709 | |
| 710 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 711 | See the ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 712 | section in the Yocto Project Linux Kernel Development Manual for more |
| 713 | information on this configuration tool. |
| 714 | |
| 715 | .. _ref-tasks-kernel_metadata: |
| 716 | |
| 717 | ``do_kernel_metadata`` |
| 718 | ---------------------- |
| 719 | |
| 720 | Collects all the features required for a given kernel build, whether the |
| 721 | features come from :term:`SRC_URI` or from Git |
| 722 | repositories. After collection, the ``do_kernel_metadata`` task |
| 723 | processes the features into a series of config fragments and patches, |
| 724 | which can then be applied by subsequent tasks such as |
| 725 | :ref:`ref-tasks-patch` and |
| 726 | :ref:`ref-tasks-kernel_configme`. |
| 727 | |
| 728 | .. _ref-tasks-menuconfig: |
| 729 | |
| 730 | ``do_menuconfig`` |
| 731 | ----------------- |
| 732 | |
| 733 | Runs ``make menuconfig`` for the kernel. For information on |
| 734 | ``menuconfig``, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 735 | ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 736 | section in the Yocto Project Linux Kernel Development Manual. |
| 737 | |
| 738 | .. _ref-tasks-savedefconfig: |
| 739 | |
| 740 | ``do_savedefconfig`` |
| 741 | -------------------- |
| 742 | |
| 743 | When invoked by the user, creates a defconfig file that can be used |
| 744 | instead of the default defconfig. The saved defconfig contains the |
| 745 | differences between the default defconfig and the changes made by the |
| 746 | user using other methods (i.e. the |
| 747 | :ref:`ref-tasks-kernel_menuconfig` task. You |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 748 | can invoke the task using the following command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 749 | |
| 750 | $ bitbake linux-yocto -c savedefconfig |
| 751 | |
| 752 | .. _ref-tasks-shared_workdir: |
| 753 | |
| 754 | ``do_shared_workdir`` |
| 755 | --------------------- |
| 756 | |
| 757 | After the kernel has been compiled but before the kernel modules have |
| 758 | been compiled, this task copies files required for module builds and |
| 759 | which are generated from the kernel build into the shared work |
| 760 | directory. With these copies successfully copied, the |
| 761 | :ref:`ref-tasks-compile_kernelmodules` task |
| 762 | can successfully build the kernel modules in the next step of the build. |
| 763 | |
| 764 | .. _ref-tasks-sizecheck: |
| 765 | |
| 766 | ``do_sizecheck`` |
| 767 | ---------------- |
| 768 | |
| 769 | After the kernel has been built, this task checks the size of the |
| 770 | stripped kernel image against |
| 771 | :term:`KERNEL_IMAGE_MAXSIZE`. If that |
| 772 | variable was set and the size of the stripped kernel exceeds that size, |
| 773 | the kernel build produces a warning to that effect. |
| 774 | |
| 775 | .. _ref-tasks-strip: |
| 776 | |
| 777 | ``do_strip`` |
| 778 | ------------ |
| 779 | |
| 780 | If ``KERNEL_IMAGE_STRIP_EXTRA_SECTIONS`` is defined, this task strips |
| 781 | the sections named in that variable from ``vmlinux``. This stripping is |
| 782 | typically used to remove nonessential sections such as ``.comment`` |
| 783 | sections from a size-sensitive configuration. |
| 784 | |
| 785 | .. _ref-tasks-validate_branches: |
| 786 | |
| 787 | ``do_validate_branches`` |
| 788 | ------------------------ |
| 789 | |
| 790 | After the kernel is unpacked but before it is patched, this task makes |
| 791 | sure that the machine and metadata branches as specified by the |
| 792 | :term:`SRCREV` variables actually exist on the specified |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 793 | branches. Otherwise, if :term:`AUTOREV` is not being used, the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 794 | ``do_validate_branches`` task fails during the build. |