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 | ``devtool`` Quick Reference |
| 5 | *************************** |
| 6 | |
| 7 | The ``devtool`` command-line tool provides a number of features that |
| 8 | help you build, test, and package software. This command is available |
| 9 | alongside the ``bitbake`` command. Additionally, the ``devtool`` command |
| 10 | is a key part of the extensible SDK. |
| 11 | |
| 12 | This chapter provides a Quick Reference for the ``devtool`` command. For |
| 13 | more information on how to apply the command when using the extensible |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 14 | SDK, see the ":doc:`/sdk-manual/extensible`" chapter in the Yocto |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 15 | Project Application Development and the Extensible Software Development |
| 16 | Kit (eSDK) manual. |
| 17 | |
| 18 | .. _devtool-getting-help: |
| 19 | |
| 20 | Getting Help |
| 21 | ============ |
| 22 | |
| 23 | The ``devtool`` command line is organized similarly to Git in that it |
| 24 | has a number of sub-commands for each function. You can run |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 25 | ``devtool --help`` to see all the commands:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 26 | |
| 27 | $ devtool -h |
| 28 | NOTE: Starting bitbake server... |
| 29 | usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q] [--color COLOR] [-h] <subcommand> ... |
| 30 | |
| 31 | OpenEmbedded development tool |
| 32 | |
| 33 | options: |
| 34 | --basepath BASEPATH Base directory of SDK / build directory |
| 35 | --bbpath BBPATH Explicitly specify the BBPATH, rather than getting it from the metadata |
| 36 | -d, --debug Enable debug output |
| 37 | -q, --quiet Print only errors |
| 38 | --color COLOR Colorize output (where COLOR is auto, always, never) |
| 39 | -h, --help show this help message and exit |
| 40 | |
| 41 | subcommands: |
| 42 | Beginning work on a recipe: |
| 43 | add Add a new recipe |
| 44 | modify Modify the source for an existing recipe |
| 45 | upgrade Upgrade an existing recipe |
| 46 | Getting information: |
| 47 | status Show workspace status |
| 48 | latest-version Report the latest version of an existing recipe |
| 49 | check-upgrade-status Report upgradability for multiple (or all) recipes |
| 50 | search Search available recipes |
| 51 | Working on a recipe in the workspace: |
| 52 | build Build a recipe |
| 53 | rename Rename a recipe file in the workspace |
| 54 | edit-recipe Edit a recipe file |
| 55 | find-recipe Find a recipe file |
| 56 | configure-help Get help on configure script options |
| 57 | update-recipe Apply changes from external source tree to recipe |
| 58 | reset Remove a recipe from your workspace |
| 59 | finish Finish working on a recipe in your workspace |
| 60 | Testing changes on target: |
| 61 | deploy-target Deploy recipe output files to live target machine |
| 62 | undeploy-target Undeploy recipe output files in live target machine |
| 63 | build-image Build image including workspace recipe packages |
| 64 | Advanced: |
| 65 | create-workspace Set up workspace in an alternative location |
| 66 | extract Extract the source for an existing recipe |
| 67 | sync Synchronize the source tree for an existing recipe |
| 68 | menuconfig Alter build-time configuration for a recipe |
| 69 | import Import exported tar archive into workspace |
| 70 | export Export workspace into a tar archive |
| 71 | other: |
| 72 | selftest-reverse Reverse value (for selftest) |
| 73 | pluginfile Print the filename of this plugin |
| 74 | bbdir Print the BBPATH directory of this plugin |
| 75 | count How many times have this plugin been registered. |
| 76 | multiloaded How many times have this plugin been initialized |
| 77 | Use devtool <subcommand> --help to get help on a specific command |
| 78 | |
| 79 | As directed in the general help output, you can |
| 80 | get more syntax on a specific command by providing the command name and |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 81 | using ``--help``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 82 | |
| 83 | $ devtool add --help |
| 84 | NOTE: Starting bitbake server... |
| 85 | usage: devtool add [-h] [--same-dir | --no-same-dir] [--fetch URI] [--npm-dev] [--version VERSION] [--no-git] [--srcrev SRCREV | --autorev] [--srcbranch SRCBRANCH] [--binary] [--also-native] [--src-subdir SUBDIR] [--mirrors] |
| 86 | [--provides PROVIDES] |
| 87 | [recipename] [srctree] [fetchuri] |
| 88 | |
| 89 | Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote URI and unpack it to create the source tree. |
| 90 | |
| 91 | arguments: |
| 92 | recipename Name for new recipe to add (just name - no version, path or extension). If not specified, will attempt to auto-detect it. |
| 93 | srctree Path to external source tree. If not specified, a subdirectory of /media/build1/poky/build/workspace/sources will be used. |
| 94 | fetchuri Fetch the specified URI and extract it to create the source tree |
| 95 | |
| 96 | options: |
| 97 | -h, --help show this help message and exit |
| 98 | --same-dir, -s Build in same directory as source |
| 99 | --no-same-dir Force build in a separate build directory |
| 100 | --fetch URI, -f URI Fetch the specified URI and extract it to create the source tree (deprecated - pass as positional argument instead) |
| 101 | --npm-dev For npm, also fetch devDependencies |
| 102 | --version VERSION, -V VERSION |
| 103 | Version to use within recipe (PV) |
| 104 | --no-git, -g If fetching source, do not set up source tree as a git repository |
| 105 | --srcrev SRCREV, -S SRCREV |
| 106 | Source revision to fetch if fetching from an SCM such as git (default latest) |
| 107 | --autorev, -a When fetching from a git repository, set SRCREV in the recipe to a floating revision instead of fixed |
| 108 | --srcbranch SRCBRANCH, -B SRCBRANCH |
| 109 | Branch in source repository if fetching from an SCM such as git (default master) |
| 110 | --binary, -b Treat the source tree as something that should be installed verbatim (no compilation, same directory structure). Useful with binary packages e.g. RPMs. |
| 111 | --also-native Also add native variant (i.e. support building recipe for the build host as well as the target machine) |
| 112 | --src-subdir SUBDIR Specify subdirectory within source tree to use |
| 113 | --mirrors Enable PREMIRRORS and MIRRORS for source tree fetching (disable by default). |
| 114 | --provides PROVIDES, -p PROVIDES |
| 115 | Specify an alias for the item provided by the recipe. E.g. virtual/libgl |
| 116 | |
| 117 | .. _devtool-the-workspace-layer-structure: |
| 118 | |
| 119 | The Workspace Layer Structure |
| 120 | ============================= |
| 121 | |
| 122 | ``devtool`` uses a "Workspace" layer in which to accomplish builds. This |
| 123 | layer is not specific to any single ``devtool`` command but is rather a |
| 124 | common working area used across the tool. |
| 125 | |
| 126 | The following figure shows the workspace structure: |
| 127 | |
| 128 | .. image:: figures/build-workspace-directory.png |
| 129 | :align: center |
| 130 | :scale: 70% |
| 131 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 132 | .. code-block:: none |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 133 | |
| 134 | attic - A directory created if devtool believes it must preserve |
| 135 | anything when you run "devtool reset". For example, if you |
| 136 | run "devtool add", make changes to the recipe, and then |
| 137 | run "devtool reset", devtool takes notice that the file has |
| 138 | been changed and moves it into the attic should you still |
| 139 | want the recipe. |
| 140 | |
| 141 | README - Provides information on what is in workspace layer and how to |
| 142 | manage it. |
| 143 | |
| 144 | .devtool_md5 - A checksum file used by devtool. |
| 145 | |
| 146 | appends - A directory that contains *.bbappend files, which point to |
| 147 | external source. |
| 148 | |
| 149 | conf - A configuration directory that contains the layer.conf file. |
| 150 | |
| 151 | recipes - A directory containing recipes. This directory contains a |
| 152 | folder for each directory added whose name matches that of the |
| 153 | added recipe. devtool places the recipe.bb file |
| 154 | within that sub-directory. |
| 155 | |
| 156 | sources - A directory containing a working copy of the source files used |
| 157 | when building the recipe. This is the default directory used |
| 158 | as the location of the source tree when you do not provide a |
| 159 | source tree path. This directory contains a folder for each |
| 160 | set of source files matched to a corresponding recipe. |
| 161 | |
| 162 | .. _devtool-adding-a-new-recipe-to-the-workspace: |
| 163 | |
| 164 | Adding a New Recipe to the Workspace Layer |
| 165 | ========================================== |
| 166 | |
| 167 | Use the ``devtool add`` command to add a new recipe to the workspace |
| 168 | layer. The recipe you add should not exist - ``devtool`` creates it for |
| 169 | you. The source files the recipe uses should exist in an external area. |
| 170 | |
| 171 | The following example creates and adds a new recipe named ``jackson`` to |
| 172 | a workspace layer the tool creates. The source code built by the recipes |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 173 | resides in ``/home/user/sources/jackson``:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 174 | |
| 175 | $ devtool add jackson /home/user/sources/jackson |
| 176 | |
| 177 | If you add a recipe and the workspace layer does not exist, the command |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 178 | creates the layer and populates it as described in |
| 179 | ":ref:`devtool-the-workspace-layer-structure`" section. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 180 | |
| 181 | Running ``devtool add`` when the workspace layer exists causes the tool |
| 182 | to add the recipe, append files, and source files into the existing |
| 183 | workspace layer. The ``.bbappend`` file is created to point to the |
| 184 | external source tree. |
| 185 | |
| 186 | .. note:: |
| 187 | |
| 188 | If your recipe has runtime dependencies defined, you must be sure |
| 189 | that these packages exist on the target hardware before attempting to |
| 190 | run your application. If dependent packages (e.g. libraries) do not |
| 191 | exist on the target, your application, when run, will fail to find |
| 192 | those functions. For more information, see the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 193 | ":ref:`ref-manual/devtool-reference:deploying your software on the target machine`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 194 | section. |
| 195 | |
| 196 | By default, ``devtool add`` uses the latest revision (i.e. master) when |
| 197 | unpacking files from a remote URI. In some cases, you might want to |
| 198 | specify a source revision by branch, tag, or commit hash. You can |
| 199 | specify these options when using the ``devtool add`` command: |
| 200 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 201 | - To specify a source branch, use the ``--srcbranch`` option:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 202 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 203 | $ devtool add --srcbranch &DISTRO_NAME_NO_CAP; jackson /home/user/sources/jackson |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 204 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 205 | In the previous example, you are checking out the &DISTRO_NAME_NO_CAP; |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 206 | branch. |
| 207 | |
| 208 | - To specify a specific tag or commit hash, use the ``--srcrev`` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 209 | option:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 210 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 211 | $ devtool add --srcrev &DISTRO_REL_TAG; jackson /home/user/sources/jackson |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 212 | $ devtool add --srcrev some_commit_hash /home/user/sources/jackson |
| 213 | |
| 214 | The previous examples check out the |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 215 | &DISTRO_REL_TAG; tag and the commit associated with the |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 216 | some_commit_hash hash. |
| 217 | |
| 218 | .. note:: |
| 219 | |
| 220 | If you prefer to use the latest revision every time the recipe is |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 221 | built, use the options ``--autorev`` or ``-a``. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 222 | |
| 223 | .. _devtool-extracting-the-source-for-an-existing-recipe: |
| 224 | |
| 225 | Extracting the Source for an Existing Recipe |
| 226 | ============================================ |
| 227 | |
| 228 | Use the ``devtool extract`` command to extract the source for an |
| 229 | existing recipe. When you use this command, you must supply the root |
| 230 | name of the recipe (i.e. no version, paths, or extensions), and you must |
| 231 | supply the directory to which you want the source extracted. |
| 232 | |
| 233 | Additional command options let you control the name of a development |
| 234 | branch into which you can checkout the source and whether or not to keep |
| 235 | a temporary directory, which is useful for debugging. |
| 236 | |
| 237 | .. _devtool-synchronizing-a-recipes-extracted-source-tree: |
| 238 | |
| 239 | Synchronizing a Recipe's Extracted Source Tree |
| 240 | ============================================== |
| 241 | |
| 242 | Use the ``devtool sync`` command to synchronize a previously extracted |
| 243 | source tree for an existing recipe. When you use this command, you must |
| 244 | supply the root name of the recipe (i.e. no version, paths, or |
| 245 | extensions), and you must supply the directory to which you want the |
| 246 | source extracted. |
| 247 | |
| 248 | Additional command options let you control the name of a development |
| 249 | branch into which you can checkout the source and whether or not to keep |
| 250 | a temporary directory, which is useful for debugging. |
| 251 | |
| 252 | .. _devtool-modifying-a-recipe: |
| 253 | |
| 254 | Modifying an Existing Recipe |
| 255 | ============================ |
| 256 | |
| 257 | Use the ``devtool modify`` command to begin modifying the source of an |
| 258 | existing recipe. This command is very similar to the |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 259 | :ref:`add <devtool-adding-a-new-recipe-to-the-workspace>` command |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 260 | except that it does not physically create the recipe in the workspace |
| 261 | layer because the recipe already exists in an another layer. |
| 262 | |
| 263 | The ``devtool modify`` command extracts the source for a recipe, sets it |
| 264 | up as a Git repository if the source had not already been fetched from |
| 265 | Git, checks out a branch for development, and applies any patches from |
| 266 | the recipe as commits on top. You can use the following command to |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 267 | checkout the source files:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 268 | |
| 269 | $ devtool modify recipe |
| 270 | |
| 271 | Using the above command form, ``devtool`` uses the existing recipe's |
| 272 | :term:`SRC_URI` statement to locate the upstream source, |
| 273 | extracts the source into the default sources location in the workspace. |
| 274 | The default development branch used is "devtool". |
| 275 | |
| 276 | .. _devtool-edit-an-existing-recipe: |
| 277 | |
| 278 | Edit an Existing Recipe |
| 279 | ======================= |
| 280 | |
| 281 | Use the ``devtool edit-recipe`` command to run the default editor, which |
| 282 | is identified using the ``EDITOR`` variable, on the specified recipe. |
| 283 | |
| 284 | When you use the ``devtool edit-recipe`` command, you must supply the |
| 285 | root name of the recipe (i.e. no version, paths, or extensions). Also, |
| 286 | the recipe file itself must reside in the workspace as a result of the |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 287 | ``devtool add`` or ``devtool upgrade`` commands. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 288 | |
| 289 | .. _devtool-updating-a-recipe: |
| 290 | |
| 291 | Updating a Recipe |
| 292 | ================= |
| 293 | |
| 294 | Use the ``devtool update-recipe`` command to update your recipe with |
| 295 | patches that reflect changes you make to the source files. For example, |
| 296 | if you know you are going to work on some code, you could first use the |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 297 | :ref:`devtool modify <devtool-modifying-a-recipe>` command to extract |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 298 | the code and set up the workspace. After which, you could modify, |
| 299 | compile, and test the code. |
| 300 | |
| 301 | When you are satisfied with the results and you have committed your |
| 302 | changes to the Git repository, you can then run the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 303 | ``devtool update-recipe`` to create the patches and update the recipe:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 304 | |
| 305 | $ devtool update-recipe recipe |
| 306 | |
| 307 | If you run the ``devtool update-recipe`` |
| 308 | without committing your changes, the command ignores the changes. |
| 309 | |
| 310 | Often, you might want to apply customizations made to your software in |
| 311 | your own layer rather than apply them to the original recipe. If so, you |
| 312 | can use the ``-a`` or ``--append`` option with the |
| 313 | ``devtool update-recipe`` command. These options allow you to specify |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 314 | the layer into which to write an append file:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 315 | |
| 316 | $ devtool update-recipe recipe -a base-layer-directory |
| 317 | |
| 318 | The ``*.bbappend`` file is created at the |
| 319 | appropriate path within the specified layer directory, which may or may |
| 320 | not be in your ``bblayers.conf`` file. If an append file already exists, |
| 321 | the command updates it appropriately. |
| 322 | |
| 323 | .. _devtool-checking-on-the-upgrade-status-of-a-recipe: |
| 324 | |
| 325 | Checking on the Upgrade Status of a Recipe |
| 326 | ========================================== |
| 327 | |
| 328 | Upstream recipes change over time. Consequently, you might find that you |
| 329 | need to determine if you can upgrade a recipe to a newer version. |
| 330 | |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 331 | To check on the upgrade status of a recipe, you can use the |
| 332 | ``devtool latest-version recipe`` command, which quickly shows the current |
| 333 | version and the latest version available upstream. To get a more global |
| 334 | picture, use the ``devtool check-upgrade-status`` command, which takes a |
| 335 | list of recipes as input, or no arguments, in which case it checks all |
| 336 | available recipes. This command will only print the recipes for which |
| 337 | a new upstream version is available. Each such recipe will have its current |
| 338 | version and latest upstream version, as well as the email of the maintainer |
| 339 | and any additional information such as the commit hash or reason for not |
| 340 | being able to upgrade it, displayed in a table. |
| 341 | |
| 342 | This upgrade checking mechanism relies on the optional :term:`UPSTREAM_CHECK_URI`, |
| 343 | :term:`UPSTREAM_CHECK_REGEX`, :term:`UPSTREAM_CHECK_GITTAGREGEX`, |
| 344 | :term:`UPSTREAM_CHECK_COMMITS` and :term:`UPSTREAM_VERSION_UNKNOWN` |
| 345 | variables in package recipes. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 346 | |
| 347 | .. note:: |
| 348 | |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 349 | - Most of the time, the above variables are unnecessary. They are only |
| 350 | required when upstream does something unusual, and default |
| 351 | mechanisms cannot find the new upstream versions. |
| 352 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 353 | - For the ``oe-core`` layer, recipe maintainers come from the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 354 | :yocto_git:`maintainers.inc </poky/tree/meta/conf/distro/include/maintainers.inc>` |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 355 | file. |
| 356 | |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 357 | - If the recipe is using the :ref:`bitbake:bitbake-user-manual/bitbake-user-manual-fetching:git fetcher (\`\`git://\`\`)` |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 358 | rather than a tarball, the commit hash points to the commit that matches |
| 359 | the recipe's latest version tag, or in the absence of suitable tags, |
| 360 | to the latest commit (when :term:`UPSTREAM_CHECK_COMMITS` set to ``1`` |
| 361 | in the recipe). |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 362 | |
| 363 | As with all ``devtool`` commands, you can get help on the individual |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 364 | command:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 365 | |
| 366 | $ devtool check-upgrade-status -h |
| 367 | NOTE: Starting bitbake server... |
| 368 | usage: devtool check-upgrade-status [-h] [--all] [recipe [recipe ...]] |
| 369 | |
| 370 | Prints a table of recipes together with versions currently provided by recipes, and latest upstream versions, when there is a later version available |
| 371 | |
| 372 | arguments: |
| 373 | recipe Name of the recipe to report (omit to report upgrade info for all recipes) |
| 374 | |
| 375 | options: |
| 376 | -h, --help show this help message and exit |
| 377 | --all, -a Show all recipes, not just recipes needing upgrade |
| 378 | |
| 379 | Unless you provide a specific recipe name on the command line, the |
| 380 | command checks all recipes in all configured layers. |
| 381 | |
| 382 | Following is a partial example table that reports on all the recipes. |
| 383 | Notice the reported reason for not upgrading the ``base-passwd`` recipe. |
| 384 | In this example, while a new version is available upstream, you do not |
| 385 | want to use it because the dependency on ``cdebconf`` is not easily |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 386 | satisfied. Maintainers can explicit the reason that is shown by adding |
| 387 | the :term:`RECIPE_NO_UPDATE_REASON` variable to the corresponding recipe. |
| 388 | See :yocto_git:`base-passwd.bb </poky/tree/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb>` |
| 389 | for an example. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 390 | |
| 391 | :: |
| 392 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 393 | $ devtool check-upgrade-status |
| 394 | ... |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 395 | INFO: bind 9.16.20 9.16.21 Armin Kuster <akuster808@gmail.com> |
| 396 | INFO: inetutils 2.1 2.2 Tom Rini <trini@konsulko.com> |
| 397 | INFO: iproute2 5.13.0 5.14.0 Changhyeok Bae <changhyeok.bae@gmail.com> |
| 398 | INFO: openssl 1.1.1l 3.0.0 Alexander Kanavin <alex.kanavin@gmail.com> |
| 399 | INFO: base-passwd 3.5.29 3.5.51 Anuj Mittal <anuj.mittal@intel.com> cannot be updated due to: Version 3.5.38 requires cdebconf for update-passwd utility |
| 400 | ... |
| 401 | |
| 402 | Last but not least, you may set :term:`UPSTREAM_VERSION_UNKNOWN` to ``1`` |
| 403 | in a recipe when there's currently no way to determine its latest upstream |
| 404 | version. |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 405 | |
| 406 | .. _devtool-upgrading-a-recipe: |
| 407 | |
| 408 | Upgrading a Recipe |
| 409 | ================== |
| 410 | |
| 411 | As software matures, upstream recipes are upgraded to newer versions. As |
| 412 | a developer, you need to keep your local recipes up-to-date with the |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 413 | upstream version releases. There are several ways of upgrading recipes. |
| 414 | You can read about them in the ":ref:`dev-manual/common-tasks:upgrading recipes`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 415 | section of the Yocto Project Development Tasks Manual. This section |
| 416 | overviews the ``devtool upgrade`` command. |
| 417 | |
| 418 | Before you upgrade a recipe, you can check on its upgrade status. See |
| 419 | the ":ref:`devtool-checking-on-the-upgrade-status-of-a-recipe`" section |
| 420 | for more information. |
| 421 | |
| 422 | The ``devtool upgrade`` command upgrades an existing recipe to a more |
| 423 | recent version of the recipe upstream. The command puts the upgraded |
| 424 | recipe file along with any associated files into a "workspace" and, if |
| 425 | necessary, extracts the source tree to a specified location. During the |
| 426 | upgrade, patches associated with the recipe are rebased or added as |
| 427 | needed. |
| 428 | |
| 429 | When you use the ``devtool upgrade`` command, you must supply the root |
| 430 | name of the recipe (i.e. no version, paths, or extensions), and you must |
| 431 | supply the directory to which you want the source extracted. Additional |
| 432 | command options let you control things such as the version number to |
| 433 | which you want to upgrade (i.e. the :term:`PV`), the source |
| 434 | revision to which you want to upgrade (i.e. the |
| 435 | :term:`SRCREV`), whether or not to apply patches, and so |
| 436 | forth. |
| 437 | |
| 438 | You can read more on the ``devtool upgrade`` workflow in the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 439 | ":ref:`sdk-manual/extensible:use \`\`devtool upgrade\`\` to create a version of the recipe that supports a newer version of the software`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 440 | section in the Yocto Project Application Development and the Extensible |
| 441 | Software Development Kit (eSDK) manual. You can also see an example of |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 442 | how to use ``devtool upgrade`` in the ":ref:`dev-manual/common-tasks:using \`\`devtool upgrade\`\``" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 443 | section in the Yocto Project Development Tasks Manual. |
| 444 | |
| 445 | .. _devtool-resetting-a-recipe: |
| 446 | |
| 447 | Resetting a Recipe |
| 448 | ================== |
| 449 | |
| 450 | Use the ``devtool reset`` command to remove a recipe and its |
| 451 | configuration (e.g. the corresponding ``.bbappend`` file) from the |
| 452 | workspace layer. Realize that this command deletes the recipe and the |
| 453 | append file. The command does not physically move them for you. |
| 454 | Consequently, you must be sure to physically relocate your updated |
| 455 | recipe and the append file outside of the workspace layer before running |
| 456 | the ``devtool reset`` command. |
| 457 | |
| 458 | If the ``devtool reset`` command detects that the recipe or the append |
| 459 | files have been modified, the command preserves the modified files in a |
| 460 | separate "attic" subdirectory under the workspace layer. |
| 461 | |
| 462 | Here is an example that resets the workspace directory that contains the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 463 | ``mtr`` recipe:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 464 | |
| 465 | $ devtool reset mtr |
| 466 | NOTE: Cleaning sysroot for recipe mtr... |
| 467 | NOTE: Leaving source tree /home/scottrif/poky/build/workspace/sources/mtr as-is; if you no longer need it then please delete it manually |
| 468 | $ |
| 469 | |
| 470 | .. _devtool-building-your-recipe: |
| 471 | |
| 472 | Building Your Recipe |
| 473 | ==================== |
| 474 | |
| 475 | Use the ``devtool build`` command to build your recipe. The |
| 476 | ``devtool build`` command is equivalent to the |
| 477 | ``bitbake -c populate_sysroot`` command. |
| 478 | |
| 479 | When you use the ``devtool build`` command, you must supply the root |
| 480 | name of the recipe (i.e. do not provide versions, paths, or extensions). |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 481 | You can use either the ``-s`` or the ``--disable-parallel-make`` options to |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 482 | disable parallel makes during the build. Here is an example:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 483 | |
| 484 | $ devtool build recipe |
| 485 | |
| 486 | .. _devtool-building-your-image: |
| 487 | |
| 488 | Building Your Image |
| 489 | =================== |
| 490 | |
| 491 | Use the ``devtool build-image`` command to build an image, extending it |
| 492 | to include packages from recipes in the workspace. Using this command is |
| 493 | useful when you want an image that ready for immediate deployment onto a |
| 494 | device for testing. For proper integration into a final image, you need |
| 495 | to edit your custom image recipe appropriately. |
| 496 | |
| 497 | When you use the ``devtool build-image`` command, you must supply the |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 498 | name of the image. This command has no command line options:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 499 | |
| 500 | $ devtool build-image image |
| 501 | |
| 502 | .. _devtool-deploying-your-software-on-the-target-machine: |
| 503 | |
| 504 | Deploying Your Software on the Target Machine |
| 505 | ============================================= |
| 506 | |
| 507 | Use the ``devtool deploy-target`` command to deploy the recipe's build |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 508 | output to the live target machine:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 509 | |
| 510 | $ devtool deploy-target recipe target |
| 511 | |
| 512 | The target is the address of the target machine, which must be running |
| 513 | an SSH server (i.e. ``user@hostname[:destdir]``). |
| 514 | |
| 515 | This command deploys all files installed during the |
| 516 | :ref:`ref-tasks-install` task. Furthermore, you do not |
| 517 | need to have package management enabled within the target machine. If |
| 518 | you do, the package manager is bypassed. |
| 519 | |
| 520 | .. note:: |
| 521 | |
| 522 | The ``deploy-target`` functionality is for development only. You |
| 523 | should never use it to update an image that will be used in |
| 524 | production. |
| 525 | |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 526 | Some conditions could prevent a deployed application from |
| 527 | behaving as expected. When both of the following conditions are met, your |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 528 | application has the potential to not behave correctly when run on the |
| 529 | target: |
| 530 | |
| 531 | - You are deploying a new application to the target and the recipe you |
| 532 | used to build the application had correctly defined runtime |
| 533 | dependencies. |
| 534 | |
| 535 | - The target does not physically have the packages on which the |
| 536 | application depends installed. |
| 537 | |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 538 | If both of these conditions are met, your application will not behave as |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 539 | expected. The reason for this misbehavior is because the |
| 540 | ``devtool deploy-target`` command does not deploy the packages (e.g. |
| 541 | libraries) on which your new application depends. The assumption is that |
| 542 | the packages are already on the target. Consequently, when a runtime |
| 543 | call is made in the application for a dependent function (e.g. a library |
| 544 | call), the function cannot be found. |
| 545 | |
| 546 | To be sure you have all the dependencies local to the target, you need |
| 547 | to be sure that the packages are pre-deployed (installed) on the target |
| 548 | before attempting to run your application. |
| 549 | |
| 550 | .. _devtool-removing-your-software-from-the-target-machine: |
| 551 | |
| 552 | Removing Your Software from the Target Machine |
| 553 | ============================================== |
| 554 | |
| 555 | Use the ``devtool undeploy-target`` command to remove deployed build |
| 556 | output from the target machine. For the ``devtool undeploy-target`` |
| 557 | command to work, you must have previously used the |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 558 | ":ref:`devtool deploy-target <ref-manual/devtool-reference:deploying your software on the target machine>`" |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 559 | command. |
| 560 | :: |
| 561 | |
| 562 | $ devtool undeploy-target recipe target |
| 563 | |
| 564 | The target is the |
| 565 | address of the target machine, which must be running an SSH server (i.e. |
| 566 | ``user@hostname``). |
| 567 | |
| 568 | .. _devtool-creating-the-workspace: |
| 569 | |
| 570 | Creating the Workspace Layer in an Alternative Location |
| 571 | ======================================================= |
| 572 | |
| 573 | Use the ``devtool create-workspace`` command to create a new workspace |
| 574 | layer in your :term:`Build Directory`. When you create a |
| 575 | new workspace layer, it is populated with the ``README`` file and the |
| 576 | ``conf`` directory only. |
| 577 | |
| 578 | The following example creates a new workspace layer in your current |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 579 | working and by default names the workspace layer "workspace":: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 580 | |
| 581 | $ devtool create-workspace |
| 582 | |
| 583 | You can create a workspace layer anywhere by supplying a pathname with |
| 584 | the command. The following command creates a new workspace layer named |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 585 | "new-workspace":: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 586 | |
| 587 | $ devtool create-workspace /home/scottrif/new-workspace |
| 588 | |
| 589 | .. _devtool-get-the-status-of-the-recipes-in-your-workspace: |
| 590 | |
| 591 | Get the Status of the Recipes in Your Workspace |
| 592 | =============================================== |
| 593 | |
| 594 | Use the ``devtool status`` command to list the recipes currently in your |
| 595 | workspace. Information includes the paths to their respective external |
| 596 | source trees. |
| 597 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 598 | The ``devtool status`` command has no command-line options:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 599 | |
| 600 | $ devtool status |
| 601 | |
| 602 | Following is sample output after using |
Andrew Geissler | 09209ee | 2020-12-13 08:44:15 -0600 | [diff] [blame] | 603 | :ref:`devtool add <ref-manual/devtool-reference:adding a new recipe to the workspace layer>` |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 604 | to create and add the ``mtr_0.86.bb`` recipe to the ``workspace`` directory:: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 605 | |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 606 | $ devtool status |
| 607 | mtr:/home/scottrif/poky/build/workspace/sources/mtr (/home/scottrif/poky/build/workspace/recipes/mtr/mtr_0.86.bb) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 608 | $ |
| 609 | |
| 610 | .. _devtool-search-for-available-target-recipes: |
| 611 | |
| 612 | Search for Available Target Recipes |
| 613 | =================================== |
| 614 | |
| 615 | Use the ``devtool search`` command to search for available target |
| 616 | recipes. The command matches the recipe name, package name, description, |
| 617 | and installed files. The command displays the recipe name as a result of |
| 618 | a match. |
| 619 | |
| 620 | When you use the ``devtool search`` command, you must supply a keyword. |
| 621 | The command uses the keyword when searching for a match. |