From 4873add6e11c1bd421c83cd08df589f1184aa673 Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Mon, 2 Nov 2020 18:44:49 -0600 Subject: Revert "poky: subtree update:b23aa6b753..ad30a6d470" This reverts commit af5e4ef732faedf66c6dc1756432e9de2ac72988. This commit introduced openbmc/openbmc#3720 and no solution has been forthcoming. Revert until we can get to the bottom of this. Change-Id: I2fb0d81eb26cf3dadb2f2abdd1a1bb7a95eaf03c --- .../toaster-manual/toaster-manual-start.xml | 116 +++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 poky/documentation/toaster-manual/toaster-manual-start.xml (limited to 'poky/documentation/toaster-manual/toaster-manual-start.xml') diff --git a/poky/documentation/toaster-manual/toaster-manual-start.xml b/poky/documentation/toaster-manual/toaster-manual-start.xml new file mode 100644 index 000000000..8a857006e --- /dev/null +++ b/poky/documentation/toaster-manual/toaster-manual-start.xml @@ -0,0 +1,116 @@ + %poky; ] > + + + + +Preparing to Use Toaster + + + This chapter describes how you need to prepare your system in order to + use Toaster. + + +
+ Setting Up the Basic System Requirements + + + Before you can use Toaster, you need to first set up your + build system to run the Yocto Project. + To do this, follow the instructions in the + "Preparing the Build Host" + section of the Yocto Project Development Tasks + Manual. + For Ubuntu/Debian, you might also need to do an additional install + of pip3. + + $ sudo apt-get install python3-pip + + +
+ +
+ Establishing Toaster System Dependencies + + + Toaster requires extra Python dependencies in order to run. + A Toaster requirements file named + toaster-requirements.txt defines the + Python dependencies. + The requirements file is located in the + bitbake directory, which is located in the + root directory of the + Source Directory + (e.g. poky/bitbake/toaster-requirements.txt). + The dependencies appear in a pip, + install-compatible format. + + +
+ Install Toaster Packages + + + You need to install the packages that Toaster requires. + Use this command: + + $ pip3 install --user -r bitbake/toaster-requirements.txt + + The previous command installs the necessary Toaster modules + into a local python 3 cache in your + $HOME directory. + The caches is actually located in + $HOME/.local. + To see what packages have been installed into your + $HOME directory, do the following: + + $ pip3 list installed --local + + If you need to remove something, the following works: + + $ pip3 uninstall PackageNameToUninstall + + +
+ + +
+
-- cgit v1.2.3