diff options
Diffstat (limited to 'documentation/toaster-manual/reference.rst')
-rw-r--r-- | documentation/toaster-manual/reference.rst | 637 |
1 files changed, 637 insertions, 0 deletions
diff --git a/documentation/toaster-manual/reference.rst b/documentation/toaster-manual/reference.rst new file mode 100644 index 0000000000..c3f0fef0a2 --- /dev/null +++ b/documentation/toaster-manual/reference.rst | |||
@@ -0,0 +1,637 @@ | |||
1 | .. SPDX-License-Identifier: CC-BY-SA-2.0-UK | ||
2 | |||
3 | ********************** | ||
4 | Concepts and Reference | ||
5 | ********************** | ||
6 | |||
7 | In order to configure and use Toaster, you should understand some | ||
8 | concepts and have some basic command reference material available. This | ||
9 | final chapter provides conceptual information on layer sources, | ||
10 | releases, and JSON configuration files. Also provided is a quick look at | ||
11 | some useful ``manage.py`` commands that are Toaster-specific. | ||
12 | Information on ``manage.py`` commands does exist across the Web and the | ||
13 | information in this manual by no means attempts to provide a command | ||
14 | comprehensive reference. | ||
15 | |||
16 | Layer Source | ||
17 | ============ | ||
18 | |||
19 | In general, a "layer source" is a source of information about existing | ||
20 | layers. In particular, we are concerned with layers that you can use | ||
21 | with the Yocto Project and Toaster. This chapter describes a particular | ||
22 | type of layer source called a "layer index." | ||
23 | |||
24 | A layer index is a web application that contains information about a set | ||
25 | of custom layers. A good example of an existing layer index is the | ||
26 | OpenEmbedded Layer Index. A public instance of this layer index exists | ||
27 | at http://layers.openembedded.org. You can find the code for this | ||
28 | layer index's web application at :yocto_git:`/layerindex-web/`. | ||
29 | |||
30 | When you tie a layer source into Toaster, it can query the layer source | ||
31 | through a | ||
32 | `REST <http://en.wikipedia.org/wiki/Representational_state_transfer>`__ | ||
33 | API, store the information about the layers in the Toaster database, and | ||
34 | then show the information to users. Users are then able to view that | ||
35 | information and build layers from Toaster itself without worrying about | ||
36 | cloning or editing the BitBake layers configuration file | ||
37 | ``bblayers.conf``. | ||
38 | |||
39 | Tying a layer source into Toaster is convenient when you have many | ||
40 | custom layers that need to be built on a regular basis by a community of | ||
41 | developers. In fact, Toaster comes pre-configured with the OpenEmbedded | ||
42 | Metadata Index. | ||
43 | |||
44 | .. note:: | ||
45 | |||
46 | You do not have to use a layer source to use Toaster. Tying into a | ||
47 | layer source is optional. | ||
48 | |||
49 | Setting Up and Using a Layer Source | ||
50 | ----------------------------------- | ||
51 | |||
52 | To use your own layer source, you need to set up the layer source and | ||
53 | then tie it into Toaster. This section describes how to tie into a layer | ||
54 | index in a manner similar to the way Toaster ties into the OpenEmbedded | ||
55 | Metadata Index. | ||
56 | |||
57 | Understanding Your Layers | ||
58 | ~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
59 | |||
60 | The obvious first step for using a layer index is to have several custom | ||
61 | layers that developers build and access using the Yocto Project on a | ||
62 | regular basis. This set of layers needs to exist and you need to be | ||
63 | familiar with where they reside. You will need that information when you | ||
64 | set up the code for the web application that "hooks" into your set of | ||
65 | layers. | ||
66 | |||
67 | For general information on layers, see the | ||
68 | ":ref:`overview-manual/overview-manual-yp-intro:the yocto project layer model`" | ||
69 | section in the Yocto Project Overview and Concepts Manual. For information on how | ||
70 | to create layers, see the ":ref:`dev-manual/dev-manual-common-tasks:understanding and creating layers`" | ||
71 | section in the Yocto Project Development Tasks Manual. | ||
72 | |||
73 | Configuring Toaster to Hook Into Your Layer Index | ||
74 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
75 | |||
76 | If you want Toaster to use your layer index, you must host the web | ||
77 | application in a server to which Toaster can connect. You also need to | ||
78 | give Toaster the information about your layer index. In other words, you | ||
79 | have to configure Toaster to use your layer index. This section | ||
80 | describes two methods by which you can configure and use your layer | ||
81 | index. | ||
82 | |||
83 | In the previous section, the code for the OpenEmbedded Metadata Index | ||
84 | (i.e. http://layers.openembedded.org) was referenced. You can use | ||
85 | this code, which is at :yocto_git:`/layerindex-web/`, as a base to create | ||
86 | your own layer index. | ||
87 | |||
88 | Use the Administration Interface | ||
89 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
90 | |||
91 | Access the administration interface through a browser by entering the | ||
92 | URL of your Toaster instance and adding "``/admin``" to the end of the | ||
93 | URL. As an example, if you are running Toaster locally, use the | ||
94 | following URL:: | ||
95 | |||
96 | http://127.0.0.1:8000/admin | ||
97 | |||
98 | The administration interface has a "Layer sources" section that includes | ||
99 | an "Add layer source" button. Click that button and provide the required | ||
100 | information. Make sure you select "layerindex" as the layer source type. | ||
101 | |||
102 | Use the Fixture Feature | ||
103 | ^^^^^^^^^^^^^^^^^^^^^^^ | ||
104 | |||
105 | The Django fixture feature overrides the default layer server when you | ||
106 | use it to specify a custom URL. To use the fixture feature, create (or | ||
107 | edit) the file ``bitbake/lib/toaster.orm/fixtures/custom.xml``, and then | ||
108 | set the following Toaster setting to your custom URL: | ||
109 | |||
110 | .. code-block:: xml | ||
111 | |||
112 | <?xml version="1.0" ?> | ||
113 | <django-objects version="1.0"> | ||
114 | <object model="orm.toastersetting" pk="100"> | ||
115 | <field name="name" type="CharField">CUSTOM_LAYERINDEX_SERVER</field> | ||
116 | <field name="value" type="CharField">https://layers.my_organization.org/layerindex/branch/master/layers/</field> | ||
117 | </object> | ||
118 | <django-objects> | ||
119 | |||
120 | When you start Toaster for the first time, or | ||
121 | if you delete the file ``toaster.sqlite`` and restart, the database will | ||
122 | populate cleanly from this layer index server. | ||
123 | |||
124 | Once the information has been updated, verify the new layer information | ||
125 | is available by using the Toaster web interface. To do that, visit the | ||
126 | "All compatible layers" page inside a Toaster project. The layers from | ||
127 | your layer source should be listed there. | ||
128 | |||
129 | If you change the information in your layer index server, refresh the | ||
130 | Toaster database by running the following command: | ||
131 | |||
132 | .. code-block:: shell | ||
133 | |||
134 | $ bitbake/lib/toaster/manage.py lsupdates | ||
135 | |||
136 | |||
137 | If Toaster can reach the API URL, you should see a message telling you that | ||
138 | Toaster is updating the layer source information. | ||
139 | |||
140 | Releases | ||
141 | ======== | ||
142 | |||
143 | When you create a Toaster project using the web interface, you are asked | ||
144 | to choose a "Release." In the context of Toaster, the term "Release" | ||
145 | refers to a set of layers and a BitBake version the OpenEmbedded build | ||
146 | system uses to build something. As shipped, Toaster is pre-configured | ||
147 | with releases that correspond to Yocto Project release branches. | ||
148 | However, you can modify, delete, and create new releases according to | ||
149 | your needs. This section provides some background information on | ||
150 | releases. | ||
151 | |||
152 | Pre-Configured Releases | ||
153 | ----------------------- | ||
154 | |||
155 | As shipped, Toaster is configured to use a specific set of releases. Of | ||
156 | course, you can always configure Toaster to use any release. For | ||
157 | example, you might want your project to build against a specific commit | ||
158 | of any of the "out-of-the-box" releases. Or, you might want your project | ||
159 | to build against different revisions of OpenEmbedded and BitBake. | ||
160 | |||
161 | As shipped, Toaster is configured to work with the following releases: | ||
162 | |||
163 | - *Yocto Project &DISTRO; "&DISTRO_NAME;" or OpenEmbedded "&DISTRO_NAME;":* | ||
164 | This release causes your Toaster projects to build against the head | ||
165 | of the &DISTRO_NAME_NO_CAP; branch at | ||
166 | :yocto_git:`/poky/log/?h=&DISTRO_NAME_NO_CAP;` or | ||
167 | :oe_git:`/openembedded-core/commit/?h=&DISTRO_NAME_NO_CAP;`. | ||
168 | |||
169 | - *Yocto Project "Master" or OpenEmbedded "Master":* This release | ||
170 | causes your Toaster Projects to build against the head of the master | ||
171 | branch, which is where active development takes place, at | ||
172 | :yocto_git:`/poky/log/` or :oe_git:`/openembedded-core/log/`. | ||
173 | |||
174 | - *Local Yocto Project or Local OpenEmbedded:* This release causes your | ||
175 | Toaster Projects to build against the head of the ``poky`` or | ||
176 | ``openembedded-core`` clone you have local to the machine running | ||
177 | Toaster. | ||
178 | |||
179 | Configuring Toaster | ||
180 | =================== | ||
181 | |||
182 | In order to use Toaster, you must configure the database with the | ||
183 | default content. The following subsections describe various aspects of | ||
184 | Toaster configuration. | ||
185 | |||
186 | Configuring the Workflow | ||
187 | ------------------------ | ||
188 | |||
189 | The ``bldcontrol/management/commands/checksettings.py`` file controls | ||
190 | workflow configuration. The following steps outline the process to | ||
191 | initially populate this database. | ||
192 | |||
193 | 1. The default project settings are set from | ||
194 | ``orm/fixtures/settings.xml``. | ||
195 | |||
196 | 2. The default project distro and layers are added from | ||
197 | ``orm/fixtures/poky.xml`` if poky is installed. If poky is not | ||
198 | installed, they are added from ``orm/fixtures/oe-core.xml``. | ||
199 | |||
200 | 3. If the ``orm/fixtures/custom.xml`` file exists, then its values are | ||
201 | added. | ||
202 | |||
203 | 4. The layer index is then scanned and added to the database. | ||
204 | |||
205 | Once these steps complete, Toaster is set up and ready to use. | ||
206 | |||
207 | Customizing Pre-Set Data | ||
208 | ------------------------ | ||
209 | |||
210 | The pre-set data for Toaster is easily customizable. You can create the | ||
211 | ``orm/fixtures/custom.xml`` file to customize the values that go into to | ||
212 | the database. Customization is additive, and can either extend or | ||
213 | completely replace the existing values. | ||
214 | |||
215 | You use the ``orm/fixtures/custom.xml`` file to change the default | ||
216 | project settings for the machine, distro, file images, and layers. When | ||
217 | creating a new project, you can use the file to define the offered | ||
218 | alternate project release selections. For example, you can add one or | ||
219 | more additional selections that present custom layer sets or distros, | ||
220 | and any other local or proprietary content. | ||
221 | |||
222 | Additionally, you can completely disable the content from the | ||
223 | ``oe-core.xml`` and ``poky.xml`` files by defining the section shown | ||
224 | below in the ``settings.xml`` file. For example, this option is | ||
225 | particularly useful if your custom configuration defines fewer releases | ||
226 | or layers than the default fixture files. | ||
227 | |||
228 | The following example sets "name" to "CUSTOM_XML_ONLY" and its value to | ||
229 | "True". | ||
230 | |||
231 | .. code-block:: xml | ||
232 | |||
233 | <object model="orm.toastersetting" pk="99"> | ||
234 | <field type="CharField" name="name">CUSTOM_XML_ONLY</field> | ||
235 | <field type="CharField" name="value">True</field> | ||
236 | </object> | ||
237 | |||
238 | Understanding Fixture File Format | ||
239 | --------------------------------- | ||
240 | |||
241 | The following is an overview of the file format used by the | ||
242 | ``oe-core.xml``, ``poky.xml``, and ``custom.xml`` files. | ||
243 | |||
244 | The following subsections describe each of the sections in the fixture | ||
245 | files, and outline an example section of the XML code. you can use to | ||
246 | help understand this information and create a local ``custom.xml`` file. | ||
247 | |||
248 | Defining the Default Distro and Other Values | ||
249 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
250 | |||
251 | This section defines the default distro value for new projects. By | ||
252 | default, it reserves the first Toaster Setting record "1". The following | ||
253 | demonstrates how to set the project default value for | ||
254 | :term:`DISTRO`: | ||
255 | |||
256 | .. code-block:: xml | ||
257 | |||
258 | <!-- Set the project default value for DISTRO --> | ||
259 | <object model="orm.toastersetting" pk="1"> | ||
260 | <field type="CharField" name="name">DEFCONF_DISTRO</field> | ||
261 | <field type="CharField" name="value">poky</field> | ||
262 | </object> | ||
263 | |||
264 | You can override | ||
265 | other default project values by adding additional Toaster Setting | ||
266 | sections such as any of the settings coming from the ``settings.xml`` | ||
267 | file. Also, you can add custom values that are included in the BitBake | ||
268 | environment. The "pk" values must be unique. By convention, values that | ||
269 | set default project values have a "DEFCONF" prefix. | ||
270 | |||
271 | Defining BitBake Version | ||
272 | ~~~~~~~~~~~~~~~~~~~~~~~~ | ||
273 | |||
274 | The following defines which version of BitBake is used for the following | ||
275 | release selection: | ||
276 | |||
277 | .. code-block:: xml | ||
278 | |||
279 | <!-- Bitbake versions which correspond to the metadata release --> | ||
280 | <object model="orm.bitbakeversion" pk="1"> | ||
281 | <field type="CharField" name="name">&DISTRO_NAME_NO_CAP;</field> | ||
282 | <field type="CharField" name="giturl">git://git.yoctoproject.org/poky</field> | ||
283 | <field type="CharField" name="branch">&DISTRO_NAME_NO_CAP;</field> | ||
284 | <field type="CharField" name="dirpath">bitbake</field> | ||
285 | </object> | ||
286 | |||
287 | Defining Release | ||
288 | ~~~~~~~~~~~~~~~~ | ||
289 | |||
290 | The following defines the releases when you create a new project: | ||
291 | |||
292 | .. code-block:: xml | ||
293 | |||
294 | <!-- Releases available --> | ||
295 | <object model="orm.release" pk="1"> | ||
296 | <field type="CharField" name="name">&DISTRO_NAME_NO_CAP;</field> | ||
297 | <field type="CharField" name="description">Yocto Project &DISTRO; "&DISTRO_NAME;"</field> | ||
298 | <field rel="ManyToOneRel" to="orm.bitbakeversion" name="bitbake_version">1</field> | ||
299 | <field type="CharField" name="branch_name">&DISTRO_NAME_NO_CAP;</field> | ||
300 | <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> | ||
301 | </object> | ||
302 | |||
303 | The "pk" value must match the above respective BitBake version record. | ||
304 | |||
305 | Defining the Release Default Layer Names | ||
306 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
307 | |||
308 | The following defines the default layers for each release: | ||
309 | |||
310 | .. code-block:: xml | ||
311 | |||
312 | <!-- Default project layers for each release --> | ||
313 | <object model="orm.releasedefaultlayer" pk="1"> | ||
314 | <field rel="ManyToOneRel" to="orm.release" name="release">1</field> | ||
315 | <field type="CharField" name="layer_name">openembedded-core</field> | ||
316 | </object> | ||
317 | |||
318 | The 'pk' values in the example above should start at "1" and increment | ||
319 | uniquely. You can use the same layer name in multiple releases. | ||
320 | |||
321 | Defining Layer Definitions | ||
322 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
323 | |||
324 | Layer definitions are the most complex. The following defines each of | ||
325 | the layers, and then defines the exact layer version of the layer used | ||
326 | for each respective release. You must have one ``orm.layer`` entry for | ||
327 | each layer. Then, with each entry you need a set of | ||
328 | ``orm.layer_version`` entries that connects the layer with each release | ||
329 | that includes the layer. In general all releases include the layer. | ||
330 | |||
331 | .. code-block:: xml | ||
332 | |||
333 | <object model="orm.layer" pk="1"> | ||
334 | <field type="CharField" name="name">openembedded-core</field> | ||
335 | <field type="CharField" name="layer_index_url"></field> | ||
336 | <field type="CharField" name="vcs_url">git://git.yoctoproject.org/poky</field> | ||
337 | <field type="CharField" name="vcs_web_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky</field> | ||
338 | <field type="CharField" name="vcs_web_tree_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field> | ||
339 | <field type="CharField" name="vcs_web_file_base_url">http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/%path%?h=%branch%</field> | ||
340 | </object> | ||
341 | <object model="orm.layer_version" pk="1"> | ||
342 | <field rel="ManyToOneRel" to="orm.layer" name="layer">1</field> | ||
343 | <field type="IntegerField" name="layer_source">0</field> | ||
344 | <field rel="ManyToOneRel" to="orm.release" name="release">1</field> | ||
345 | <field type="CharField" name="branch">&DISTRO_NAME_NO_CAP;</field> | ||
346 | <field type="CharField" name="dirpath">meta</field> | ||
347 | </object> <object model="orm.layer_version" pk="2"> | ||
348 | <field rel="ManyToOneRel" to="orm.layer" name="layer">1</field> | ||
349 | <field type="IntegerField" name="layer_source">0</field> | ||
350 | <field rel="ManyToOneRel" to="orm.release" name="release">2</field> | ||
351 | <field type="CharField" name="branch">HEAD</field> | ||
352 | <field type="CharField" name="commit">HEAD</field> | ||
353 | <field type="CharField" name="dirpath">meta</field> | ||
354 | </object> | ||
355 | <object model="orm.layer_version" pk="3"> | ||
356 | <field rel="ManyToOneRel" to="orm.layer" name="layer">1</field> | ||
357 | <field type="IntegerField" name="layer_source">0</field> | ||
358 | <field rel="ManyToOneRel" to="orm.release" name="release">3</field> | ||
359 | <field type="CharField" name="branch">master</field> | ||
360 | <field type="CharField" name="dirpath">meta</field> | ||
361 | </object> | ||
362 | |||
363 | The layer "pk" values above must be unique, and typically start at "1". The | ||
364 | layer version "pk" values must also be unique across all layers, and typically | ||
365 | start at "1". | ||
366 | |||
367 | Remote Toaster Monitoring | ||
368 | ========================= | ||
369 | |||
370 | Toaster has an API that allows remote management applications to | ||
371 | directly query the state of the Toaster server and its builds in a | ||
372 | machine-to-machine manner. This API uses the | ||
373 | `REST <http://en.wikipedia.org/wiki/Representational_state_transfer>`__ | ||
374 | interface and the transfer of JSON files. For example, you might monitor | ||
375 | a build inside a container through well supported known HTTP ports in | ||
376 | order to easily access a Toaster server inside the container. In this | ||
377 | example, when you use this direct JSON API, you avoid having web page | ||
378 | parsing against the display the user sees. | ||
379 | |||
380 | Checking Health | ||
381 | --------------- | ||
382 | |||
383 | Before you use remote Toaster monitoring, you should do a health check. | ||
384 | To do this, ping the Toaster server using the following call to see if | ||
385 | it is still alive:: | ||
386 | |||
387 | http://host:port/health | ||
388 | |||
389 | Be sure to provide values for host and port. If the server is alive, you will | ||
390 | get the response HTML: | ||
391 | |||
392 | .. code-block:: html | ||
393 | |||
394 | <!DOCTYPE html> | ||
395 | <html lang="en"> | ||
396 | <head><title>Toaster Health</title></head> | ||
397 | <body>Ok</body> | ||
398 | </html> | ||
399 | |||
400 | Determining Status of Builds in Progress | ||
401 | ---------------------------------------- | ||
402 | |||
403 | Sometimes it is useful to determine the status of a build in progress. | ||
404 | To get the status of pending builds, use the following call:: | ||
405 | |||
406 | http://host:port/toastergui/api/building | ||
407 | |||
408 | Be sure to provide values for host and port. The output is a JSON file that | ||
409 | itemizes all builds in progress. This file includes the time in seconds since | ||
410 | each respective build started as well as the progress of the cloning, parsing, | ||
411 | and task execution. The following is sample output for a build in progress: | ||
412 | |||
413 | .. code-block:: JSON | ||
414 | |||
415 | {"count": 1, | ||
416 | "building": [ | ||
417 | {"machine": "beaglebone", | ||
418 | "seconds": "463.869", | ||
419 | "task": "927:2384", | ||
420 | "distro": "poky", | ||
421 | "clone": "1:1", | ||
422 | "id": 2, | ||
423 | "start": "2017-09-22T09:31:44.887Z", | ||
424 | "name": "20170922093200", | ||
425 | "parse": "818:818", | ||
426 | "project": "my_rocko", | ||
427 | "target": "core-image-minimal" | ||
428 | }] | ||
429 | } | ||
430 | |||
431 | The JSON data for this query is returned in a | ||
432 | single line. In the previous example the line has been artificially | ||
433 | split for readability. | ||
434 | |||
435 | Checking Status of Builds Completed | ||
436 | ----------------------------------- | ||
437 | |||
438 | Once a build is completed, you get the status when you use the following | ||
439 | call:: | ||
440 | |||
441 | http://host:port/toastergui/api/builds | ||
442 | |||
443 | Be sure to provide values for host and port. The output is a JSON file that | ||
444 | itemizes all complete builds, and includes build summary information. The | ||
445 | following is sample output for a completed build: | ||
446 | |||
447 | .. code-block:: JSON | ||
448 | |||
449 | {"count": 1, | ||
450 | "builds": [ | ||
451 | {"distro": "poky", | ||
452 | "errors": 0, | ||
453 | "machine": "beaglebone", | ||
454 | "project": "my_rocko", | ||
455 | "stop": "2017-09-22T09:26:36.017Z", | ||
456 | "target": "quilt-native", | ||
457 | "seconds": "78.193", | ||
458 | "outcome": "Succeeded", | ||
459 | "id": 1, | ||
460 | "start": "2017-09-22T09:25:17.824Z", | ||
461 | "warnings": 1, | ||
462 | "name": "20170922092618" | ||
463 | }] | ||
464 | } | ||
465 | |||
466 | The JSON data for this query is returned in a single line. In the | ||
467 | previous example the line has been artificially split for readability. | ||
468 | |||
469 | Determining Status of a Specific Build | ||
470 | -------------------------------------- | ||
471 | |||
472 | Sometimes it is useful to determine the status of a specific build. To | ||
473 | get the status of a specific build, use the following call:: | ||
474 | |||
475 | http://host:port/toastergui/api/build/ID | ||
476 | |||
477 | Be sure to provide values for | ||
478 | host, port, and ID. You can find the value for ID from the Builds | ||
479 | Completed query. See the ":ref:`toaster-manual/reference:checking status of builds completed`" | ||
480 | section for more information. | ||
481 | |||
482 | The output is a JSON file that itemizes the specific build and includes | ||
483 | build summary information. The following is sample output for a specific | ||
484 | build: | ||
485 | |||
486 | .. code-block:: JSON | ||
487 | |||
488 | {"build": | ||
489 | {"distro": "poky", | ||
490 | "errors": 0, | ||
491 | "machine": "beaglebone", | ||
492 | "project": "my_rocko", | ||
493 | "stop": "2017-09-22T09:26:36.017Z", | ||
494 | "target": "quilt-native", | ||
495 | "seconds": "78.193", | ||
496 | "outcome": "Succeeded", | ||
497 | "id": 1, | ||
498 | "start": "2017-09-22T09:25:17.824Z", | ||
499 | "warnings": 1, | ||
500 | "name": "20170922092618", | ||
501 | "cooker_log": "/opt/user/poky/build-toaster-2/tmp/log/cooker/beaglebone/build_20170922_022607.991.log" | ||
502 | } | ||
503 | } | ||
504 | |||
505 | The JSON data for this query is returned in a single line. In the | ||
506 | previous example the line has been artificially split for readability. | ||
507 | |||
508 | Useful Commands | ||
509 | =============== | ||
510 | |||
511 | In addition to the web user interface and the scripts that start and | ||
512 | stop Toaster, command-line commands exist through the ``manage.py`` | ||
513 | management script. You can find general documentation on ``manage.py`` | ||
514 | at the | ||
515 | `Django <https://docs.djangoproject.com/en/2.2/topics/settings/>`__ | ||
516 | site. However, several ``manage.py`` commands have been created that are | ||
517 | specific to Toaster and are used to control configuration and back-end | ||
518 | tasks. You can locate these commands in the | ||
519 | :term:`Source Directory` (e.g. ``poky``) at | ||
520 | ``bitbake/lib/manage.py``. This section documents those commands. | ||
521 | |||
522 | .. note:: | ||
523 | |||
524 | - When using ``manage.py`` commands given a default configuration, | ||
525 | you must be sure that your working directory is set to the | ||
526 | :term:`Build Directory`. Using | ||
527 | ``manage.py`` commands from the Build Directory allows Toaster to | ||
528 | find the ``toaster.sqlite`` file, which is located in the Build | ||
529 | Directory. | ||
530 | |||
531 | - For non-default database configurations, it is possible that you | ||
532 | can use ``manage.py`` commands from a directory other than the | ||
533 | Build Directory. To do so, the ``toastermain/settings.py`` file | ||
534 | must be configured to point to the correct database backend. | ||
535 | |||
536 | ``buildslist`` | ||
537 | -------------- | ||
538 | |||
539 | The ``buildslist`` command lists all builds that Toaster has recorded. | ||
540 | Access the command as follows: | ||
541 | |||
542 | .. code-block:: shell | ||
543 | |||
544 | $ bitbake/lib/toaster/manage.py buildslist | ||
545 | |||
546 | The command returns a list, which includes numeric | ||
547 | identifications, of the builds that Toaster has recorded in the current | ||
548 | database. | ||
549 | |||
550 | You need to run the ``buildslist`` command first to identify existing | ||
551 | builds in the database before using the | ||
552 | :ref:`toaster-manual/reference:\`\`builddelete\`\`` command. Here is an | ||
553 | example that assumes default repository and build directory names: | ||
554 | |||
555 | .. code-block:: shell | ||
556 | |||
557 | $ cd ~/poky/build | ||
558 | $ python ../bitbake/lib/toaster/manage.py buildslist | ||
559 | |||
560 | If your Toaster database had only one build, the above | ||
561 | :ref:`toaster-manual/reference:\`\`buildslist\`\`` | ||
562 | command would return something like the following:: | ||
563 | |||
564 | 1: qemux86 poky core-image-minimal | ||
565 | |||
566 | ``builddelete`` | ||
567 | --------------- | ||
568 | |||
569 | The ``builddelete`` command deletes data associated with a build. Access | ||
570 | the command as follows: | ||
571 | |||
572 | .. code-block:: | ||
573 | |||
574 | $ bitbake/lib/toaster/manage.py builddelete build_id | ||
575 | |||
576 | The command deletes all the build data for the specified | ||
577 | build_id. This command is useful for removing old and unused data from | ||
578 | the database. | ||
579 | |||
580 | Prior to running the ``builddelete`` command, you need to get the ID | ||
581 | associated with builds by using the | ||
582 | :ref:`toaster-manual/reference:\`\`buildslist\`\`` command. | ||
583 | |||
584 | ``perf`` | ||
585 | -------- | ||
586 | |||
587 | The ``perf`` command measures Toaster performance. Access the command as | ||
588 | follows: | ||
589 | |||
590 | .. code-block:: shell | ||
591 | |||
592 | $ bitbake/lib/toaster/manage.py perf | ||
593 | |||
594 | The command is a sanity check that returns page loading times in order to | ||
595 | identify performance problems. | ||
596 | |||
597 | ``checksettings`` | ||
598 | ----------------- | ||
599 | |||
600 | The ``checksettings`` command verifies existing Toaster settings. Access | ||
601 | the command as follows: | ||
602 | |||
603 | .. code-block:: shell | ||
604 | |||
605 | $ bitbake/lib/toaster/manage.py checksettings | ||
606 | |||
607 | Toaster uses settings that are based on the database to configure the | ||
608 | building tasks. The ``checksettings`` command verifies that the database | ||
609 | settings are valid in the sense that they have the minimal information | ||
610 | needed to start a build. | ||
611 | |||
612 | In order for the ``checksettings`` command to work, the database must be | ||
613 | correctly set up and not have existing data. To be sure the database is | ||
614 | ready, you can run the following: | ||
615 | |||
616 | .. code-block:: shell | ||
617 | |||
618 | $ bitbake/lib/toaster/manage.py syncdb | ||
619 | $ bitbake/lib/toaster/manage.py migrate orm | ||
620 | $ bitbake/lib/toaster/manage.py migrate bldcontrol | ||
621 | |||
622 | After running these commands, you can run the ``checksettings`` command. | ||
623 | |||
624 | ``runbuilds`` | ||
625 | ------------- | ||
626 | |||
627 | The ``runbuilds`` command launches scheduled builds. Access the command | ||
628 | as follows: | ||
629 | |||
630 | .. code-block:: shell | ||
631 | |||
632 | $ bitbake/lib/toaster/manage.py runbuilds | ||
633 | |||
634 | The ``runbuilds`` command checks if scheduled builds exist in the database | ||
635 | and then launches them per schedule. The command returns after the builds | ||
636 | start but before they complete. The Toaster Logging Interface records and | ||
637 | updates the database when the builds complete. | ||