summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2018-04-25 10:45:24 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-24 17:16:28 +0100
commitd4aa6819565c59b791fb557b844ae6256834fa19 (patch)
tree6ff8e3cc850e5cffcf459d2ebead54017c0b0636 /documentation/dev-manual
parent06c575c7117f6cc24ae46d1e9e7a512ad0fbdb0f (diff)
downloadpoky-d4aa6819565c59b791fb557b844ae6256834fa19.tar.gz
dev-manual: Updated "Enabling Your Layer" section.
The bblayers.conf example files were out of date. Updated them. (From yocto-docs rev: fd5d75604a3ad66e56c421634f349dce3e38f609) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-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 ?= ""