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 |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 17 | ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:tasks`" and |
| 18 | ":ref:`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. |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 39 | If no such file is found, the :ref:`ref-tasks-compile` task does nothing. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 61 | :ref:`ref-tasks-configure` task does nothing. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 81 | :ref:`ref-classes-deploy` class and should write the output |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 82 | to ``${``\ :term:`DEPLOYDIR`\ ``}``, which is not to be |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 83 | confused with ``${DEPLOY_DIR}``. The :ref:`ref-classes-deploy` class sets up |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 84 | :ref:`ref-tasks-deploy` as a shared state (sstate) task that can be accelerated |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 93 | The :ref:`ref-tasks-deploy` task is not added as a task by default and |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 100 | Adding :ref:`ref-tasks-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 | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 105 | (though it is harmless), because the :ref:`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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 113 | If the :ref:`ref-tasks-deploy` task re-executes, any previous output is removed |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 114 | (i.e. "cleaned"). |
| 115 | |
| 116 | .. _ref-tasks-fetch: |
| 117 | |
| 118 | ``do_fetch`` |
| 119 | ------------ |
| 120 | |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 121 | Fetches the source code. This task uses the :term:`SRC_URI` variable and the |
| 122 | argument's prefix to determine the correct |
| 123 | :ref:`fetcher <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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 131 | Starts the image generation process. The :ref:`ref-tasks-image` task runs after |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 137 | The :ref:`ref-tasks-image` task performs pre-processing on the image through the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 138 | :term:`IMAGE_PREPROCESS_COMMAND` and |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 139 | dynamically generates supporting :ref:`do_image_* <ref-tasks-image>` tasks as needed. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 149 | Completes the image generation process. The :ref:`do_image_complete <ref-tasks-image-complete>` task |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 150 | runs after the OpenEmbedded build system has run the |
| 151 | :ref:`ref-tasks-image` task during which image |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 152 | pre-processing occurs and through dynamically generated :ref:`do_image_* <ref-tasks-image>` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 153 | tasks the image is constructed. |
| 154 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 155 | The :ref:`do_image_complete <ref-tasks-image-complete>` task performs post-processing on the image |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 171 | compilation directory. The :ref:`ref-tasks-install` task, as well as other tasks |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 172 | that either directly or indirectly depend on the installed files (e.g. |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 173 | :ref:`ref-tasks-package`, :ref:`do_package_write_* <ref-tasks-package_write_deb>`, and |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 |
Patrick Williams | 975a06f | 2022-10-21 14:42:47 -0500 | [diff] [blame] | 193 | ``bin_package.bbclass`` file in the ``meta/classes-recipe`` |
| 194 | subdirectory of the :term:`Source Directory` for an example. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 215 | The :ref:`ref-tasks-package` task, in conjunction with the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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, |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 228 | see the :ref:`ref-classes-insane` class. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 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 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 263 | .. _ref-tasks-packagedata: |
| 264 | |
| 265 | ``do_packagedata`` |
| 266 | ------------------ |
| 267 | |
| 268 | Saves package metadata generated by the |
| 269 | :ref:`ref-tasks-package` task in |
| 270 | :term:`PKGDATA_DIR` to make it available globally. |
| 271 | |
| 272 | .. _ref-tasks-patch: |
| 273 | |
| 274 | ``do_patch`` |
| 275 | ------------ |
| 276 | |
| 277 | Locates patch files and applies them to the source code. |
| 278 | |
| 279 | After fetching and unpacking source files, the build system uses the |
| 280 | recipe's :term:`SRC_URI` statements |
| 281 | to locate and apply patch files to the source code. |
| 282 | |
| 283 | .. note:: |
| 284 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 285 | The build system uses the :term:`FILESPATH` variable to determine the |
| 286 | default set of directories when searching for patches. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 287 | |
| 288 | Patch files, by default, are ``*.patch`` and ``*.diff`` files created |
| 289 | and kept in a subdirectory of the directory holding the recipe file. For |
| 290 | example, consider the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 291 | :yocto_git:`bluez5 </poky/tree/meta/recipes-connectivity/bluez5>` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 292 | recipe from the OE-Core layer (i.e. ``poky/meta``):: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 293 | |
| 294 | poky/meta/recipes-connectivity/bluez5 |
| 295 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 296 | This recipe has two patch files located here:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 297 | |
| 298 | poky/meta/recipes-connectivity/bluez5/bluez5 |
| 299 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 300 | 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] | 301 | and patch files needed to build the package. |
| 302 | |
| 303 | .. note:: |
| 304 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 305 | 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] | 306 | are from an include file ``bluez5.inc``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 307 | |
| 308 | As mentioned earlier, the build system treats files whose file types are |
| 309 | ``.patch`` and ``.diff`` as patch files. However, you can use the |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 310 | "apply=yes" parameter with the :term:`SRC_URI` statement to indicate any |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 311 | file as a patch file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 312 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 313 | SRC_URI = " \ |
| 314 | git://path_to_repo/some_package \ |
| 315 | file://file;apply=yes \ |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 316 | " |
| 317 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 318 | Conversely, if you have a file whose file type is ``.patch`` or ``.diff`` |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 319 | and you want to exclude it so that the :ref:`ref-tasks-patch` task does not apply |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 320 | 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] | 321 | :term:`SRC_URI` statement:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 322 | |
| 323 | SRC_URI = " \ |
| 324 | git://path_to_repo/some_package \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 325 | file://file1.patch \ |
| 326 | file://file2.patch;apply=no \ |
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 | In the previous example ``file1.patch`` would be applied as a patch by default |
| 330 | while ``file2.patch`` would not be applied. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 331 | |
| 332 | You can find out more about the patching process in the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 333 | ":ref:`overview-manual/concepts:patching`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 334 | the Yocto Project Overview and Concepts Manual and the |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 335 | ":ref:`dev-manual/new-recipe:patching code`" section in the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 336 | Yocto Project Development Tasks Manual. |
| 337 | |
| 338 | .. _ref-tasks-populate_lic: |
| 339 | |
| 340 | ``do_populate_lic`` |
| 341 | ------------------- |
| 342 | |
| 343 | Writes license information for the recipe that is collected later when |
| 344 | the image is constructed. |
| 345 | |
| 346 | .. _ref-tasks-populate_sdk: |
| 347 | |
| 348 | ``do_populate_sdk`` |
| 349 | ------------------- |
| 350 | |
| 351 | Creates the file and directory structure for an installable SDK. See the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 352 | ":ref:`overview-manual/concepts:sdk generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 353 | section in the Yocto Project Overview and Concepts Manual for more |
| 354 | information. |
| 355 | |
| 356 | .. _ref-tasks-populate_sdk_ext: |
| 357 | |
| 358 | ``do_populate_sdk_ext`` |
| 359 | ----------------------- |
| 360 | |
| 361 | Creates the file and directory structure for an installable extensible |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 362 | SDK (eSDK). See the ":ref:`overview-manual/concepts:sdk generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 363 | section in the Yocto Project Overview and Concepts Manual for more |
| 364 | information. |
| 365 | |
| 366 | |
| 367 | .. _ref-tasks-populate_sysroot: |
| 368 | |
| 369 | ``do_populate_sysroot`` |
| 370 | ----------------------- |
| 371 | |
| 372 | Stages (copies) a subset of the files installed by the |
| 373 | :ref:`ref-tasks-install` task into the appropriate |
| 374 | sysroot. For information on how to access these files from other |
| 375 | recipes, see the :term:`STAGING_DIR* <STAGING_DIR_HOST>` variables. |
| 376 | Directories that would typically not be needed by other recipes at build |
| 377 | time (e.g. ``/etc``) are not copied by default. |
| 378 | |
| 379 | For information on what directories are copied by default, see the |
| 380 | :term:`SYSROOT_DIRS* <SYSROOT_DIRS>` variables. You can change |
| 381 | these variables inside your recipe if you need to make additional (or |
| 382 | fewer) directories available to other recipes at build time. |
| 383 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 384 | The :ref:`ref-tasks-populate_sysroot` task is a shared state (sstate) task, which |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 385 | means that the task can be accelerated through sstate use. Realize also |
| 386 | that if the task is re-executed, any previous output is removed (i.e. |
| 387 | "cleaned"). |
| 388 | |
| 389 | .. _ref-tasks-prepare_recipe_sysroot: |
| 390 | |
| 391 | ``do_prepare_recipe_sysroot`` |
| 392 | ----------------------------- |
| 393 | |
| 394 | Installs the files into the individual recipe specific sysroots (i.e. |
| 395 | ``recipe-sysroot`` and ``recipe-sysroot-native`` under |
| 396 | ``${``\ :term:`WORKDIR`\ ``}`` based upon the |
| 397 | dependencies specified by :term:`DEPENDS`). See the |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 398 | ":ref:`ref-classes-staging`" class for more information. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 399 | |
| 400 | .. _ref-tasks-rm_work: |
| 401 | |
| 402 | ``do_rm_work`` |
| 403 | -------------- |
| 404 | |
| 405 | Removes work files after the OpenEmbedded build system has finished with |
| 406 | them. You can learn more by looking at the |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 407 | ":ref:`ref-classes-rm-work`" section. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 408 | |
| 409 | .. _ref-tasks-unpack: |
| 410 | |
| 411 | ``do_unpack`` |
| 412 | ------------- |
| 413 | |
| 414 | Unpacks the source code into a working directory pointed to by |
| 415 | ``${``\ :term:`WORKDIR`\ ``}``. The :term:`S` |
| 416 | variable also plays a role in where unpacked source files ultimately |
| 417 | reside. For more information on how source files are unpacked, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 418 | ":ref:`overview-manual/concepts:source fetching`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 419 | section in the Yocto Project Overview and Concepts Manual and also see |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 420 | the :term:`WORKDIR` and :term:`S` variable descriptions. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 421 | |
| 422 | Manually Called Tasks |
| 423 | ===================== |
| 424 | |
| 425 | These tasks are typically manually triggered (e.g. by using the |
| 426 | ``bitbake -c`` command-line option): |
| 427 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 428 | ``do_checkuri`` |
| 429 | --------------- |
| 430 | |
| 431 | Validates the :term:`SRC_URI` value. |
| 432 | |
| 433 | .. _ref-tasks-clean: |
| 434 | |
| 435 | ``do_clean`` |
| 436 | ------------ |
| 437 | |
| 438 | Removes all output files for a target from the |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 439 | :ref:`ref-tasks-unpack` task forward (i.e. :ref:`ref-tasks-unpack`, |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 440 | :ref:`ref-tasks-configure`, |
| 441 | :ref:`ref-tasks-compile`, |
| 442 | :ref:`ref-tasks-install`, and |
| 443 | :ref:`ref-tasks-package`). |
| 444 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 445 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 446 | |
| 447 | $ bitbake -c clean recipe |
| 448 | |
| 449 | Running this task does not remove the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 450 | :ref:`sstate <overview-manual/concepts:shared state cache>` cache files. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 451 | Consequently, if no changes have been made and the recipe is rebuilt |
| 452 | after cleaning, output files are simply restored from the sstate cache. |
| 453 | If you want to remove the sstate cache files for the recipe, you need to |
| 454 | use the :ref:`ref-tasks-cleansstate` task instead |
| 455 | (i.e. ``bitbake -c cleansstate`` recipe). |
| 456 | |
| 457 | .. _ref-tasks-cleanall: |
| 458 | |
| 459 | ``do_cleanall`` |
| 460 | --------------- |
| 461 | |
| 462 | Removes all output files, shared state |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 463 | (:ref:`sstate <overview-manual/concepts:shared state cache>`) cache, and |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 464 | downloaded source files for a target (i.e. the contents of |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 465 | :term:`DL_DIR`). Essentially, the :ref:`ref-tasks-cleanall` task is |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 466 | identical to the :ref:`ref-tasks-cleansstate` task |
| 467 | with the added removal of downloaded source files. |
| 468 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 469 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 470 | |
| 471 | $ bitbake -c cleanall recipe |
| 472 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 473 | Typically, you would not normally use the :ref:`ref-tasks-cleanall` task. Do so only |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 474 | if you want to start fresh with the :ref:`ref-tasks-fetch` |
| 475 | task. |
| 476 | |
| 477 | .. _ref-tasks-cleansstate: |
| 478 | |
| 479 | ``do_cleansstate`` |
| 480 | ------------------ |
| 481 | |
| 482 | Removes all output files and shared state |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 483 | (:ref:`sstate <overview-manual/concepts:shared state cache>`) cache for a |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 484 | target. Essentially, the :ref:`ref-tasks-cleansstate` task is identical to the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 485 | :ref:`ref-tasks-clean` task with the added removal of |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 486 | shared state (:ref:`sstate <overview-manual/concepts:shared state cache>`) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 487 | cache. |
| 488 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 489 | You can run this task using BitBake as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 490 | |
| 491 | $ bitbake -c cleansstate recipe |
| 492 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 493 | When you run the :ref:`ref-tasks-cleansstate` task, the OpenEmbedded build system |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 494 | no longer uses any sstate. Consequently, building the recipe from |
| 495 | scratch is guaranteed. |
| 496 | |
| 497 | .. note:: |
| 498 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 499 | The :ref:`ref-tasks-cleansstate` task cannot remove sstate from a remote sstate |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 500 | 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] | 501 | the "-f" option as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 502 | |
| 503 | $ bitbake -f -c do_cleansstate target |
| 504 | |
| 505 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 506 | .. _ref-tasks-pydevshell: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 507 | |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 508 | ``do_pydevshell`` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 509 | ----------------- |
| 510 | |
| 511 | Starts a shell in which an interactive Python interpreter allows you to |
| 512 | interact with the BitBake build environment. From within this shell, you |
| 513 | can directly examine and set bits from the data store and execute |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 514 | functions as if within the BitBake environment. See the ":ref:`dev-manual/python-development-shell:using a Python development shell`" section in |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 515 | the Yocto Project Development Tasks Manual for more information about |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 516 | using ``pydevshell``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 517 | |
| 518 | .. _ref-tasks-devshell: |
| 519 | |
| 520 | ``do_devshell`` |
| 521 | --------------- |
| 522 | |
| 523 | Starts a shell whose environment is set up for development, debugging, |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 524 | or both. See the ":ref:`dev-manual/development-shell:using a development shell`" section in the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 525 | Yocto Project Development Tasks Manual for more information about using |
| 526 | ``devshell``. |
| 527 | |
| 528 | .. _ref-tasks-listtasks: |
| 529 | |
| 530 | ``do_listtasks`` |
| 531 | ---------------- |
| 532 | |
| 533 | Lists all defined tasks for a target. |
| 534 | |
| 535 | .. _ref-tasks-package_index: |
| 536 | |
| 537 | ``do_package_index`` |
| 538 | -------------------- |
| 539 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 540 | 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] | 541 | |
| 542 | .. note:: |
| 543 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 544 | This task is not triggered with the ``bitbake -c`` command-line option as |
| 545 | are the other tasks in this section. Because this task is specifically for |
| 546 | the ``package-index`` recipe, you run it using ``bitbake package-index``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 547 | |
| 548 | Image-Related Tasks |
| 549 | =================== |
| 550 | |
| 551 | The following tasks are applicable to image recipes. |
| 552 | |
| 553 | .. _ref-tasks-bootimg: |
| 554 | |
| 555 | ``do_bootimg`` |
| 556 | -------------- |
| 557 | |
| 558 | Creates a bootable live image. See the |
| 559 | :term:`IMAGE_FSTYPES` variable for additional |
| 560 | information on live image types. |
| 561 | |
| 562 | .. _ref-tasks-bundle_initramfs: |
| 563 | |
| 564 | ``do_bundle_initramfs`` |
| 565 | ----------------------- |
| 566 | |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 567 | Combines an :term:`Initramfs` image and kernel together to |
| 568 | form a single image. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 569 | |
| 570 | .. _ref-tasks-rootfs: |
| 571 | |
| 572 | ``do_rootfs`` |
| 573 | ------------- |
| 574 | |
| 575 | Creates the root filesystem (file and directory structure) for an image. |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 576 | See the ":ref:`overview-manual/concepts:image generation`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 577 | section in the Yocto Project Overview and Concepts Manual for more |
| 578 | information on how the root filesystem is created. |
| 579 | |
| 580 | .. _ref-tasks-testimage: |
| 581 | |
| 582 | ``do_testimage`` |
| 583 | ---------------- |
| 584 | |
| 585 | Boots an image and performs runtime tests within the image. For |
| 586 | information on automatically testing images, see the |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 587 | ":ref:`dev-manual/runtime-testing:performing automated runtime testing`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 588 | section in the Yocto Project Development Tasks Manual. |
| 589 | |
| 590 | .. _ref-tasks-testimage_auto: |
| 591 | |
| 592 | ``do_testimage_auto`` |
| 593 | --------------------- |
| 594 | |
| 595 | Boots an image and performs runtime tests within the image immediately |
| 596 | after it has been built. This task is enabled when you set |
| 597 | :term:`TESTIMAGE_AUTO` equal to "1". |
| 598 | |
| 599 | For information on automatically testing images, see the |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 600 | ":ref:`dev-manual/runtime-testing: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 | Kernel-Related Tasks |
| 604 | ==================== |
| 605 | |
| 606 | The following tasks are applicable to kernel recipes. Some of these |
| 607 | tasks (e.g. the :ref:`ref-tasks-menuconfig` task) are |
| 608 | also applicable to recipes that use Linux kernel style configuration |
| 609 | such as the BusyBox recipe. |
| 610 | |
| 611 | .. _ref-tasks-compile_kernelmodules: |
| 612 | |
| 613 | ``do_compile_kernelmodules`` |
| 614 | ---------------------------- |
| 615 | |
| 616 | Runs the step that builds the kernel modules (if needed). Building a |
| 617 | kernel consists of two steps: 1) the kernel (``vmlinux``) is built, and |
| 618 | 2) the modules are built (i.e. ``make modules``). |
| 619 | |
| 620 | .. _ref-tasks-diffconfig: |
| 621 | |
| 622 | ``do_diffconfig`` |
| 623 | ----------------- |
| 624 | |
| 625 | When invoked by the user, this task creates a file containing the |
| 626 | differences between the original config as produced by |
| 627 | :ref:`ref-tasks-kernel_configme` task and the |
| 628 | changes made by the user with other methods (i.e. using |
| 629 | (:ref:`ref-tasks-kernel_menuconfig`). Once the |
| 630 | file of differences is created, it can be used to create a config |
| 631 | fragment that only contains the differences. You can invoke this task |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 632 | from the command line as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 633 | |
| 634 | $ bitbake linux-yocto -c diffconfig |
| 635 | |
| 636 | For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 637 | ":ref:`kernel-dev/common:creating configuration fragments`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 638 | section in the Yocto Project Linux Kernel Development Manual. |
| 639 | |
| 640 | .. _ref-tasks-kernel_checkout: |
| 641 | |
| 642 | ``do_kernel_checkout`` |
| 643 | ---------------------- |
| 644 | |
| 645 | Converts the newly unpacked kernel source into a form with which the |
| 646 | OpenEmbedded build system can work. Because the kernel source can be |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 647 | fetched in several different ways, the :ref:`ref-tasks-kernel_checkout` task makes |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 648 | sure that subsequent tasks are given a clean working tree copy of the |
| 649 | kernel with the correct branches checked out. |
| 650 | |
| 651 | .. _ref-tasks-kernel_configcheck: |
| 652 | |
| 653 | ``do_kernel_configcheck`` |
| 654 | ------------------------- |
| 655 | |
| 656 | Validates the configuration produced by the |
| 657 | :ref:`ref-tasks-kernel_menuconfig` task. The |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 658 | :ref:`ref-tasks-kernel_configcheck` task produces warnings when a requested |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 659 | configuration does not appear in the final ``.config`` file or when you |
| 660 | override a policy configuration in a hardware configuration fragment. |
| 661 | 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] | 662 | following command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 663 | |
| 664 | $ bitbake linux-yocto -c kernel_configcheck -f |
| 665 | |
| 666 | For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 667 | ":ref:`kernel-dev/common:validating configuration`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 668 | section in the Yocto Project Linux Kernel Development Manual. |
| 669 | |
| 670 | .. _ref-tasks-kernel_configme: |
| 671 | |
| 672 | ``do_kernel_configme`` |
| 673 | ---------------------- |
| 674 | |
| 675 | After the kernel is patched by the :ref:`ref-tasks-patch` |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 676 | task, the :ref:`ref-tasks-kernel_configme` task assembles and merges all the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 677 | kernel config fragments into a merged configuration that can then be |
| 678 | passed to the kernel configuration phase proper. This is also the time |
| 679 | during which user-specified defconfigs are applied if present, and where |
| 680 | configuration modes such as ``--allnoconfig`` are applied. |
| 681 | |
| 682 | .. _ref-tasks-kernel_menuconfig: |
| 683 | |
| 684 | ``do_kernel_menuconfig`` |
| 685 | ------------------------ |
| 686 | |
| 687 | Invoked by the user to manipulate the ``.config`` file used to build a |
| 688 | linux-yocto recipe. This task starts the Linux kernel configuration |
| 689 | tool, which you then use to modify the kernel configuration. |
| 690 | |
| 691 | .. note:: |
| 692 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 693 | You can also invoke this tool from the command line as follows:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 694 | |
| 695 | $ bitbake linux-yocto -c menuconfig |
| 696 | |
| 697 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 698 | See the ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 699 | section in the Yocto Project Linux Kernel Development Manual for more |
| 700 | information on this configuration tool. |
| 701 | |
| 702 | .. _ref-tasks-kernel_metadata: |
| 703 | |
| 704 | ``do_kernel_metadata`` |
| 705 | ---------------------- |
| 706 | |
| 707 | Collects all the features required for a given kernel build, whether the |
| 708 | features come from :term:`SRC_URI` or from Git |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 709 | repositories. After collection, the :ref:`ref-tasks-kernel_metadata` task |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 710 | processes the features into a series of config fragments and patches, |
| 711 | which can then be applied by subsequent tasks such as |
| 712 | :ref:`ref-tasks-patch` and |
| 713 | :ref:`ref-tasks-kernel_configme`. |
| 714 | |
| 715 | .. _ref-tasks-menuconfig: |
| 716 | |
| 717 | ``do_menuconfig`` |
| 718 | ----------------- |
| 719 | |
| 720 | Runs ``make menuconfig`` for the kernel. For information on |
| 721 | ``menuconfig``, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 722 | ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 723 | section in the Yocto Project Linux Kernel Development Manual. |
| 724 | |
| 725 | .. _ref-tasks-savedefconfig: |
| 726 | |
| 727 | ``do_savedefconfig`` |
| 728 | -------------------- |
| 729 | |
| 730 | When invoked by the user, creates a defconfig file that can be used |
| 731 | instead of the default defconfig. The saved defconfig contains the |
| 732 | differences between the default defconfig and the changes made by the |
| 733 | user using other methods (i.e. the |
| 734 | :ref:`ref-tasks-kernel_menuconfig` task. You |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 735 | can invoke the task using the following command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 736 | |
| 737 | $ bitbake linux-yocto -c savedefconfig |
| 738 | |
| 739 | .. _ref-tasks-shared_workdir: |
| 740 | |
| 741 | ``do_shared_workdir`` |
| 742 | --------------------- |
| 743 | |
| 744 | After the kernel has been compiled but before the kernel modules have |
| 745 | been compiled, this task copies files required for module builds and |
| 746 | which are generated from the kernel build into the shared work |
| 747 | directory. With these copies successfully copied, the |
| 748 | :ref:`ref-tasks-compile_kernelmodules` task |
| 749 | can successfully build the kernel modules in the next step of the build. |
| 750 | |
| 751 | .. _ref-tasks-sizecheck: |
| 752 | |
| 753 | ``do_sizecheck`` |
| 754 | ---------------- |
| 755 | |
| 756 | After the kernel has been built, this task checks the size of the |
| 757 | stripped kernel image against |
| 758 | :term:`KERNEL_IMAGE_MAXSIZE`. If that |
| 759 | variable was set and the size of the stripped kernel exceeds that size, |
| 760 | the kernel build produces a warning to that effect. |
| 761 | |
| 762 | .. _ref-tasks-strip: |
| 763 | |
| 764 | ``do_strip`` |
| 765 | ------------ |
| 766 | |
| 767 | If ``KERNEL_IMAGE_STRIP_EXTRA_SECTIONS`` is defined, this task strips |
| 768 | the sections named in that variable from ``vmlinux``. This stripping is |
| 769 | typically used to remove nonessential sections such as ``.comment`` |
| 770 | sections from a size-sensitive configuration. |
| 771 | |
| 772 | .. _ref-tasks-validate_branches: |
| 773 | |
| 774 | ``do_validate_branches`` |
| 775 | ------------------------ |
| 776 | |
| 777 | After the kernel is unpacked but before it is patched, this task makes |
| 778 | sure that the machine and metadata branches as specified by the |
| 779 | :term:`SRCREV` variables actually exist on the specified |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 780 | branches. Otherwise, if :term:`AUTOREV` is not being used, the |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 781 | :ref:`ref-tasks-validate_branches` task fails during the build. |