summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.xml
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.xml')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml16
1 files changed, 9 insertions, 7 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index e7e7b9ef97..7330247819 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -621,16 +621,18 @@
621 The following example shows how to enable a layer named 621 The following example shows how to enable a layer named
622 <filename>meta-mylayer</filename>: 622 <filename>meta-mylayer</filename>:
623 <literallayout class='monospaced'> 623 <literallayout class='monospaced'>
624 LCONF_VERSION = "6" 624 # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
625 # changes incompatibly
626 POKY_BBLAYERS_CONF_VERSION = "2"
625 627
626 BBPATH = "${TOPDIR}" 628 BBPATH = "${TOPDIR}"
627 BBFILES ?= "" 629 BBFILES ?= ""
628 630
629 BBLAYERS ?= " \ 631 BBLAYERS ?= " \
630 $HOME/poky/meta \ 632 /home/<replaceable>user</replaceable>/poky/meta \
631 $HOME/poky/meta-poky \ 633 /home/<replaceable>user</replaceable>/poky/meta-poky \
632 $HOME/poky/meta-yocto-bsp \ 634 /home/<replaceable>user</replaceable>/poky/meta-yocto-bsp \
633 $HOME/poky/meta-mylayer \ 635 /home/<replaceable>user</replaceable>/poky/meta-mylayer \
634 " 636 "
635 </literallayout> 637 </literallayout>
636 </para> 638 </para>
@@ -13638,9 +13640,9 @@ Some notes from Cal:
13638 layers are included in the <filename>bblayers.conf</filename> 13640 layers are included in the <filename>bblayers.conf</filename>
13639 file automatically: 13641 file automatically:
13640 <literallayout class='monospaced'> 13642 <literallayout class='monospaced'>
13641 # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf 13643 # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
13642 # changes incompatibly 13644 # changes incompatibly
13643 LCONF_VERSION = "6" 13645 POKY_BBLAYERS_CONF_VERSION = "2"
13644 13646
13645 BBPATH = "${TOPDIR}" 13647 BBPATH = "${TOPDIR}"
13646 BBFILES ?= "" 13648 BBFILES ?= ""