summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2024-04-11 10:56:55 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-04-12 17:29:34 +0100
commit28ea006454486ff444e8acf756b96f1f30797906 (patch)
tree1e60fb1960af3896c691f2667a08fe286fd619e3 /documentation
parenta738448d83e28e97501ac30076f980efeeab4c83 (diff)
downloadpoky-28ea006454486ff444e8acf756b96f1f30797906.tar.gz
dev-manual/debugging: mention new ``taskexp_ncurses`` option
(From yocto-docs rev: 301c802a92a2c53c3d0c755c31a6e09130956fde) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Suggested_by: Reyna, David <david.reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/debugging.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst
index e20637e1c6..92458a0c37 100644
--- a/documentation/dev-manual/debugging.rst
+++ b/documentation/dev-manual/debugging.rst
@@ -270,13 +270,17 @@ format and can be converted to images (e.g. using the ``dot`` tool from
270 displays paths between graph nodes. 270 displays paths between graph nodes.
271 271
272You can use a different method to view dependency information by using 272You can use a different method to view dependency information by using
273the following command:: 273either::
274 274
275 $ bitbake -g -u taskexp recipename 275 $ bitbake -g -u taskexp recipename
276 276
277This command 277or::
278displays a GUI window from which you can view build-time and runtime 278
279dependencies for the recipes involved in building recipename. 279 $ bitbake -g -u taskexp_ncurses recipename
280
281The ``-u taskdep`` option GUI window from which you can view build-time and
282runtime dependencies for the recipes involved in building recipename. The
283``-u taskexp_ncurses`` option uses ncurses instead of GTK to render the UI.
280 284
281Viewing Task Variable Dependencies 285Viewing Task Variable Dependencies
282================================== 286==================================