diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2020-09-16 13:13:37 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-17 10:09:35 +0100 |
commit | b199ff072e7d59255df4b414947f43a522c166e2 (patch) | |
tree | 80298d44138bf67fce3d00749f0dbfe136f813e6 /documentation/toaster-manual/toaster-manual-start.rst | |
parent | f8b4bbda0316d2f1b276cb2ed2cf25422c418ac1 (diff) | |
download | poky-b199ff072e7d59255df4b414947f43a522c166e2.tar.gz |
sphinx: toaster-manual: fix vars, links, code blocks
Also update Django links to 2.2 LTS release (from 1.11)
Replace most references to 'rocko' with variable
(From yocto-docs rev: ddf1e119db93fc3f8b141a04f6d0009f933b1006)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/toaster-manual/toaster-manual-start.rst')
-rw-r--r-- | documentation/toaster-manual/toaster-manual-start.rst | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/documentation/toaster-manual/toaster-manual-start.rst b/documentation/toaster-manual/toaster-manual-start.rst index 1114c04eab..2d612b8938 100644 --- a/documentation/toaster-manual/toaster-manual-start.rst +++ b/documentation/toaster-manual/toaster-manual-start.rst | |||
@@ -1,4 +1,6 @@ | |||
1 | .. SPDX-License-Identifier: CC-BY-2.0-UK | 1 | .. SPDX-License-Identifier: CC-BY-2.0-UK |
2 | .. Set default pygments highlighting to shell for this document | ||
3 | .. highlight:: shell | ||
2 | 4 | ||
3 | ************************ | 5 | ************************ |
4 | Preparing to Use Toaster | 6 | Preparing to Use Toaster |
@@ -14,11 +16,11 @@ Setting Up the Basic System Requirements | |||
14 | 16 | ||
15 | Before you can use Toaster, you need to first set up your build system | 17 | Before you can use Toaster, you need to first set up your build system |
16 | to run the Yocto Project. To do this, follow the instructions in the | 18 | to run the Yocto Project. To do this, follow the instructions in the |
17 | "`Preparing the Build | 19 | ":ref:`dev-manual/dev-manual-start:preparing the build host`" section of |
18 | Host <&YOCTO_DOCS_DEV_URL;#dev-preparing-the-build-host>`__" section of | ||
19 | the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might | 20 | the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might |
20 | also need to do an additional install of pip3. $ sudo apt-get install | 21 | also need to do an additional install of pip3. :: |
21 | python3-pip | 22 | |
23 | $ sudo apt-get install python3-pip | ||
22 | 24 | ||
23 | .. _toaster-establishing-toaster-system-dependencies: | 25 | .. _toaster-establishing-toaster-system-dependencies: |
24 | 26 | ||
@@ -39,10 +41,17 @@ Install Toaster Packages | |||
39 | ------------------------ | 41 | ------------------------ |
40 | 42 | ||
41 | You need to install the packages that Toaster requires. Use this | 43 | You need to install the packages that Toaster requires. Use this |
42 | command: $ pip3 install --user -r bitbake/toaster-requirements.txt The | 44 | command:: |
43 | previous command installs the necessary Toaster modules into a local | 45 | |
46 | $ pip3 install --user -r bitbake/toaster-requirements.txt | ||
47 | |||
48 | The previous command installs the necessary Toaster modules into a local | ||
44 | python 3 cache in your ``$HOME`` directory. The caches is actually | 49 | python 3 cache in your ``$HOME`` directory. The caches is actually |
45 | located in ``$HOME/.local``. To see what packages have been installed | 50 | located in ``$HOME/.local``. To see what packages have been installed |
46 | into your ``$HOME`` directory, do the following: $ pip3 list installed | 51 | into your ``$HOME`` directory, do the following:: |
47 | --local If you need to remove something, the following works: $ pip3 | 52 | |
48 | uninstall PackageNameToUninstall | 53 | $ pip3 list installed --local |
54 | |||
55 | If you need to remove something, the following works:: | ||
56 | |||
57 | $ pip3 uninstall PackageNameToUninstall | ||