mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
f8b4bbda03
commit
b199ff072e
@@ -26,9 +26,9 @@ extensive information about the build process.
|
|||||||
Yocto Project releases 1.8 and beyond. With the Toaster web
|
Yocto Project releases 1.8 and beyond. With the Toaster web
|
||||||
interface, you can:
|
interface, you can:
|
||||||
|
|
||||||
- Browse layers listed in the various `layer
|
- Browse layers listed in the various
|
||||||
sources <#layer-source>`__ that are available in your project
|
:ref:`layer sources <toaster-manual/toaster-manual-reference:layer source>`
|
||||||
(e.g. the OpenEmbedded Layer Index at
|
that are available in your project (e.g. the OpenEmbedded Layer Index at
|
||||||
http://layers.openembedded.org/layerindex/).
|
http://layers.openembedded.org/layerindex/).
|
||||||
|
|
||||||
- Browse images, recipes, and machines provided by those layers.
|
- Browse images, recipes, and machines provided by those layers.
|
||||||
@@ -78,7 +78,7 @@ extensive information about the build process.
|
|||||||
- See performance information such as build time, task time, CPU
|
- See performance information such as build time, task time, CPU
|
||||||
usage, and disk I/O.
|
usage, and disk I/O.
|
||||||
|
|
||||||
For an overview of Toaster shipped with the Yocto Project DISTRO
|
For an overview of Toaster shipped with the Yocto Project &DISTRO;
|
||||||
Release, see the "`Toaster - Yocto Project
|
Release, see the "`Toaster - Yocto Project
|
||||||
2.2 <https://youtu.be/BlXdOYLgPxA>`__" video.
|
2.2 <https://youtu.be/BlXdOYLgPxA>`__" video.
|
||||||
|
|
||||||
|
|||||||
@@ -67,11 +67,10 @@ familiar with where they reside. You will need that information when you
|
|||||||
set up the code for the web application that "hooks" into your set of
|
set up the code for the web application that "hooks" into your set of
|
||||||
layers.
|
layers.
|
||||||
|
|
||||||
For general information on layers, see the "`The Yocto Project Layer
|
For general information on layers, see the
|
||||||
Model <&YOCTO_DOCS_OM_URL;#the-yocto-project-layer-model>`__" section in
|
":ref:`overview-manual/overview-manual-yp-intro:the yocto project layer model`"
|
||||||
the Yocto Project Overview and Concepts Manual. For information on how
|
section in the Yocto Project Overview and Concepts Manual. For information on how
|
||||||
to create layers, see the "`Understanding and Creating
|
to create layers, see the ":ref:`dev-manual/dev-manual-common-tasks:understanding and creating layers`"
|
||||||
Layers <&YOCTO_DOCS_DEV_URL;#understanding-and-creating-layers>`__"
|
|
||||||
section in the Yocto Project Development Tasks Manual.
|
section in the Yocto Project Development Tasks Manual.
|
||||||
|
|
||||||
.. _configuring-toaster-to-hook-into-your-layer-source:
|
.. _configuring-toaster-to-hook-into-your-layer-source:
|
||||||
@@ -98,7 +97,9 @@ Use the Administration Interface
|
|||||||
Access the administration interface through a browser by entering the
|
Access the administration interface through a browser by entering the
|
||||||
URL of your Toaster instance and adding "``/admin``" to the end of the
|
URL of your Toaster instance and adding "``/admin``" to the end of the
|
||||||
URL. As an example, if you are running Toaster locally, use the
|
URL. As an example, if you are running Toaster locally, use the
|
||||||
following URL: http://127.0.0.1:8000/admin
|
following URL::
|
||||||
|
|
||||||
|
http://127.0.0.1:8000/admin
|
||||||
|
|
||||||
The administration interface has a "Layer sources" section that includes
|
The administration interface has a "Layer sources" section that includes
|
||||||
an "Add layer source" button. Click that button and provide the required
|
an "Add layer source" button. Click that button and provide the required
|
||||||
@@ -110,12 +111,19 @@ Use the Fixture Feature
|
|||||||
The Django fixture feature overrides the default layer server when you
|
The Django fixture feature overrides the default layer server when you
|
||||||
use it to specify a custom URL. To use the fixture feature, create (or
|
use it to specify a custom URL. To use the fixture feature, create (or
|
||||||
edit) the file ``bitbake/lib/toaster.orm/fixtures/custom.xml``, and then
|
edit) the file ``bitbake/lib/toaster.orm/fixtures/custom.xml``, and then
|
||||||
set the following Toaster setting to your custom URL: <?xml
|
set the following Toaster setting to your custom URL:
|
||||||
version="1.0" ?> <django-objects version="1.0"> <object
|
|
||||||
model="orm.toastersetting" pk="100"> <field name="name"
|
.. code-block:: xml
|
||||||
type="CharField">CUSTOM_LAYERINDEX_SERVER</field> <field name="value"
|
|
||||||
type="CharField">https://layers.my_organization.org/layerindex/branch/master/layers/</field>
|
<?xml version="1.0" ?>
|
||||||
</object> <django-objects> When you start Toaster for the first time, or
|
<django-objects version="1.0">
|
||||||
|
<object model="orm.toastersetting" pk="100">
|
||||||
|
<field name="name" type="CharField">CUSTOM_LAYERINDEX_SERVER</field>
|
||||||
|
<field name="value" type="CharField">https://layers.my_organization.org/layerindex/branch/master/layers/</field>
|
||||||
|
</object>
|
||||||
|
<django-objects>
|
||||||
|
|
||||||
|
When you start Toaster for the first time, or
|
||||||
if you delete the file ``toaster.sqlite`` and restart, the database will
|
if you delete the file ``toaster.sqlite`` and restart, the database will
|
||||||
populate cleanly from this layer index server.
|
populate cleanly from this layer index server.
|
||||||
|
|
||||||
@@ -125,10 +133,15 @@ is available by using the Toaster web interface. To do that, visit the
|
|||||||
your layer source should be listed there.
|
your layer source should be listed there.
|
||||||
|
|
||||||
If you change the information in your layer index server, refresh the
|
If you change the information in your layer index server, refresh the
|
||||||
Toaster database by running the following command: $
|
Toaster database by running the following command:
|
||||||
bitbake/lib/toaster/manage.py lsupdates If Toaster can reach the API
|
|
||||||
URL, you should see a message telling you that Toaster is updating the
|
.. code-block:: shell
|
||||||
layer source information.
|
|
||||||
|
$ bitbake/lib/toaster/manage.py lsupdates
|
||||||
|
|
||||||
|
|
||||||
|
If Toaster can reach the API URL, you should see a message telling you that
|
||||||
|
Toaster is updating the layer source information.
|
||||||
|
|
||||||
.. _toaster-releases:
|
.. _toaster-releases:
|
||||||
|
|
||||||
@@ -157,11 +170,11 @@ to build against different revisions of OpenEmbedded and BitBake.
|
|||||||
|
|
||||||
As shipped, Toaster is configured to work with the following releases:
|
As shipped, Toaster is configured to work with the following releases:
|
||||||
|
|
||||||
- *Yocto Project DISTRO "DISTRO_NAME" or OpenEmbedded "DISTRO_NAME":*
|
- *Yocto Project &DISTRO; "&DISTRO_NAME;" or OpenEmbedded "&DISTRO_NAME;":*
|
||||||
This release causes your Toaster projects to build against the head
|
This release causes your Toaster projects to build against the head
|
||||||
of the DISTRO_NAME_NO_CAP branch at
|
of the &DISTRO_NAME_NO_CAP; branch at
|
||||||
https://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=rocko or
|
https://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=&DISTRO_NAME_NO_CAP; or
|
||||||
http://git.openembedded.org/openembedded-core/commit/?h=rocko.
|
http://git.openembedded.org/openembedded-core/commit/?h=&DISTRO_NAME_NO_CAP;.
|
||||||
|
|
||||||
- *Yocto Project "Master" or OpenEmbedded "Master":* This release
|
- *Yocto Project "Master" or OpenEmbedded "Master":* This release
|
||||||
causes your Toaster Projects to build against the head of the master
|
causes your Toaster Projects to build against the head of the master
|
||||||
@@ -224,9 +237,14 @@ particularly useful if your custom configuration defines fewer releases
|
|||||||
or layers than the default fixture files.
|
or layers than the default fixture files.
|
||||||
|
|
||||||
The following example sets "name" to "CUSTOM_XML_ONLY" and its value to
|
The following example sets "name" to "CUSTOM_XML_ONLY" and its value to
|
||||||
"True". <object model="orm.toastersetting" pk="99"> <field
|
"True".
|
||||||
type="CharField" name="name">CUSTOM_XML_ONLY</field> <field
|
|
||||||
type="CharField" name="value">True</field> </object>
|
.. code-block:: xml
|
||||||
|
|
||||||
|
<object model="orm.toastersetting" pk="99">
|
||||||
|
<field type="CharField" name="name">CUSTOM_XML_ONLY</field>
|
||||||
|
<field type="CharField" name="value">True</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
Understanding Fixture File Format
|
Understanding Fixture File Format
|
||||||
---------------------------------
|
---------------------------------
|
||||||
@@ -244,10 +262,17 @@ Defining the Default Distro and Other Values
|
|||||||
This section defines the default distro value for new projects. By
|
This section defines the default distro value for new projects. By
|
||||||
default, it reserves the first Toaster Setting record "1". The following
|
default, it reserves the first Toaster Setting record "1". The following
|
||||||
demonstrates how to set the project default value for
|
demonstrates how to set the project default value for
|
||||||
:term:`DISTRO`: <!-- Set the project
|
:term:`DISTRO`:
|
||||||
default value for DISTRO --> <object model="orm.toastersetting" pk="1">
|
|
||||||
<field type="CharField" name="name">DEFCONF_DISTRO</field> <field
|
.. code-block:: xml
|
||||||
type="CharField" name="value">poky</field> </object> You can override
|
|
||||||
|
<!-- Set the project default value for DISTRO -->
|
||||||
|
<object model="orm.toastersetting" pk="1">
|
||||||
|
<field type="CharField" name="name">DEFCONF_DISTRO</field>
|
||||||
|
<field type="CharField" name="value">poky</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
|
You can override
|
||||||
other default project values by adding additional Toaster Setting
|
other default project values by adding additional Toaster Setting
|
||||||
sections such as any of the settings coming from the ``settings.xml``
|
sections such as any of the settings coming from the ``settings.xml``
|
||||||
file. Also, you can add custom values that are included in the BitBake
|
file. Also, you can add custom values that are included in the BitBake
|
||||||
@@ -258,40 +283,53 @@ Defining BitBake Version
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The following defines which version of BitBake is used for the following
|
The following defines which version of BitBake is used for the following
|
||||||
release selection: <!-- Bitbake versions which correspond to the
|
release selection:
|
||||||
metadata release --> <object model="orm.bitbakeversion" pk="1"> <field
|
|
||||||
type="CharField" name="name">rocko</field> <field type="CharField"
|
.. code-block:: xml
|
||||||
name="giturl">git://git.yoctoproject.org/poky</field> <field
|
|
||||||
type="CharField" name="branch">rocko</field> <field type="CharField"
|
<!-- Bitbake versions which correspond to the metadata release -->
|
||||||
name="dirpath">bitbake</field> </object>
|
<object model="orm.bitbakeversion" pk="1">
|
||||||
|
<field type="CharField" name="name">&DISTRO_NAME_NO_CAP;</field>
|
||||||
|
<field type="CharField" name="giturl">git://git.yoctoproject.org/poky</field>
|
||||||
|
<field type="CharField" name="branch">&DISTRO_NAME_NO_CAP;</field>
|
||||||
|
<field type="CharField" name="dirpath">bitbake</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
.. _defining-releases:
|
.. _defining-releases:
|
||||||
|
|
||||||
Defining Release
|
Defining Release
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The following defines the releases when you create a new project. <!--
|
The following defines the releases when you create a new project:
|
||||||
Releases available --> <object model="orm.release" pk="1"> <field
|
|
||||||
type="CharField" name="name">rocko</field> <field type="CharField"
|
.. code-block:: xml
|
||||||
name="description">Yocto Project 2.4 "Rocko"</field> <field
|
|
||||||
rel="ManyToOneRel" to="orm.bitbakeversion"
|
<!-- Releases available -->
|
||||||
name="bitbake_version">1</field> <field type="CharField"
|
<object model="orm.release" pk="1">
|
||||||
name="branch_name">rocko</field> <field type="TextField"
|
<field type="CharField" name="name">&DISTRO_NAME_NO_CAP;</field>
|
||||||
name="helptext">Toaster will run your builds using the tip of the <a
|
<field type="CharField" name="description">Yocto Project &DISTRO; "&DISTRO_NAME;"</field>
|
||||||
href="http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=rocko">Yocto
|
<field rel="ManyToOneRel" to="orm.bitbakeversion" name="bitbake_version">1</field>
|
||||||
Project Rocko branch</a>.</field> </object> The "pk" value must match
|
<field type="CharField" name="branch_name">&DISTRO_NAME_NO_CAP;</field>
|
||||||
the above respective BitBake version record.
|
<field type="TextField" name="helptext">Toaster will run your builds using the tip of the <a href="http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/?h=&DISTRO_NAME_NO_CAP;">Yocto Project &DISTRO_NAME; branch</a>.</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
|
The "pk" value must match the above respective BitBake version record.
|
||||||
|
|
||||||
Defining the Release Default Layer Names
|
Defining the Release Default Layer Names
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The following defines the default layers for each release: <!-- Default
|
The following defines the default layers for each release:
|
||||||
project layers for each release --> <object
|
|
||||||
model="orm.releasedefaultlayer" pk="1"> <field rel="ManyToOneRel"
|
.. code-block:: xml
|
||||||
to="orm.release" name="release">1</field> <field type="CharField"
|
|
||||||
name="layer_name">openembedded-core</field> </object> The 'pk' values in
|
<!-- Default project layers for each release -->
|
||||||
the example above should start at "1" and increment uniquely. You can
|
<object model="orm.releasedefaultlayer" pk="1">
|
||||||
use the same layer name in multiple releases.
|
<field rel="ManyToOneRel" to="orm.release" name="release">1</field>
|
||||||
|
<field type="CharField" name="layer_name">openembedded-core</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
|
The 'pk' values in the example above should start at "1" and increment
|
||||||
|
uniquely. You can use the same layer name in multiple releases.
|
||||||
|
|
||||||
Defining Layer Definitions
|
Defining Layer Definitions
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@@ -302,35 +340,42 @@ for each respective release. You must have one ``orm.layer`` entry for
|
|||||||
each layer. Then, with each entry you need a set of
|
each layer. Then, with each entry you need a set of
|
||||||
``orm.layer_version`` entries that connects the layer with each release
|
``orm.layer_version`` entries that connects the layer with each release
|
||||||
that includes the layer. In general all releases include the layer.
|
that includes the layer. In general all releases include the layer.
|
||||||
<object model="orm.layer" pk="1"> <field type="CharField"
|
|
||||||
name="name">openembedded-core</field> <field type="CharField"
|
.. code-block:: xml
|
||||||
name="layer_index_url"></field> <field type="CharField"
|
|
||||||
name="vcs_url">git://git.yoctoproject.org/poky</field> <field
|
<object model="orm.layer" pk="1">
|
||||||
type="CharField"
|
<field type="CharField" name="name">openembedded-core</field>
|
||||||
name="vcs_web_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky</field>
|
<field type="CharField" name="layer_index_url"></field>
|
||||||
<field type="CharField"
|
<field type="CharField" name="vcs_url">git://git.yoctoproject.org/poky</field>
|
||||||
name="vcs_web_tree_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field>
|
<field type="CharField" name="vcs_web_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky</field>
|
||||||
<field type="CharField"
|
<field type="CharField" name="vcs_web_tree_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field>
|
||||||
name="vcs_web_file_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field>
|
<field type="CharField" name="vcs_web_file_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field>
|
||||||
</object> <object model="orm.layer_version" pk="1"> <field
|
</object>
|
||||||
rel="ManyToOneRel" to="orm.layer" name="layer">1</field> <field
|
<object model="orm.layer_version" pk="1">
|
||||||
type="IntegerField" name="layer_source">0</field> <field
|
<field rel="ManyToOneRel" to="orm.layer" name="layer">1</field>
|
||||||
rel="ManyToOneRel" to="orm.release" name="release">1</field> <field
|
<field type="IntegerField" name="layer_source">0</field>
|
||||||
type="CharField" name="branch">rocko</field> <field type="CharField"
|
<field rel="ManyToOneRel" to="orm.release" name="release">1</field>
|
||||||
name="dirpath">meta</field> </object> <object model="orm.layer_version"
|
<field type="CharField" name="branch">&DISTRO_NAME_NO_CAP;</field>
|
||||||
pk="2"> <field rel="ManyToOneRel" to="orm.layer" name="layer">1</field>
|
<field type="CharField" name="dirpath">meta</field>
|
||||||
<field type="IntegerField" name="layer_source">0</field> <field
|
</object> <object model="orm.layer_version" pk="2">
|
||||||
rel="ManyToOneRel" to="orm.release" name="release">2</field> <field
|
<field rel="ManyToOneRel" to="orm.layer" name="layer">1</field>
|
||||||
type="CharField" name="branch">HEAD</field> <field type="CharField"
|
<field type="IntegerField" name="layer_source">0</field>
|
||||||
name="commit">HEAD</field> <field type="CharField"
|
<field rel="ManyToOneRel" to="orm.release" name="release">2</field>
|
||||||
name="dirpath">meta</field> </object> <object model="orm.layer_version"
|
<field type="CharField" name="branch">HEAD</field>
|
||||||
pk="3"> <field rel="ManyToOneRel" to="orm.layer" name="layer">1</field>
|
<field type="CharField" name="commit">HEAD</field>
|
||||||
<field type="IntegerField" name="layer_source">0</field> <field
|
<field type="CharField" name="dirpath">meta</field>
|
||||||
rel="ManyToOneRel" to="orm.release" name="release">3</field> <field
|
</object>
|
||||||
type="CharField" name="branch">master</field> <field type="CharField"
|
<object model="orm.layer_version" pk="3">
|
||||||
name="dirpath">meta</field> </object> The layer "pk" values above must
|
<field rel="ManyToOneRel" to="orm.layer" name="layer">1</field>
|
||||||
be unique, and typically start at "1". The layer version "pk" values
|
<field type="IntegerField" name="layer_source">0</field>
|
||||||
must also be unique across all layers, and typically start at "1".
|
<field rel="ManyToOneRel" to="orm.release" name="release">3</field>
|
||||||
|
<field type="CharField" name="branch">master</field>
|
||||||
|
<field type="CharField" name="dirpath">meta</field>
|
||||||
|
</object>
|
||||||
|
|
||||||
|
The layer "pk" values above must be unique, and typically start at "1". The
|
||||||
|
layer version "pk" values must also be unique across all layers, and typically
|
||||||
|
start at "1".
|
||||||
|
|
||||||
Remote Toaster Monitoring
|
Remote Toaster Monitoring
|
||||||
=========================
|
=========================
|
||||||
@@ -350,26 +395,53 @@ Checking Health
|
|||||||
|
|
||||||
Before you use remote Toaster monitoring, you should do a health check.
|
Before you use remote Toaster monitoring, you should do a health check.
|
||||||
To do this, ping the Toaster server using the following call to see if
|
To do this, ping the Toaster server using the following call to see if
|
||||||
it is still alive: http://host:port/health Be sure to provide values for
|
it is still alive::
|
||||||
host and port. If the server is alive, you will get the response HTML:
|
|
||||||
<!DOCTYPE html> <html lang="en"> <head><title>Toaster
|
http://host:port/health
|
||||||
Health</title></head> <body>Ok</body> </html>
|
|
||||||
|
Be sure to provide values for host and port. If the server is alive, you will
|
||||||
|
get the response HTML:
|
||||||
|
|
||||||
|
.. code-block:: html
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head><title>Toaster Health</title></head>
|
||||||
|
<body>Ok</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
Determining Status of Builds in Progress
|
Determining Status of Builds in Progress
|
||||||
----------------------------------------
|
----------------------------------------
|
||||||
|
|
||||||
Sometimes it is useful to determine the status of a build in progress.
|
Sometimes it is useful to determine the status of a build in progress.
|
||||||
To get the status of pending builds, use the following call:
|
To get the status of pending builds, use the following call::
|
||||||
http://host:port/toastergui/api/building Be sure to provide values for
|
|
||||||
host and port. The output is a JSON file that itemizes all builds in
|
http://host:port/toastergui/api/building
|
||||||
progress. This file includes the time in seconds since each respective
|
|
||||||
build started as well as the progress of the cloning, parsing, and task
|
Be sure to provide values for host and port. The output is a JSON file that
|
||||||
execution. The following is sample output for a build in progress:
|
itemizes all builds in progress. This file includes the time in seconds since
|
||||||
{"count": 1, "building": [ {"machine": "beaglebone", "seconds":
|
each respective build started as well as the progress of the cloning, parsing,
|
||||||
"463.869", "task": "927:2384", "distro": "poky", "clone": "1:1", "id":
|
and task execution. The following is sample output for a build in progress:
|
||||||
2, "start": "2017-09-22T09:31:44.887Z", "name": "20170922093200",
|
|
||||||
"parse": "818:818", "project": "my_rocko", "target":
|
.. code-block:: JSON
|
||||||
"core-image-minimal" }] } The JSON data for this query is returned in a
|
|
||||||
|
{"count": 1,
|
||||||
|
"building": [
|
||||||
|
{"machine": "beaglebone",
|
||||||
|
"seconds": "463.869",
|
||||||
|
"task": "927:2384",
|
||||||
|
"distro": "poky",
|
||||||
|
"clone": "1:1",
|
||||||
|
"id": 2,
|
||||||
|
"start": "2017-09-22T09:31:44.887Z",
|
||||||
|
"name": "20170922093200",
|
||||||
|
"parse": "818:818",
|
||||||
|
"project": "my_rocko",
|
||||||
|
"target": "core-image-minimal"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
The JSON data for this query is returned in a
|
||||||
single line. In the previous example the line has been artificially
|
single line. In the previous example the line has been artificially
|
||||||
split for readability.
|
split for readability.
|
||||||
|
|
||||||
@@ -377,14 +449,33 @@ Checking Status of Builds Completed
|
|||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
Once a build is completed, you get the status when you use the following
|
Once a build is completed, you get the status when you use the following
|
||||||
call: http://host:port/toastergui/api/builds Be sure to provide values
|
call::
|
||||||
for host and port. The output is a JSON file that itemizes all complete
|
|
||||||
builds, and includes build summary information. The following is sample
|
http://host:port/toastergui/api/builds
|
||||||
output for a completed build: {"count": 1, "builds": [ {"distro":
|
|
||||||
"poky", "errors": 0, "machine": "beaglebone", "project": "my_rocko",
|
Be sure to provide values for host and port. The output is a JSON file that
|
||||||
"stop": "2017-09-22T09:26:36.017Z", "target": "quilt-native", "seconds":
|
itemizes all complete builds, and includes build summary information. The
|
||||||
"78.193", "outcome": "Succeeded", "id": 1, "start":
|
following is sample output for a completed build:
|
||||||
"2017-09-22T09:25:17.824Z", "warnings": 1, "name": "20170922092618" }] }
|
|
||||||
|
.. code-block:: JSON
|
||||||
|
|
||||||
|
{"count": 1,
|
||||||
|
"builds": [
|
||||||
|
{"distro": "poky",
|
||||||
|
"errors": 0,
|
||||||
|
"machine": "beaglebone",
|
||||||
|
"project": "my_rocko",
|
||||||
|
"stop": "2017-09-22T09:26:36.017Z",
|
||||||
|
"target": "quilt-native",
|
||||||
|
"seconds": "78.193",
|
||||||
|
"outcome": "Succeeded",
|
||||||
|
"id": 1,
|
||||||
|
"start": "2017-09-22T09:25:17.824Z",
|
||||||
|
"warnings": 1,
|
||||||
|
"name": "20170922092618"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
The JSON data for this query is returned in a single line. In the
|
The JSON data for this query is returned in a single line. In the
|
||||||
previous example the line has been artificially split for readability.
|
previous example the line has been artificially split for readability.
|
||||||
|
|
||||||
@@ -392,22 +483,39 @@ Determining Status of a Specific Build
|
|||||||
--------------------------------------
|
--------------------------------------
|
||||||
|
|
||||||
Sometimes it is useful to determine the status of a specific build. To
|
Sometimes it is useful to determine the status of a specific build. To
|
||||||
get the status of a specific build, use the following call:
|
get the status of a specific build, use the following call::
|
||||||
http://host:port/toastergui/api/build/ID Be sure to provide values for
|
|
||||||
|
http://host:port/toastergui/api/build/ID
|
||||||
|
|
||||||
|
Be sure to provide values for
|
||||||
host, port, and ID. You can find the value for ID from the Builds
|
host, port, and ID. You can find the value for ID from the Builds
|
||||||
Completed query. See the "`Checking Status of Builds
|
Completed query. See the ":ref:`toaster-manual/toaster-manual-reference:checking status of builds completed`"
|
||||||
Completed <#checking-status-of-builds-completed>`__" section for more
|
section for more information.
|
||||||
information.
|
|
||||||
|
|
||||||
The output is a JSON file that itemizes the specific build and includes
|
The output is a JSON file that itemizes the specific build and includes
|
||||||
build summary information. The following is sample output for a specific
|
build summary information. The following is sample output for a specific
|
||||||
build: {"build": {"distro": "poky", "errors": 0, "machine":
|
build:
|
||||||
"beaglebone", "project": "my_rocko", "stop": "2017-09-22T09:26:36.017Z",
|
|
||||||
"target": "quilt-native", "seconds": "78.193", "outcome": "Succeeded",
|
.. code-block:: JSON
|
||||||
"id": 1, "start": "2017-09-22T09:25:17.824Z", "warnings": 1, "name":
|
|
||||||
"20170922092618", "cooker_log":
|
{"build":
|
||||||
"/opt/user/poky/build-toaster-2/tmp/log/cooker/beaglebone/build_20170922_022607.991.log"
|
{"distro": "poky",
|
||||||
} } The JSON data for this query is returned in a single line. In the
|
"errors": 0,
|
||||||
|
"machine": "beaglebone",
|
||||||
|
"project": "my_rocko",
|
||||||
|
"stop": "2017-09-22T09:26:36.017Z",
|
||||||
|
"target": "quilt-native",
|
||||||
|
"seconds": "78.193",
|
||||||
|
"outcome": "Succeeded",
|
||||||
|
"id": 1,
|
||||||
|
"start": "2017-09-22T09:25:17.824Z",
|
||||||
|
"warnings": 1,
|
||||||
|
"name": "20170922092618",
|
||||||
|
"cooker_log": "/opt/user/poky/build-toaster-2/tmp/log/cooker/beaglebone/build_20170922_022607.991.log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
The JSON data for this query is returned in a single line. In the
|
||||||
previous example the line has been artificially split for readability.
|
previous example the line has been artificially split for readability.
|
||||||
|
|
||||||
.. _toaster-useful-commands:
|
.. _toaster-useful-commands:
|
||||||
@@ -419,7 +527,7 @@ In addition to the web user interface and the scripts that start and
|
|||||||
stop Toaster, command-line commands exist through the ``manage.py``
|
stop Toaster, command-line commands exist through the ``manage.py``
|
||||||
management script. You can find general documentation on ``manage.py``
|
management script. You can find general documentation on ``manage.py``
|
||||||
at the
|
at the
|
||||||
`Django <https://docs.djangoproject.com/en/1.7/topics/settings/>`__
|
`Django <https://docs.djangoproject.com/en/2.2/topics/settings/>`__
|
||||||
site. However, several ``manage.py`` commands have been created that are
|
site. However, several ``manage.py`` commands have been created that are
|
||||||
specific to Toaster and are used to control configuration and back-end
|
specific to Toaster and are used to control configuration and back-end
|
||||||
tasks. You can locate these commands in the
|
tasks. You can locate these commands in the
|
||||||
@@ -446,19 +554,31 @@ tasks. You can locate these commands in the
|
|||||||
--------------
|
--------------
|
||||||
|
|
||||||
The ``buildslist`` command lists all builds that Toaster has recorded.
|
The ``buildslist`` command lists all builds that Toaster has recorded.
|
||||||
Access the command as follows: $ bitbake/lib/toaster/manage.py
|
Access the command as follows:
|
||||||
buildslist The command returns a list, which includes numeric
|
|
||||||
|
.. code-block:: shell
|
||||||
|
|
||||||
|
$ bitbake/lib/toaster/manage.py buildslist
|
||||||
|
|
||||||
|
The command returns a list, which includes numeric
|
||||||
identifications, of the builds that Toaster has recorded in the current
|
identifications, of the builds that Toaster has recorded in the current
|
||||||
database.
|
database.
|
||||||
|
|
||||||
You need to run the ``buildslist`` command first to identify existing
|
You need to run the ``buildslist`` command first to identify existing
|
||||||
builds in the database before using the
|
builds in the database before using the
|
||||||
```builddelete`` <#toaster-command-builddelete>`__ command. Here is an
|
:ref:`toaster-manual/toaster-manual-reference:\`\`builddelete\`\`` command. Here is an
|
||||||
example that assumes default repository and build directory names: $ cd
|
example that assumes default repository and build directory names:
|
||||||
~/poky/build $ python ../bitbake/lib/toaster/manage.py buildslist If
|
|
||||||
your Toaster database had only one build, the above ``buildslist``
|
.. code-block:: shell
|
||||||
command would return something like the following: 1: qemux86 poky
|
|
||||||
core-image-minimal
|
$ cd ~/poky/build
|
||||||
|
$ python ../bitbake/lib/toaster/manage.py buildslist
|
||||||
|
|
||||||
|
If your Toaster database had only one build, the above
|
||||||
|
:ref:`toaster-manual/toaster-manual-reference:\`\`buildslist\`\``
|
||||||
|
command would return something like the following::
|
||||||
|
|
||||||
|
1: qemux86 poky core-image-minimal
|
||||||
|
|
||||||
.. _toaster-command-builddelete:
|
.. _toaster-command-builddelete:
|
||||||
|
|
||||||
@@ -466,14 +586,19 @@ core-image-minimal
|
|||||||
---------------
|
---------------
|
||||||
|
|
||||||
The ``builddelete`` command deletes data associated with a build. Access
|
The ``builddelete`` command deletes data associated with a build. Access
|
||||||
the command as follows: $ bitbake/lib/toaster/manage.py builddelete
|
the command as follows:
|
||||||
build_id The command deletes all the build data for the specified
|
|
||||||
|
.. code-block::
|
||||||
|
|
||||||
|
$ bitbake/lib/toaster/manage.py builddelete build_id
|
||||||
|
|
||||||
|
The command deletes all the build data for the specified
|
||||||
build_id. This command is useful for removing old and unused data from
|
build_id. This command is useful for removing old and unused data from
|
||||||
the database.
|
the database.
|
||||||
|
|
||||||
Prior to running the ``builddelete`` command, you need to get the ID
|
Prior to running the ``builddelete`` command, you need to get the ID
|
||||||
associated with builds by using the
|
associated with builds by using the
|
||||||
```buildslist`` <#toaster-command-buildslist>`__ command.
|
:ref:`toaster-manual/toaster-manual-reference:\`\`buildslist\`\`` command.
|
||||||
|
|
||||||
.. _toaster-command-perf:
|
.. _toaster-command-perf:
|
||||||
|
|
||||||
@@ -481,9 +606,14 @@ associated with builds by using the
|
|||||||
--------
|
--------
|
||||||
|
|
||||||
The ``perf`` command measures Toaster performance. Access the command as
|
The ``perf`` command measures Toaster performance. Access the command as
|
||||||
follows: $ bitbake/lib/toaster/manage.py perf The command is a sanity
|
follows:
|
||||||
check that returns page loading times in order to identify performance
|
|
||||||
problems.
|
.. code-block:: shell
|
||||||
|
|
||||||
|
$ bitbake/lib/toaster/manage.py perf
|
||||||
|
|
||||||
|
The command is a sanity check that returns page loading times in order to
|
||||||
|
identify performance problems.
|
||||||
|
|
||||||
.. _toaster-command-checksettings:
|
.. _toaster-command-checksettings:
|
||||||
|
|
||||||
@@ -491,7 +621,12 @@ problems.
|
|||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
The ``checksettings`` command verifies existing Toaster settings. Access
|
The ``checksettings`` command verifies existing Toaster settings. Access
|
||||||
the command as follows: $ bitbake/lib/toaster/manage.py checksettings
|
the command as follows:
|
||||||
|
|
||||||
|
.. code-block:: shell
|
||||||
|
|
||||||
|
$ bitbake/lib/toaster/manage.py checksettings
|
||||||
|
|
||||||
Toaster uses settings that are based on the database to configure the
|
Toaster uses settings that are based on the database to configure the
|
||||||
building tasks. The ``checksettings`` command verifies that the database
|
building tasks. The ``checksettings`` command verifies that the database
|
||||||
settings are valid in the sense that they have the minimal information
|
settings are valid in the sense that they have the minimal information
|
||||||
@@ -499,10 +634,15 @@ needed to start a build.
|
|||||||
|
|
||||||
In order for the ``checksettings`` command to work, the database must be
|
In order for the ``checksettings`` command to work, the database must be
|
||||||
correctly set up and not have existing data. To be sure the database is
|
correctly set up and not have existing data. To be sure the database is
|
||||||
ready, you can run the following: $ bitbake/lib/toaster/manage.py
|
ready, you can run the following:
|
||||||
syncdb $ bitbake/lib/toaster/manage.py migrate orm $
|
|
||||||
bitbake/lib/toaster/manage.py migrate bldcontrol After running these
|
.. code-block:: shell
|
||||||
commands, you can run the ``checksettings`` command.
|
|
||||||
|
$ bitbake/lib/toaster/manage.py syncdb
|
||||||
|
$ bitbake/lib/toaster/manage.py migrate orm
|
||||||
|
$ bitbake/lib/toaster/manage.py migrate bldcontrol
|
||||||
|
|
||||||
|
After running these commands, you can run the ``checksettings`` command.
|
||||||
|
|
||||||
.. _toaster-command-runbuilds:
|
.. _toaster-command-runbuilds:
|
||||||
|
|
||||||
@@ -510,8 +650,13 @@ commands, you can run the ``checksettings`` command.
|
|||||||
-------------
|
-------------
|
||||||
|
|
||||||
The ``runbuilds`` command launches scheduled builds. Access the command
|
The ``runbuilds`` command launches scheduled builds. Access the command
|
||||||
as follows: $ bitbake/lib/toaster/manage.py runbuilds The ``runbuilds``
|
as follows:
|
||||||
command checks if scheduled builds exist in the database and then
|
|
||||||
launches them per schedule. The command returns after the builds start
|
.. code-block:: shell
|
||||||
but before they complete. The Toaster Logging Interface records and
|
|
||||||
|
$ bitbake/lib/toaster/manage.py runbuilds
|
||||||
|
|
||||||
|
The ``runbuilds`` command checks if scheduled builds exist in the database
|
||||||
|
and then launches them per schedule. The command returns after the builds
|
||||||
|
start but before they complete. The Toaster Logging Interface records and
|
||||||
updates the database when the builds complete.
|
updates the database when the builds complete.
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. SPDX-License-Identifier: CC-BY-2.0-UK
|
.. SPDX-License-Identifier: CC-BY-2.0-UK
|
||||||
|
.. Set default pygment highlighting to 'shell' for this document
|
||||||
|
.. highlight:: shell
|
||||||
|
|
||||||
****************************
|
****************************
|
||||||
Setting Up and Using Toaster
|
Setting Up and Using Toaster
|
||||||
@@ -8,28 +10,41 @@ Starting Toaster for Local Development
|
|||||||
======================================
|
======================================
|
||||||
|
|
||||||
Once you have set up the Yocto Project and installed the Toaster system
|
Once you have set up the Yocto Project and installed the Toaster system
|
||||||
dependencies as described in the "`Preparing to Use
|
dependencies as described in the ":ref:`toaster-manual/toaster-manual-start:Preparing to Use
|
||||||
Toaster <#toaster-manual-start>`__" chapter, you are ready to start
|
Toaster`" chapter, you are ready to start
|
||||||
Toaster.
|
Toaster.
|
||||||
|
|
||||||
Navigate to the root of your
|
Navigate to the root of your
|
||||||
:term:`Source Directory` (e.g. ``poky``): $
|
:term:`Source Directory` (e.g. ``poky``)::
|
||||||
cd poky Once in that directory, source the build environment script: $
|
|
||||||
source oe-init-build-env Next, from the build directory (e.g.
|
$ cd poky
|
||||||
``poky/build``), start Toaster using this command: $ source toaster
|
|
||||||
start You can now run your builds from the command line, or with Toaster
|
Once in that directory, source the build environment script::
|
||||||
as explained in section "`Using the Toaster Web
|
|
||||||
Interface <#using-the-toaster-web-interface>`__".
|
$ source oe-init-build-env
|
||||||
|
|
||||||
|
Next, from the build directory (e.g.
|
||||||
|
``poky/build``), start Toaster using this command::
|
||||||
|
|
||||||
|
$ source toaster start
|
||||||
|
|
||||||
|
You can now run your builds from the command line, or with Toaster
|
||||||
|
as explained in section
|
||||||
|
":ref:`toaster-manual/toaster-manual-setup-and-use:using the toaster web interface`".
|
||||||
|
|
||||||
To access the Toaster web interface, open your favorite browser and
|
To access the Toaster web interface, open your favorite browser and
|
||||||
enter the following: http://127.0.0.1:8000
|
enter the following::
|
||||||
|
|
||||||
|
http://127.0.0.1:8000
|
||||||
|
|
||||||
Setting a Different Port
|
Setting a Different Port
|
||||||
========================
|
========================
|
||||||
|
|
||||||
By default, Toaster starts on port 8000. You can use the ``WEBPORT``
|
By default, Toaster starts on port 8000. You can use the ``WEBPORT``
|
||||||
parameter to set a different port. For example, the following command
|
parameter to set a different port. For example, the following command
|
||||||
sets the port to "8400": $ source toaster start webport=8400
|
sets the port to "8400"::
|
||||||
|
|
||||||
|
$ source toaster start webport=8400
|
||||||
|
|
||||||
Setting Up Toaster Without a Web Server
|
Setting Up Toaster Without a Web Server
|
||||||
=======================================
|
=======================================
|
||||||
@@ -54,8 +69,11 @@ Toaster environment. Before closing the environment, however, you should
|
|||||||
allow a few minutes to ensure the complete transfer of its BitBake build
|
allow a few minutes to ensure the complete transfer of its BitBake build
|
||||||
statistics to the Toaster database. If you have a separate Toaster web
|
statistics to the Toaster database. If you have a separate Toaster web
|
||||||
server instance running, you can watch this command-line build’s
|
server instance running, you can watch this command-line build’s
|
||||||
progress and examine the results as soon as they are posted: $ source
|
progress and examine the results as soon as they are posted::
|
||||||
toaster start noweb $ bitbake target $ source toaster stop
|
|
||||||
|
$ source toaster start noweb
|
||||||
|
$ bitbake target
|
||||||
|
$ source toaster stop
|
||||||
|
|
||||||
Setting Up Toaster Without a Build Server
|
Setting Up Toaster Without a Build Server
|
||||||
=========================================
|
=========================================
|
||||||
@@ -69,23 +87,27 @@ disabled. Doing so is useful for the following:
|
|||||||
- Allowing only local command-line builds to be captured into the
|
- Allowing only local command-line builds to be captured into the
|
||||||
Toaster database.
|
Toaster database.
|
||||||
|
|
||||||
Use the following command to set up Toaster without a build server: $
|
Use the following command to set up Toaster without a build server::
|
||||||
source toaster start nobuild webport=port
|
|
||||||
|
$ source toaster start nobuild webport=port
|
||||||
|
|
||||||
Setting up External Access
|
Setting up External Access
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
By default, Toaster binds to the loop back address (i.e. localhost),
|
By default, Toaster binds to the loop back address (i.e. ``localhost``),
|
||||||
which does not allow access from external hosts. To allow external
|
which does not allow access from external hosts. To allow external
|
||||||
access, use the ``WEBPORT`` parameter to open an address that connects
|
access, use the ``WEBPORT`` parameter to open an address that connects
|
||||||
to the network, specifically the IP address that your NIC uses to
|
to the network, specifically the IP address that your NIC uses to
|
||||||
connect to the network. You can also bind to all IP addresses the
|
connect to the network. You can also bind to all IP addresses the
|
||||||
computer supports by using the shortcut "0.0.0.0:port".
|
computer supports by using the shortcut "0.0.0.0:port".
|
||||||
|
|
||||||
The following example binds to all IP addresses on the host: $ source
|
The following example binds to all IP addresses on the host::
|
||||||
toaster start webport=0.0.0.0:8400 This example binds to a specific IP
|
|
||||||
address on the host's NIC: $ source toaster start
|
$ source toaster start webport=0.0.0.0:8400
|
||||||
webport=192.168.1.1:8400
|
|
||||||
|
This example binds to a specific IP address on the host's NIC::
|
||||||
|
|
||||||
|
$ source toaster start webport=192.168.1.1:8400
|
||||||
|
|
||||||
The Directory for Cloning Layers
|
The Directory for Cloning Layers
|
||||||
================================
|
================================
|
||||||
@@ -126,34 +148,43 @@ parameters.
|
|||||||
To access the Django administration interface, you must create a
|
To access the Django administration interface, you must create a
|
||||||
superuser by following these steps:
|
superuser by following these steps:
|
||||||
|
|
||||||
1. If you used ``pip3``, which is recommended, to set up the Toaster
|
#. If you used ``pip3``, which is recommended, to set up the Toaster
|
||||||
system dependencies, you need be sure the local user path is in your
|
system dependencies, you need be sure the local user path is in your
|
||||||
``PATH`` list. To append the pip3 local user path, use the following
|
``PATH`` list. To append the pip3 local user path, use the following
|
||||||
command: $ export PATH=$PATH:$HOME/.local/bin
|
command::
|
||||||
|
|
||||||
2. From the directory containing the Toaster database, which by default
|
$ export PATH=$PATH:$HOME/.local/bin
|
||||||
|
|
||||||
|
#. From the directory containing the Toaster database, which by default
|
||||||
is the :term:`Build Directory`,
|
is the :term:`Build Directory`,
|
||||||
invoke the ``createsuperuser`` command from ``manage.py``: $ cd
|
invoke the ``createsuperuser`` command from ``manage.py``::
|
||||||
~/poky/build $ ../bitbake/lib/toaster/manage.py createsuperuser
|
|
||||||
|
|
||||||
3. Django prompts you for the username, which you need to provide.
|
$ cd ~/poky/build
|
||||||
|
$ ../bitbake/lib/toaster/manage.py createsuperuser
|
||||||
|
|
||||||
4. Django prompts you for an email address, which is optional.
|
#. Django prompts you for the username, which you need to provide.
|
||||||
|
|
||||||
5. Django prompts you for a password, which you must provide.
|
#. Django prompts you for an email address, which is optional.
|
||||||
|
|
||||||
6. Django prompts you to re-enter your password for verification.
|
#. Django prompts you for a password, which you must provide.
|
||||||
|
|
||||||
|
#. Django prompts you to re-enter your password for verification.
|
||||||
|
|
||||||
After completing these steps, the following confirmation message
|
After completing these steps, the following confirmation message
|
||||||
appears: Superuser created successfully.
|
appears::
|
||||||
|
|
||||||
|
Superuser created successfully.
|
||||||
|
|
||||||
Creating a superuser allows you to access the Django administration
|
Creating a superuser allows you to access the Django administration
|
||||||
interface through a browser. The URL for this interface is the same as
|
interface through a browser. The URL for this interface is the same as
|
||||||
the URL used for the Toaster instance with "/admin" on the end. For
|
the URL used for the Toaster instance with "/admin" on the end. For
|
||||||
example, if you are running Toaster locally, use the following URL:
|
example, if you are running Toaster locally, use the following URL::
|
||||||
http://127.0.0.1:8000/admin You can use the Django administration
|
|
||||||
interface to set Toaster configuration parameters such as the build
|
http://127.0.0.1:8000/admin
|
||||||
directory, layer sources, default variable values, and BitBake versions.
|
|
||||||
|
You can use the Django administration interface to set Toaster configuration
|
||||||
|
parameters such as the build directory, layer sources, default variable
|
||||||
|
values, and BitBake versions.
|
||||||
|
|
||||||
.. _toaster-setting-up-a-production-instance-of-toaster:
|
.. _toaster-setting-up-a-production-instance-of-toaster:
|
||||||
|
|
||||||
@@ -175,12 +206,10 @@ Be sure you meet the following requirements:
|
|||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
You must comply with all Apache,
|
You must comply with all Apache, ``mod-wsgi``, and Mysql requirements.
|
||||||
mod-wsgi
|
|
||||||
, and Mysql requirements.
|
|
||||||
|
|
||||||
- Have all the build requirements as described in the "`Preparing to
|
- Have all the build requirements as described in the ":ref:`toaster-manual/toaster-manual-start:Preparing to
|
||||||
Use Toaster <#toaster-manual-start>`__" chapter.
|
Use Toaster`" chapter.
|
||||||
|
|
||||||
- Have an Apache webserver.
|
- Have an Apache webserver.
|
||||||
|
|
||||||
@@ -188,17 +217,18 @@ Be sure you meet the following requirements:
|
|||||||
|
|
||||||
- Use the Mysql database server.
|
- Use the Mysql database server.
|
||||||
|
|
||||||
- If you are using Ubuntu 16.04, run the following: $ sudo apt-get
|
- If you are using Ubuntu, run the following::
|
||||||
install apache2 libapache2-mod-wsgi-py3 mysql-server python3-pip
|
|
||||||
libmysqlclient-dev
|
|
||||||
|
|
||||||
- If you are using Fedora 24 or a RedHat distribution, run the
|
$ sudo apt-get install apache2 libapache2-mod-wsgi-py3 mysql-server python3-pip libmysqlclient-dev
|
||||||
following: $ sudo dnf install httpd python3-mod_wsgi python3-pip
|
|
||||||
mariadb-server mariadb-devel python3-devel
|
|
||||||
|
|
||||||
- If you are using openSUSE Leap 42.1, run the following: $ sudo zypper
|
- If you are using Fedora or a RedHat distribution, run the
|
||||||
install apache2 apache2-mod_wsgi-python3 python3-pip mariadb
|
following::
|
||||||
mariadb-client python3-devel
|
|
||||||
|
$ sudo dnf install httpd python3-mod_wsgi python3-pip mariadb-server mariadb-devel python3-devel
|
||||||
|
|
||||||
|
- If you are using openSUSE, run the following::
|
||||||
|
|
||||||
|
$ sudo zypper install apache2 apache2-mod_wsgi-python3 python3-pip mariadb mariadb-client python3-devel
|
||||||
|
|
||||||
.. _toaster-installation-steps:
|
.. _toaster-installation-steps:
|
||||||
|
|
||||||
@@ -207,19 +237,24 @@ Installation
|
|||||||
|
|
||||||
Perform the following steps to install Toaster:
|
Perform the following steps to install Toaster:
|
||||||
|
|
||||||
1. Create toaster user and set its home directory to
|
#. Create toaster user and set its home directory to
|
||||||
``/var/www/toaster``: $ sudo /usr/sbin/useradd toaster -md
|
``/var/www/toaster``::
|
||||||
/var/www/toaster -s /bin/false $ sudo su - toaster -s /bin/bash
|
|
||||||
|
|
||||||
2. Checkout a copy of ``poky`` into the web server directory. You will
|
$ sudo /usr/sbin/useradd toaster -md /var/www/toaster -s /bin/false
|
||||||
be using ``/var/www/toaster``: $ git clone
|
$ sudo su - toaster -s /bin/bash
|
||||||
git://git.yoctoproject.org/poky $ git checkout DISTRO_NAME_NO_CAP
|
|
||||||
|
|
||||||
3. Install Toaster dependencies using the --user flag which keeps the
|
#. Checkout a copy of ``poky`` into the web server directory. You will
|
||||||
Python packages isolated from your system-provided packages: $ cd
|
be using ``/var/www/toaster``::
|
||||||
/var/www/toaster/ $ pip3 install --user -r
|
|
||||||
./poky/bitbake/toaster-requirements.txt $ pip3 install --user
|
$ git clone git://git.yoctoproject.org/poky
|
||||||
mysqlclient
|
$ git checkout &DISTRO_NAME_NO_CAP;
|
||||||
|
|
||||||
|
#. Install Toaster dependencies using the --user flag which keeps the
|
||||||
|
Python packages isolated from your system-provided packages::
|
||||||
|
|
||||||
|
$ cd /var/www/toaster/
|
||||||
|
$ pip3 install --user -r ./poky/bitbake/toaster-requirements.txt
|
||||||
|
$ pip3 install --user mysqlclient
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
@@ -227,35 +262,60 @@ Perform the following steps to install Toaster:
|
|||||||
Alternatively, you can use your operating system's package
|
Alternatively, you can use your operating system's package
|
||||||
manager to install the packages.
|
manager to install the packages.
|
||||||
|
|
||||||
4. Configure Toaster by editing
|
#. Configure Toaster by editing
|
||||||
``/var/www/toaster/poky/bitbake/lib/toaster/toastermain/settings.py``
|
``/var/www/toaster/poky/bitbake/lib/toaster/toastermain/settings.py``
|
||||||
as follows:
|
as follows:
|
||||||
|
|
||||||
- Edit the
|
- Edit the
|
||||||
`DATABASES <https://docs.djangoproject.com/en/1.11/ref/settings/#databases>`__
|
`DATABASES <https://docs.djangoproject.com/en/2.2/ref/settings/#databases>`__
|
||||||
settings: DATABASES = { 'default': { 'ENGINE':
|
settings:
|
||||||
'django.db.backends.mysql', 'NAME': 'toaster_data', 'USER':
|
|
||||||
'toaster', 'PASSWORD': 'yourpasswordhere', 'HOST': 'localhost',
|
.. code-block:: python
|
||||||
'PORT': '3306', } }
|
|
||||||
|
DATABASES = {
|
||||||
|
'default': {
|
||||||
|
'ENGINE': 'django.db.backends.mysql',
|
||||||
|
'NAME': 'toaster_data',
|
||||||
|
'USER': 'toaster',
|
||||||
|
'PASSWORD': 'yourpasswordhere',
|
||||||
|
'HOST': 'localhost',
|
||||||
|
'PORT': '3306',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
- Edit the
|
- Edit the
|
||||||
`SECRET_KEY <https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-SECRET_KEY>`__:
|
`SECRET_KEY <https://docs.djangoproject.com/en/2.2/ref/settings/#std:setting-SECRET_KEY>`__:
|
||||||
SECRET_KEY = 'your_secret_key'
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
SECRET_KEY = 'your_secret_key'
|
||||||
|
|
||||||
- Edit the
|
- Edit the
|
||||||
`STATIC_ROOT <https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-STATIC_ROOT>`__:
|
`STATIC_ROOT <https://docs.djangoproject.com/en/2.2/ref/settings/#std:setting-STATIC_ROOT>`__:
|
||||||
STATIC_ROOT = '/var/www/toaster/static_files/'
|
|
||||||
|
|
||||||
5. Add the database and user to the ``mysql`` server defined earlier: $
|
.. code-block:: python
|
||||||
mysql -u root -p mysql> CREATE DATABASE toaster_data; mysql> CREATE
|
|
||||||
USER 'toaster'@'localhost' identified by 'yourpasswordhere'; mysql>
|
|
||||||
GRANT all on toaster_data.\* to 'toaster'@'localhost'; mysql> quit
|
|
||||||
|
|
||||||
6. Get Toaster to create the database schema, default data, and gather
|
STATIC_ROOT = '/var/www/toaster/static_files/'
|
||||||
the statically-served files: $ cd /var/www/toaster/poky/ $
|
|
||||||
./bitbake/lib/toaster/manage.py migrate $ TOASTER_DIR=`pwd\`
|
#. Add the database and user to the ``mysql`` server defined earlier::
|
||||||
TEMPLATECONF='poky' \\ ./bitbake/lib/toaster/manage.py checksettings
|
|
||||||
$ ./bitbake/lib/toaster/manage.py collectstatic In the previous
|
$ mysql -u root -p
|
||||||
|
mysql> CREATE DATABASE toaster_data;
|
||||||
|
mysql> CREATE USER 'toaster'@'localhost' identified by 'yourpasswordhere';
|
||||||
|
mysql> GRANT all on toaster_data.\* to 'toaster'@'localhost';
|
||||||
|
mysql> quit
|
||||||
|
|
||||||
|
#. Get Toaster to create the database schema, default data, and gather
|
||||||
|
the statically-served files::
|
||||||
|
|
||||||
|
$ cd /var/www/toaster/poky/
|
||||||
|
$ ./bitbake/lib/toaster/manage.py migrate
|
||||||
|
$ TOASTER_DIR=`pwd\` TEMPLATECONF='poky' \
|
||||||
|
./bitbake/lib/toaster/manage.py checksettings
|
||||||
|
$ ./bitbake/lib/toaster/manage.py collectstatic
|
||||||
|
|
||||||
|
|
||||||
|
In the previous
|
||||||
example, from the ``poky`` directory, the ``migrate`` command
|
example, from the ``poky`` directory, the ``migrate`` command
|
||||||
ensures the database schema changes have propagated correctly (i.e.
|
ensures the database schema changes have propagated correctly (i.e.
|
||||||
migrations). The next line sets the Toaster root directory
|
migrations). The next line sets the Toaster root directory
|
||||||
@@ -264,80 +324,145 @@ Perform the following steps to install Toaster:
|
|||||||
``TEMPLATECONF`` value reflects the contents of
|
``TEMPLATECONF`` value reflects the contents of
|
||||||
``poky/.templateconf``, and by default, should include the string
|
``poky/.templateconf``, and by default, should include the string
|
||||||
"poky". For more information on the Toaster configuration file, see
|
"poky". For more information on the Toaster configuration file, see
|
||||||
the "`Configuring Toaster <#configuring-toaster>`__" section.
|
the ":ref:`toaster-manual/toaster-manual-reference:Configuring Toaster`" section.
|
||||||
|
|
||||||
This line also runs the ``checksettings`` command, which configures
|
This line also runs the ``checksettings`` command, which configures
|
||||||
the location of the Toaster :term:`Build Directory`.
|
the location of the Toaster :term:`Build Directory`.
|
||||||
The Toaster
|
The Toaster
|
||||||
root directory ``TOASTER_DIR`` determines where the Toaster build
|
root directory ``TOASTER_DIR`` determines where the Toaster build
|
||||||
directory is created on the file system. In the example above,
|
directory is created on the file system. In the example above,
|
||||||
``TOASTER_DIR`` is set as follows: /var/www/toaster/poky This
|
``TOASTER_DIR`` is set as follows::
|
||||||
setting causes the Toaster build directory to be:
|
|
||||||
/var/www/toaster/poky/build
|
/var/www/toaster/poky
|
||||||
|
|
||||||
|
|
||||||
|
This setting causes the Toaster build directory to be::
|
||||||
|
|
||||||
|
/var/www/toaster/poky/build
|
||||||
|
|
||||||
Finally, the ``collectstatic`` command is a Django framework command
|
Finally, the ``collectstatic`` command is a Django framework command
|
||||||
that collects all the statically served files into a designated
|
that collects all the statically served files into a designated
|
||||||
directory to be served up by the Apache web server as defined by
|
directory to be served up by the Apache web server as defined by
|
||||||
``STATIC_ROOT``.
|
``STATIC_ROOT``.
|
||||||
|
|
||||||
7. Test and/or use the Mysql integration with Toaster’s Django web
|
#. Test and/or use the Mysql integration with Toaster’s Django web
|
||||||
server. At this point, you can start up the normal Toaster Django
|
server. At this point, you can start up the normal Toaster Django
|
||||||
web server with the Toaster database in Mysql. You can use this web
|
web server with the Toaster database in Mysql. You can use this web
|
||||||
server to confirm that the database migration and data population
|
server to confirm that the database migration and data population
|
||||||
from the Layer Index is complete.
|
from the Layer Index is complete.
|
||||||
|
|
||||||
To start the default Toaster Django web server with the Toaster
|
To start the default Toaster Django web server with the Toaster
|
||||||
database now in Mysql, use the standard start commands: $ source
|
database now in Mysql, use the standard start commands::
|
||||||
oe-init-build-env $ source toaster start Additionally, if Django is
|
|
||||||
sufficient for your requirements, you can use it for your release
|
|
||||||
system and migrate later to Apache as your requirements change.
|
|
||||||
|
|
||||||
8. Add an Apache configuration file for Toaster to your Apache web
|
$ source oe-init-build-env
|
||||||
|
$ source toaster start
|
||||||
|
|
||||||
|
Additionally, if Django is sufficient for your requirements, you can use
|
||||||
|
it for your release system and migrate later to Apache as your
|
||||||
|
requirements change.
|
||||||
|
|
||||||
|
#. Add an Apache configuration file for Toaster to your Apache web
|
||||||
server's configuration directory. If you are using Ubuntu or Debian,
|
server's configuration directory. If you are using Ubuntu or Debian,
|
||||||
put the file here: /etc/apache2/conf-available/toaster.conf If you
|
put the file here::
|
||||||
are using Fedora or RedHat, put it here:
|
|
||||||
/etc/httpd/conf.d/toaster.conf If you are using OpenSUSE, put it
|
|
||||||
here: /etc/apache2/conf.d/toaster.conf Following is a sample Apache
|
|
||||||
configuration for Toaster you can follow: Alias /static
|
|
||||||
/var/www/toaster/static_files <Directory
|
|
||||||
/var/www/toaster/static_files> <IfModule mod_access_compat.c> Order
|
|
||||||
allow,deny Allow from all </IfModule> <IfModule
|
|
||||||
!mod_access_compat.c> Require all granted </IfModule> </Directory>
|
|
||||||
<Directory /var/www/toaster/poky/bitbake/lib/toaster/toastermain>
|
|
||||||
<Files "wsgi.py"> Require all granted </Files> </Directory>
|
|
||||||
WSGIDaemonProcess toaster_wsgi
|
|
||||||
python-path=/var/www/toaster/poky/bitbake/lib/toaster:/var/www/toaster/.local/lib/python3.4/site-packages
|
|
||||||
WSGIScriptAlias /
|
|
||||||
"/var/www/toaster/poky/bitbake/lib/toaster/toastermain/wsgi.py"
|
|
||||||
<Location /> WSGIProcessGroup toaster_wsgi </Location> If you are
|
|
||||||
using Ubuntu or Debian, you will need to enable the config and
|
|
||||||
module for Apache: $ sudo a2enmod wsgi $ sudo a2enconf toaster $
|
|
||||||
chmod +x bitbake/lib/toaster/toastermain/wsgi.py Finally, restart
|
|
||||||
Apache to make sure all new configuration is loaded. For Ubuntu,
|
|
||||||
Debian, and OpenSUSE use: $ sudo service apache2 restart For Fedora
|
|
||||||
and RedHat use: $ sudo service httpd restart
|
|
||||||
|
|
||||||
9. Prepare the systemd service to run Toaster builds. Here is a sample
|
/etc/apache2/conf-available/toaster.conf
|
||||||
configuration file for the service: [Unit] Description=Toaster
|
|
||||||
runbuilds [Service] Type=forking User=toaster
|
|
||||||
ExecStart=/usr/bin/screen -d -m -S runbuilds
|
If you are using Fedora or RedHat, put it here::
|
||||||
/var/www/toaster/poky/bitbake/lib/toaster/runbuilds-service.sh start
|
|
||||||
ExecStop=/usr/bin/screen -S runbuilds -X quit
|
/etc/httpd/conf.d/toaster.conf
|
||||||
WorkingDirectory=/var/www/toaster/poky [Install]
|
|
||||||
WantedBy=multi-user.target Prepare the ``runbuilds-service.sh``
|
If you are using OpenSUSE, put it here::
|
||||||
script that you need to place in the
|
|
||||||
|
/etc/apache2/conf.d/toaster.conf
|
||||||
|
|
||||||
|
Following is a sample Apache configuration for Toaster you can follow:
|
||||||
|
|
||||||
|
.. code-block:: apache
|
||||||
|
|
||||||
|
Alias /static /var/www/toaster/static_files
|
||||||
|
<Directory /var/www/toaster/static_files>
|
||||||
|
<IfModule mod_access_compat.c>
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</IfModule>
|
||||||
|
<IfModule !mod_access_compat.c>
|
||||||
|
Require all granted
|
||||||
|
</IfModule>
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory /var/www/toaster/poky/bitbake/lib/toaster/toastermain>
|
||||||
|
<Files "wsgi.py">
|
||||||
|
Require all granted
|
||||||
|
</Files>
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
WSGIDaemonProcess toaster_wsgi python-path=/var/www/toaster/poky/bitbake/lib/toaster:/var/www/toaster/.local/lib/python3.4/site-packages
|
||||||
|
WSGIScriptAlias / "/var/www/toaster/poky/bitbake/lib/toaster/toastermain/wsgi.py"
|
||||||
|
<Location />
|
||||||
|
WSGIProcessGroup toaster_wsgi
|
||||||
|
</Location>
|
||||||
|
|
||||||
|
|
||||||
|
If you are using Ubuntu or Debian, you will need to enable the config and
|
||||||
|
module for Apache::
|
||||||
|
|
||||||
|
$ sudo a2enmod wsgi
|
||||||
|
$ sudo a2enconf toaster
|
||||||
|
$ chmod +x bitbake/lib/toaster/toastermain/wsgi.py
|
||||||
|
|
||||||
|
Finally, restart Apache to make sure all new configuration is loaded. For Ubuntu,
|
||||||
|
Debian, and OpenSUSE use::
|
||||||
|
|
||||||
|
$ sudo service apache2 restart
|
||||||
|
|
||||||
|
For Fedora and RedHat use::
|
||||||
|
|
||||||
|
$ sudo service httpd restart
|
||||||
|
|
||||||
|
#. Prepare the systemd service to run Toaster builds. Here is a sample
|
||||||
|
configuration file for the service:
|
||||||
|
|
||||||
|
.. code-block:: ini
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Toaster runbuilds
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=forking User=toaster
|
||||||
|
ExecStart=/usr/bin/screen -d -m -S runbuilds /var/www/toaster/poky/bitbake/lib/toaster/runbuilds-service.sh start
|
||||||
|
ExecStop=/usr/bin/screen -S runbuilds -X quit
|
||||||
|
WorkingDirectory=/var/www/toaster/poky
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
|
||||||
|
|
||||||
|
Prepare the ``runbuilds-service.sh`` script that you need to place in the
|
||||||
``/var/www/toaster/poky/bitbake/lib/toaster/`` directory by setting
|
``/var/www/toaster/poky/bitbake/lib/toaster/`` directory by setting
|
||||||
up executable permissions: #!/bin/bash #export
|
up executable permissions::
|
||||||
http_proxy=http://proxy.host.com:8080 #export
|
|
||||||
https_proxy=http://proxy.host.com:8080 #export
|
|
||||||
GIT_PROXY_COMMAND=$HOME/bin/gitproxy cd ~/poky/ source
|
|
||||||
./oe-init-build-env build source ../bitbake/bin/toaster $1 noweb [
|
|
||||||
"$1" == 'start' ] && /bin/bash
|
|
||||||
|
|
||||||
10. Run the service: # service runbuilds start Since the service is
|
#!/bin/bash
|
||||||
running in a detached screen session, you can attach to it using
|
|
||||||
this command: $ sudo su - toaster $ screen -rS runbuilds You can
|
#export http_proxy=http://proxy.host.com:8080
|
||||||
detach from the service again using "Ctrl-a" followed by "d" key
|
#export https_proxy=http://proxy.host.com:8080
|
||||||
|
#export GIT_PROXY_COMMAND=$HOME/bin/gitproxy
|
||||||
|
cd ~/poky/
|
||||||
|
source ./oe-init-build-env build
|
||||||
|
source ../bitbake/bin/toaster $1 noweb
|
||||||
|
[ "$1" == 'start' ] && /bin/bash
|
||||||
|
|
||||||
|
#. Run the service::
|
||||||
|
|
||||||
|
$ sudo service runbuilds start
|
||||||
|
|
||||||
|
Since the service is running in a detached screen session, you can
|
||||||
|
attach to it using this command::
|
||||||
|
|
||||||
|
$ sudo su - toaster
|
||||||
|
$ screen -rS runbuilds
|
||||||
|
|
||||||
|
You can detach from the service again using "Ctrl-a" followed by "d" key
|
||||||
combination.
|
combination.
|
||||||
|
|
||||||
You can now open up a browser and start using Toaster.
|
You can now open up a browser and start using Toaster.
|
||||||
@@ -432,8 +557,9 @@ Additional Information About the Local Yocto Project Release
|
|||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
This section only applies if you have set up Toaster for local
|
This section only applies if you have set up Toaster for local
|
||||||
development, as explained in the "`Starting Toaster for Local
|
development, as explained in the
|
||||||
Development <#starting-toaster-for-local-development>`__" section.
|
":ref:`toaster-manual/toaster-manual-setup-and-use:starting toaster for local development`"
|
||||||
|
section.
|
||||||
|
|
||||||
When you create a project in Toaster, you will be asked to provide a
|
When you create a project in Toaster, you will be asked to provide a
|
||||||
name and to select a Yocto Project release. One of the release options
|
name and to select a Yocto Project release. One of the release options
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
.. SPDX-License-Identifier: CC-BY-2.0-UK
|
.. SPDX-License-Identifier: CC-BY-2.0-UK
|
||||||
|
.. Set default pygments highlighting to shell for this document
|
||||||
|
.. highlight:: shell
|
||||||
|
|
||||||
************************
|
************************
|
||||||
Preparing to Use Toaster
|
Preparing to Use Toaster
|
||||||
@@ -14,11 +16,11 @@ Setting Up the Basic System Requirements
|
|||||||
|
|
||||||
Before you can use Toaster, you need to first set up your build system
|
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
|
to run the Yocto Project. To do this, follow the instructions in the
|
||||||
"`Preparing the Build
|
":ref:`dev-manual/dev-manual-start:preparing the build host`" section of
|
||||||
Host <&YOCTO_DOCS_DEV_URL;#dev-preparing-the-build-host>`__" section of
|
|
||||||
the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might
|
the Yocto Project Development Tasks Manual. For Ubuntu/Debian, you might
|
||||||
also need to do an additional install of pip3. $ sudo apt-get install
|
also need to do an additional install of pip3. ::
|
||||||
python3-pip
|
|
||||||
|
$ sudo apt-get install python3-pip
|
||||||
|
|
||||||
.. _toaster-establishing-toaster-system-dependencies:
|
.. _toaster-establishing-toaster-system-dependencies:
|
||||||
|
|
||||||
@@ -39,10 +41,17 @@ Install Toaster Packages
|
|||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
You need to install the packages that Toaster requires. Use this
|
You need to install the packages that Toaster requires. Use this
|
||||||
command: $ pip3 install --user -r bitbake/toaster-requirements.txt The
|
command::
|
||||||
previous command installs the necessary Toaster modules into a local
|
|
||||||
|
$ 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
|
python 3 cache in your ``$HOME`` directory. The caches is actually
|
||||||
located in ``$HOME/.local``. To see what packages have been installed
|
located in ``$HOME/.local``. To see what packages have been installed
|
||||||
into your ``$HOME`` directory, do the following: $ pip3 list installed
|
into your ``$HOME`` directory, do the following::
|
||||||
--local If you need to remove something, the following works: $ pip3
|
|
||||||
uninstall PackageNameToUninstall
|
$ pip3 list installed --local
|
||||||
|
|
||||||
|
If you need to remove something, the following works::
|
||||||
|
|
||||||
|
$ pip3 uninstall PackageNameToUninstall
|
||||||
|
|||||||
Reference in New Issue
Block a user