ref-devtool-reference.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  2. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
  3. [<!ENTITY % poky SYSTEM "../poky.ent"> %poky; ] >
  4. <chapter id='ref-devtool-reference'>
  5. <title><filename>devtool</filename> Quick Reference</title>
  6. <para>
  7. The <filename>devtool</filename> command-line tool provides a number
  8. of features that help you build, test, and package software.
  9. This command is available alongside the <filename>bitbake</filename>
  10. command.
  11. Additionally, the <filename>devtool</filename> command is a key
  12. part of the extensible SDK.
  13. </para>
  14. <para>
  15. This chapter provides a Quick Reference for the
  16. <filename>devtool</filename> command.
  17. For more information on how to apply the command when using the
  18. extensible SDK, see the
  19. "<ulink url='&YOCTO_DOCS_SDK_URL;#sdk-extensible'>Using the Extensible SDK</ulink>"
  20. section in the Yocto Project Software Development Kit (SDK) Developer's
  21. Guide.
  22. </para>
  23. <section id='devtool-getting-help'>
  24. <title>Getting Help</title>
  25. <para>
  26. The <filename>devtool</filename> command line is organized
  27. similarly to Git in that it has a number of sub-commands for
  28. each function.
  29. You can run <filename>devtool --help</filename> to see all
  30. the commands:
  31. <literallayout class='monospaced'>
  32. $ devtool --help
  33. usage: devtool [--basepath BASEPATH] [--bbpath BBPATH] [-d] [-q]
  34. [--color COLOR] [-h]
  35. &lt;subcommand&gt; ...
  36. OpenEmbedded development tool
  37. options:
  38. --basepath BASEPATH Base directory of SDK / build directory
  39. --bbpath BBPATH Explicitly specify the BBPATH, rather than getting it
  40. from the metadata
  41. -d, --debug Enable debug output
  42. -q, --quiet Print only errors
  43. --color COLOR Colorize output (where COLOR is auto, always, never)
  44. -h, --help show this help message and exit
  45. subcommands:
  46. Beginning work on a recipe:
  47. add Add a new recipe
  48. modify Modify the source for an existing recipe
  49. upgrade Upgrade an existing recipe
  50. Getting information:
  51. status Show workspace status
  52. search Search available recipes
  53. Working on a recipe in the workspace:
  54. edit-recipe Edit a recipe file in your workspace
  55. configure-help Get help on configure script options
  56. build Build a recipe
  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. Use devtool &lt;subcommand&gt; --help to get help on a specific command
  69. </literallayout>
  70. </para>
  71. <para>
  72. As directed in the general help output, you can get more
  73. syntax on a specific command by providing the command
  74. name and using <filename>--help</filename>:
  75. <literallayout class='monospaced'>
  76. $ devtool add --help
  77. usage: devtool add [-h] [--same-dir | --no-same-dir] [--fetch URI]
  78. [--version VERSION] [--no-git] [--autorev] [--binary]
  79. [--also-native] [--src-subdir SUBDIR]
  80. [recipename] [srctree] [fetchuri]
  81. Adds a new recipe to the workspace to build a specified source tree. Can
  82. optionally fetch a remote URI and unpack it to create the source tree.
  83. arguments:
  84. recipename Name for new recipe to add (just name - no version,
  85. path or extension). If not specified, will attempt to
  86. auto-detect it.
  87. srctree Path to external source tree. If not specified, a
  88. subdirectory of
  89. /home/scottrif/poky/build/workspace/sources will be
  90. used.
  91. fetchuri Fetch the specified URI and extract it to create the
  92. source tree
  93. options:
  94. -h, --help show this help message and exit
  95. --same-dir, -s Build in same directory as source
  96. --no-same-dir Force build in a separate build directory
  97. --fetch URI, -f URI Fetch the specified URI and extract it to create the
  98. source tree (deprecated - pass as positional argument
  99. instead)
  100. --version VERSION, -V VERSION
  101. Version to use within recipe (PV)
  102. --no-git, -g If fetching source, do not set up source tree as a git
  103. repository
  104. --autorev, -a When fetching from a git repository, set SRCREV in the
  105. recipe to a floating revision instead of fixed
  106. --binary, -b Treat the source tree as something that should be
  107. installed verbatim (no compilation, same directory
  108. structure). Useful with binary packages e.g. RPMs.
  109. --also-native Also add native variant (i.e. support building recipe
  110. for the build host as well as the target machine)
  111. --src-subdir SUBDIR Specify subdirectory within source tree to use
  112. </literallayout>
  113. </para>
  114. </section>
  115. <section id='devtool-the-workspace-layer-structure'>
  116. <title>The Workspace Layer Structure</title>
  117. <para>
  118. <filename>devtool</filename> uses a "Workspace" layer
  119. in which to accomplish builds.
  120. This layer is not specific to any single
  121. <filename>devtool</filename> command but is rather a common
  122. working area used across the tool.
  123. </para>
  124. <para>
  125. The following figure shows the workspace structure:
  126. </para>
  127. <para>
  128. <imagedata fileref="figures/build-workspace-directory.png"
  129. width="6in" depth="5in" align="left" scale="70" />
  130. </para>
  131. <para>
  132. <literallayout class='monospaced'>
  133. attic - A directory created if devtool believes it preserve
  134. anything when you run "devtool reset". For example, if you
  135. run "devtool add", make changes to the recipe, and then
  136. run "devtool reset", devtool takes notice that the file has
  137. been changed and moves it into the attic should you still
  138. want the recipe.
  139. README - Provides information on what is in workspace layer and how to
  140. manage it.
  141. .devtool_md5 - A checksum file used by devtool.
  142. appends - A directory that contains *.bbappend files, which point to
  143. external source.
  144. conf - A configuration directory that contains the layer.conf file.
  145. recipes - A directory containing recipes. This directory contains a
  146. folder for each directory added whose name matches that of the
  147. added recipe. devtool places the <replaceable>recipe</replaceable>.bb file
  148. within that sub-directory.
  149. sources - A directory containing a working copy of the source files used
  150. when building the recipe. This is the default directory used
  151. as the location of the source tree when you do not provide a
  152. source tree path. This directory contains a folder for each
  153. set of source files matched to a corresponding recipe.
  154. </literallayout>
  155. </para>
  156. </section>
  157. <section id='devtool-adding-a-new-recipe-to-the-workspace'>
  158. <title>Adding a New Recipe to the Workspace Layer</title>
  159. <para>
  160. Use the <filename>devtool add</filename> command to add a new recipe
  161. to the workspace layer.
  162. The recipe you add should not exist -
  163. <filename>devtool</filename> creates it for you.
  164. The source files the recipe uses should exist in an external
  165. area.
  166. </para>
  167. <para>
  168. The following example creates and adds a new recipe named
  169. <filename>jackson</filename> to a workspace layer the tool creates.
  170. The source code built by the recipes resides in
  171. <filename>/home/scottrif/sources/jackson</filename>:
  172. <literallayout class='monospaced'>
  173. $ devtool add jackson /home/scottrif/sources/jackson
  174. </literallayout>
  175. </para>
  176. <para>
  177. If you add a recipe and the workspace layer does not exist,
  178. the command creates the layer and populates it as
  179. described in
  180. "<link linkend='devtool-the-workspace-layer-structure'>The Workspace Layer Structure</link>"
  181. section.
  182. </para>
  183. <para>
  184. Running <filename>devtool add</filename> when the
  185. workspace layer exists causes the tool to add the recipe,
  186. append files, and source files into the existing workspace layer.
  187. The <filename>.bbappend</filename> file is created to point
  188. to the external source tree.
  189. </para>
  190. <note>
  191. If your recipe has runtime dependencies defined, you must be sure
  192. that these packages exist on the target hardware before attempting
  193. to run your application.
  194. If dependent packages (e.g. libraries) do not exist on the target,
  195. your application, when run, will fail to find those functions.
  196. For more information, see the
  197. "<link linkend='devtool-deploying-your-software-on-the-target-machine'>Deploying Your Software on the Target Machine</link>"
  198. section.
  199. </note>
  200. </section>
  201. <section id='devtool-extracting-the-source-for-an-existing-recipe'>
  202. <title>Extracting the Source for an Existing Recipe</title>
  203. <para>
  204. Use the <filename>devtool extract</filename> command to
  205. extract the source for an existing recipe.
  206. When you use this command, you must supply the root name
  207. of the recipe (i.e. no version, paths, or extensions), and
  208. you must supply the directory to which you want the source
  209. extracted.
  210. </para>
  211. <para>
  212. Additional command options let you control the name of a
  213. development branch into which you can checkout the source
  214. and whether or not to keep a temporary directory, which is
  215. useful for debugging.
  216. </para>
  217. </section>
  218. <section id='devtool-synchronizing-a-recipes-extracted-source-tree'>
  219. <title>Synchronizing a Recipe's Extracted Source Tree</title>
  220. <para>
  221. Use the <filename>devtool sync</filename> command to
  222. synchronize a previously extracted source tree for an
  223. existing recipe.
  224. When you use this command, you must supply the root name
  225. of the recipe (i.e. no version, paths, or extensions), and
  226. you must supply the directory to which you want the source
  227. extracted.
  228. </para>
  229. <para>
  230. Additional command options let you control the name of a
  231. development branch into which you can checkout the source
  232. and whether or not to keep a temporary directory, which is
  233. useful for debugging.
  234. </para>
  235. </section>
  236. <section id='devtool-modifying-a-recipe'>
  237. <title>Modifying an Existing Recipe</title>
  238. <para>
  239. Use the <filename>devtool modify</filename> command to begin
  240. modifying the source of an existing recipe.
  241. This command is very similar to the
  242. <ulink url='&YOCTO_DOCS_DEV_URL;#devtool-adding-a-new-recipe-to-the-workspace'><filename>add</filename></ulink>
  243. command except that it does not physically create the
  244. recipe in the workspace layer because the recipe already
  245. exists in an another layer.
  246. </para>
  247. <para>
  248. The <filename>devtool modify</filename> command extracts the
  249. source for a recipe, sets it up as a Git repository if the
  250. source had not already been fetched from Git, checks out a
  251. branch for development, and applies any patches from the recipe
  252. as commits on top.
  253. You can use the following command to checkout the source
  254. files:
  255. <literallayout class='monospaced'>
  256. $ devtool modify <replaceable>recipe</replaceable>
  257. </literallayout>
  258. Using the above command form, <filename>devtool</filename> uses
  259. the existing recipe's
  260. <link linkend='var-SRC_URI'><filename>SRC_URI</filename></link>
  261. statement to locate the upstream source, extracts the source
  262. into the default sources location in the workspace.
  263. The default development branch used is "devtool".
  264. </para>
  265. </section>
  266. <section id='devtool-edit-an-existing-recipe'>
  267. <title>Edit an Existing Recipe</title>
  268. <para>
  269. Use the <filename>devtool edit-recipe</filename> command
  270. to run the default editor, which is identified using the
  271. <filename>EDITOR</filename> variable, on the specified recipe.
  272. </para>
  273. <para>
  274. When you use the <filename>devtool edit-recipe</filename>
  275. command, you must supply the root name of the recipe
  276. (i.e. no version, paths, or extensions).
  277. Also, the recipe file itself must reside in the workspace
  278. as a result of the <filename>devtool add</filename> or
  279. <filename>devtool upgrade</filename> commands.
  280. However, you can override that requirement by using the
  281. "-a" or "--any-recipe" option.
  282. Using either of these options allows you to edit any recipe
  283. regardless of its location.
  284. </para>
  285. </section>
  286. <section id='devtool-updating-a-recipe'>
  287. <title>Updating a Recipe</title>
  288. <para>
  289. Use the <filename>devtool update-recipe</filename> command to
  290. update your recipe with patches that reflect changes you make
  291. to the source files.
  292. For example, if you know you are going to work on some
  293. code, you could first use the
  294. <ulink url='&YOCTO_DOCS_DEV_URL;#devtool-modifying-a-recipe'><filename>devtool modify</filename></ulink>
  295. command to extract the code and set up the workspace.
  296. After which, you could modify, compile, and test the code.
  297. </para>
  298. <para>
  299. When you are satisfied with the results and you have committed
  300. your changes to the Git repository, you can then
  301. run the <filename>devtool update-recipe</filename> to create the
  302. patches and update the recipe:
  303. <literallayout class='monospaced'>
  304. $ devtool update-recipe <replaceable>recipe</replaceable>
  305. </literallayout>
  306. If you run the <filename>devtool update-recipe</filename>
  307. without committing your changes, the command ignores the
  308. changes.
  309. </para>
  310. <para>
  311. Often, you might want to apply customizations made to your
  312. software in your own layer rather than apply them to the
  313. original recipe.
  314. If so, you can use the
  315. <filename>-a</filename> or <filename>--append</filename>
  316. option with the <filename>devtool update-recipe</filename>
  317. command.
  318. These options allow you to specify the layer into which to
  319. write an append file:
  320. <literallayout class='monospaced'>
  321. $ devtool update-recipe <replaceable>recipe</replaceable> -a <replaceable>base-layer-directory</replaceable>
  322. </literallayout>
  323. The <filename>*.bbappend</filename> file is created at the
  324. appropriate path within the specified layer directory, which
  325. may or may not be in your <filename>bblayers.conf</filename>
  326. file.
  327. If an append file already exists, the command updates it
  328. appropriately.
  329. </para>
  330. </section>
  331. <section id='devtool-upgrading-a-recipe'>
  332. <title>Upgrading a Recipe</title>
  333. <para>
  334. Use the <filename>devtool upgrade</filename> command
  335. to upgrade an existing recipe to a new upstream version.
  336. The command puts the upgraded recipe file into the
  337. workspace along with any associated files, and extracts
  338. the source tree to a specified location should patches
  339. need rebased or added to as a result of the upgrade.
  340. </para>
  341. <para>
  342. When you use the <filename>devtool upgrade</filename> command,
  343. you must supply the root name of the recipe (i.e. no version,
  344. paths, or extensions), and you must supply the directory
  345. to which you want the source extracted.
  346. Additional command options let you control things such as
  347. the version number to which you want to upgrade (i.e. the
  348. <link linkend='var-PV'><filename>PV</filename></link>),
  349. the source revision to which you want to upgrade (i.e. the
  350. <link linkend='var-SRCREV'><filename>SRCREV</filename></link>,
  351. whether or not to apply patches, and so forth.
  352. </para>
  353. </section>
  354. <section id='devtool-resetting-a-recipe'>
  355. <title>Resetting a Recipe</title>
  356. <para>
  357. Use the <filename>devtool reset</filename> command to remove a
  358. recipe and its configuration (e.g. the corresponding
  359. <filename>.bbappend</filename> file) from the workspace layer.
  360. Realize that this command deletes the recipe and the
  361. append file.
  362. The command does not physically move them for you.
  363. Consequently, you must be sure to physically relocate your
  364. updated recipe and the append file outside of the workspace
  365. layer before running the <filename>devtool reset</filename>
  366. command.
  367. </para>
  368. <para>
  369. If the <filename>devtool reset</filename> command detects that
  370. the recipe or the append files have been modified, the
  371. command preserves the modified files in a separate "attic"
  372. subdirectory under the workspace layer.
  373. </para>
  374. <para>
  375. Here is an example that resets the workspace directory that
  376. contains the <filename>mtr</filename> recipe:
  377. <literallayout class='monospaced'>
  378. $ devtool reset mtr
  379. NOTE: Cleaning sysroot for recipe mtr...
  380. NOTE: Leaving source tree /home/scottrif/poky/build/workspace/sources/mtr as-is; if you no
  381. longer need it then please delete it manually
  382. $
  383. </literallayout>
  384. </para>
  385. </section>
  386. <section id='devtool-building-your-recipe'>
  387. <title>Building Your Recipe</title>
  388. <para>
  389. Use the <filename>devtool build</filename> command to cause the
  390. OpenEmbedded build system to build your recipe.
  391. The <filename>devtool build</filename> command is equivalent to
  392. <filename>bitbake -c populate_sysroot</filename>.
  393. </para>
  394. <para>
  395. When you use the <filename>devtool build</filename> command,
  396. you must supply the root name of the recipe (i.e. no version,
  397. paths, or extensions).
  398. You can use either the "-s" or the "--disable-parallel-make"
  399. option to disable parallel makes during the build.
  400. Here is an example:
  401. <literallayout class='monospaced'>
  402. $ devtool build <replaceable>recipe</replaceable>
  403. </literallayout>
  404. </para>
  405. </section>
  406. <section id='devtool-building-your-image'>
  407. <title>Building Your Image</title>
  408. <para>
  409. Use the <filename>devtool build-image</filename> command
  410. to build an image, extending it to include packages from
  411. recipes in the workspace.
  412. Using this command is useful when you want an image that
  413. ready for immediate deployment onto a device for testing.
  414. For proper integration into a final image, you need to
  415. edit your custom image recipe appropriately.
  416. </para>
  417. <para>
  418. When you use the <filename>devtool build-image</filename>
  419. command, you must supply the name of the image.
  420. This command has no command line options:
  421. <literallayout class='monospaced'>
  422. $ devtool build-image <replaceable>image</replaceable>
  423. </literallayout>
  424. </para>
  425. </section>
  426. <section id='devtool-deploying-your-software-on-the-target-machine'>
  427. <title>Deploying Your Software on the Target Machine</title>
  428. <para>
  429. Use the <filename>devtool deploy-target</filename> command to
  430. deploy the recipe's build output to the live target machine:
  431. <literallayout class='monospaced'>
  432. $ devtool deploy-target <replaceable>recipe</replaceable>&nbsp;<replaceable>target</replaceable>
  433. </literallayout>
  434. The <replaceable>target</replaceable> is the address of the
  435. target machine, which must be running an SSH server (i.e.
  436. <filename>user@hostname[:destdir]</filename>).
  437. </para>
  438. <para>
  439. This command deploys all files installed during the
  440. <link linkend='ref-tasks-install'><filename>do_install</filename></link>
  441. task.
  442. Furthermore, you do not need to have package management enabled
  443. within the target machine.
  444. If you do, the package manager is bypassed.
  445. <note><title>Notes</title>
  446. <para>
  447. The <filename>deploy-target</filename>
  448. functionality is for development only.
  449. You should never use it to update an image that will be
  450. used in production.
  451. </para>
  452. </note>
  453. </para>
  454. <para>
  455. Some conditions exist that could prevent a deployed application
  456. from behaving as expected.
  457. When both of the following conditions exist, your application has
  458. the potential to not behave correctly when run on the target:
  459. <itemizedlist>
  460. <listitem><para>
  461. You are deploying a new application to the target and
  462. the recipe you used to build the application had
  463. correctly defined runtime dependencies.
  464. </para></listitem>
  465. <listitem><para>
  466. The target does not physically have the packages on which
  467. the application depends installed.
  468. </para></listitem>
  469. </itemizedlist>
  470. If both of these conditions exist, your application will not
  471. behave as expected.
  472. The reason for this misbehavior is because the
  473. <filename>devtool deploy-target</filename> command does not deploy
  474. the packages (e.g. libraries) on which your new application
  475. depends.
  476. The assumption is that the packages are already on the target.
  477. Consequently, when a runtime call is made in the application
  478. for a dependent function (e.g. a library call), the function
  479. cannot be found.
  480. </para>
  481. <para>
  482. To be sure you have all the dependencies local to the target, you
  483. need to be sure that the packages are pre-deployed (installed)
  484. on the target before attempting to run your application.
  485. </para>
  486. </section>
  487. <section id='devtool-removing-your-software-from-the-target-machine'>
  488. <title>Removing Your Software from the Target Machine</title>
  489. <para>
  490. Use the <filename>devtool undeploy-target</filename> command to
  491. remove deployed build output from the target machine.
  492. For the <filename>devtool undeploy-target</filename> command to
  493. work, you must have previously used the
  494. <ulink url='&YOCTO_DOCS_DEV_URL;#devtool-deploying-your-software-on-the-target-machine'><filename>devtool deploy-target</filename></ulink>
  495. command.
  496. <literallayout class='monospaced'>
  497. $ devtool undeploy-target <replaceable>recipe</replaceable>&nbsp;<replaceable>target</replaceable>
  498. </literallayout>
  499. The <replaceable>target</replaceable> is the address of the
  500. target machine, which must be running an SSH server (i.e.
  501. <filename>user@hostname</filename>).
  502. </para>
  503. </section>
  504. <section id='devtool-creating-the-workspace'>
  505. <title>Creating the Workspace Layer in an Alternative Location</title>
  506. <para>
  507. Use the <filename>devtool create-workspace</filename> command to
  508. create a new workspace layer in your
  509. <link linkend='build-directory'>Build Directory</link>.
  510. When you create a new workspace layer, it is populated with the
  511. <filename>README</filename> file and the
  512. <filename>conf</filename> directory only.
  513. </para>
  514. <para>
  515. The following example creates a new workspace layer in your
  516. current working and by default names the workspace layer
  517. "workspace":
  518. <literallayout class='monospaced'>
  519. $ devtool create-workspace
  520. </literallayout>
  521. </para>
  522. <para>
  523. You can create a workspace layer anywhere by supplying
  524. a pathname with the command.
  525. The following command creates a new workspace layer named
  526. "new-workspace":
  527. <literallayout class='monospaced'>
  528. $ devtool create-workspace /home/scottrif/new-workspace
  529. </literallayout>
  530. </para>
  531. </section>
  532. <section id='devtool-get-the-status-of-the-recipes-in-your-workspace'>
  533. <title>Get the Status of the Recipes in Your Workspace</title>
  534. <para>
  535. Use the <filename>devtool status</filename> command to
  536. list the recipes currently in your workspace.
  537. Information includes the paths to their respective
  538. external source trees.
  539. </para>
  540. <para>
  541. The <filename>devtool status</filename> command has no
  542. command-line options:
  543. <literallayout class='monospaced'>
  544. $ devtool status
  545. </literallayout>
  546. Following is sample output after using
  547. <ulink url='&YOCTO_DOCS_DEV_URL;#devtool-adding-a-new-recipe-to-the-workspace'><filename>devtool add</filename></ulink>
  548. to create and add the <filename>mtr_0.86.bb</filename> recipe
  549. to the <filename>workspace</filename> directory:
  550. <literallayout class='monospaced'>
  551. $ devtool status
  552. mtr: /home/scottrif/poky/build/workspace/sources/mtr (/home/scottrif/poky/build/workspace/recipes/mtr/mtr_0.86.bb)
  553. $
  554. </literallayout>
  555. </para>
  556. </section>
  557. <section id='devtool-search-for-available-target-recipes'>
  558. <title>Search for Available Target Recipes</title>
  559. <para>
  560. Use the <filename>devtool search</filename> command to
  561. search for available target recipes.
  562. The command matches the recipe name, package name,
  563. description, and installed files.
  564. The command displays the recipe name as a result of a
  565. match.
  566. </para>
  567. <para>
  568. When you use the <filename>devtool search</filename> command,
  569. you must supply a <replaceable>keyword</replaceable>.
  570. The command uses the <replaceable>keyword</replaceable> when
  571. searching for a match.
  572. </para>
  573. </section>
  574. </chapter>
  575. <!--
  576. vim: expandtab tw=80 ts=4
  577. -->