summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-10-18 17:05:33 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-20 20:22:20 +0100
commit07108739ce3283576e2041d6b399c9a21b579f6d (patch)
tree9023dd8c6fa5a2d1e3e4d3cce7b3f77feeaae72f /documentation/dev-manual
parent5550d83ff7a9a2ad213bad7ba06c3b77835e815d (diff)
downloadpoky-07108739ce3283576e2041d6b399c9a21b579f6d.tar.gz
manuals: rename "devpyshell" to "pydevshell"
This addresses [YOCTO #14531] after the "devpyshell" task was renamed to "pydevshell" in OE core. (From yocto-docs rev: 1056320e90545c8dff0fc71a5fde752295d4d6e4) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/common-tasks.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst
index 4683b1c045..3eead147a3 100644
--- a/documentation/dev-manual/common-tasks.rst
+++ b/documentation/dev-manual/common-tasks.rst
@@ -3531,14 +3531,14 @@ terminal window.
3531 - It is also worth noting that ``devshell`` still works over X11 3531 - It is also worth noting that ``devshell`` still works over X11
3532 forwarding and similar situations. 3532 forwarding and similar situations.
3533 3533
3534Using a Development Python Shell 3534Using a Python Development Shell
3535================================ 3535================================
3536 3536
3537Similar to working within a development shell as described in the 3537Similar to working within a development shell as described in the
3538previous section, you can also spawn and work within an interactive 3538previous section, you can also spawn and work within an interactive
3539Python development shell. When debugging certain commands or even when 3539Python development shell. When debugging certain commands or even when
3540just editing packages, ``devpyshell`` can be a useful tool. When you 3540just editing packages, ``pydevshell`` can be a useful tool. When you
3541invoke the ``devpyshell`` task, all tasks up to and including 3541invoke the ``pydevshell`` task, all tasks up to and including
3542:ref:`ref-tasks-patch` are run for the 3542:ref:`ref-tasks-patch` are run for the
3543specified target. Then a new terminal is opened. Additionally, key 3543specified target. Then a new terminal is opened. Additionally, key
3544Python objects and code are available in the same way they are to 3544Python objects and code are available in the same way they are to
@@ -3563,17 +3563,17 @@ system were executing them. Consequently, working this way can be
3563helpful when debugging a build or preparing software to be used with the 3563helpful when debugging a build or preparing software to be used with the
3564OpenEmbedded build system. 3564OpenEmbedded build system.
3565 3565
3566Following is an example that uses ``devpyshell`` on a target named 3566Following is an example that uses ``pydevshell`` on a target named
3567``matchbox-desktop``:: 3567``matchbox-desktop``::
3568 3568
3569 $ bitbake matchbox-desktop -c devpyshell 3569 $ bitbake matchbox-desktop -c pydevshell
3570 3570
3571This command spawns a terminal and places you in an interactive Python 3571This command spawns a terminal and places you in an interactive Python
3572interpreter within the OpenEmbedded build environment. The 3572interpreter within the OpenEmbedded build environment. The
3573:term:`OE_TERMINAL` variable 3573:term:`OE_TERMINAL` variable
3574controls what type of shell is opened. 3574controls what type of shell is opened.
3575 3575
3576When you are finished using ``devpyshell``, you can exit the shell 3576When you are finished using ``pydevshell``, you can exit the shell
3577either by using Ctrl+d or closing the terminal window. 3577either by using Ctrl+d or closing the terminal window.
3578 3578
3579Building 3579Building