summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2020-09-17 01:58:55 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:35 +0100
commita007f1afabf7f77653a8272bf67cb2d9d7171047 (patch)
tree643167e9b55b2eed14d4823d3b0b15d897b65e0a /documentation
parentf3b77bcce103ef8e5f6d3843215fb46af8571c0f (diff)
downloadpoky-a007f1afabf7f77653a8272bf67cb2d9d7171047.tar.gz
sphinx: overview-manual: fix bitbake basic explanation
One requests Bitbake to bake a recipe to create packages. (From yocto-docs rev: 2b9a0131999d0d0c014968f792348c55afca4c2c) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/overview-manual/overview-manual-concepts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/overview-manual/overview-manual-concepts.rst b/documentation/overview-manual/overview-manual-concepts.rst
index 695984ff1e..9230527b76 100644
--- a/documentation/overview-manual/overview-manual-concepts.rst
+++ b/documentation/overview-manual/overview-manual-concepts.rst
@@ -63,8 +63,8 @@ following commands:
63 $ bitbake -h 63 $ bitbake -h
64 $ bitbake --help 64 $ bitbake --help
65 65
66The most common usage for BitBake is ``bitbake packagename``, where 66The most common usage for BitBake is ``bitbake recipename``, where
67``packagename`` is the name of the package you want to build (referred 67``recipename`` is the name of the recipe you want to build (referred
68to as the "target"). The target often equates to the first part of a 68to as the "target"). The target often equates to the first part of a
69recipe's filename (e.g. "foo" for a recipe named ``foo_1.3.0-r0.bb``). 69recipe's filename (e.g. "foo" for a recipe named ``foo_1.3.0-r0.bb``).
70So, to process the ``matchbox-desktop_1.2.3.bb`` recipe file, you might 70So, to process the ``matchbox-desktop_1.2.3.bb`` recipe file, you might