summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrpjday@crashcourse.ca <rpjday@crashcourse.ca>2020-03-29 08:11:40 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-04-06 14:40:24 +0100
commit63efaa94c15597c952d5207f98e378511bb75d1e (patch)
treef9919e6784ddeda81d1f0c871e335466fcec7d7a
parent5f6e055dc8f40d3c0b989e3ffa2a068b0718a5d3 (diff)
downloadpoky-63efaa94c15597c952d5207f98e378511bb75d1e.tar.gz
dev-manual: add missing check to yocto-check-layer section
Add explanation of missing checks performed by yocto-check-layer, and fix one typo. (From yocto-docs rev: 231bb92fa4a9c044894f845b8d6d0b9498abfc49) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 9e4ca955db..5d973371fe 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -598,11 +598,19 @@
598 <filename>bitbake -e</filename>). 598 <filename>bitbake -e</filename>).
599 </para></listitem> 599 </para></listitem>
600 <listitem><para> 600 <listitem><para>
601 <filename>common.test_world</filename>:
602 Verifies that <filename>bitbake world</filename> works.
603 </para></listitem>
604 <listitem><para>
601 <filename>common.test_signatures</filename>: 605 <filename>common.test_signatures</filename>:
602 Tests to be sure that BSP and DISTRO layers do not 606 Tests to be sure that BSP and DISTRO layers do not
603 come with recipes that change signatures. 607 come with recipes that change signatures.
604 </para></listitem> 608 </para></listitem>
605 <listitem><para> 609 <listitem><para>
610 <filename>common.test_layerseries_compat</filename>:
611 Verifies layer compatibility is set properly.
612 </para></listitem>
613 <listitem><para>
606 <filename>bsp.test_bsp_defines_machines</filename>: 614 <filename>bsp.test_bsp_defines_machines</filename>:
607 Tests if a BSP layer has machine configurations. 615 Tests if a BSP layer has machine configurations.
608 </para></listitem> 616 </para></listitem>
@@ -612,11 +620,22 @@
612 machine when the layer is added. 620 machine when the layer is added.
613 </para></listitem> 621 </para></listitem>
614 <listitem><para> 622 <listitem><para>
623 <filename>bsp.test_machine_world</filename>:
624 Verifies that <filename>bitbake world</filename>
625 works regardless of which machine is selected.
626 </para></listitem>
627 <listitem><para>
628 <filename>bsp.test_machine_signatures</filename>:
629 Verifies that building for a particular machine
630 affects only the signature of tasks specific to that
631 machine.
632 </para></listitem>
633 <listitem><para>
615 <filename>distro.test_distro_defines_distros</filename>: 634 <filename>distro.test_distro_defines_distros</filename>:
616 Tests if a DISTRO layer has distro configurations. 635 Tests if a DISTRO layer has distro configurations.
617 </para></listitem> 636 </para></listitem>
618 <listitem><para> 637 <listitem><para>
619 <filename>distro.test_distro_no_set_distro</filename>: 638 <filename>distro.test_distro_no_set_distros</filename>:
620 Tests to ensure a DISTRO layer does not set the 639 Tests to ensure a DISTRO layer does not set the
621 distribution when the layer is added. 640 distribution when the layer is added.
622 </para></listitem> 641 </para></listitem>