devtool-reference.rst 27 KB

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