summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-10-03 08:37:45 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-10 15:21:40 +0100
commit9e21f5b1149b6ad03bab85f6ae776c76a906a7f5 (patch)
tree9ac2749a1cb0697308191bb493116c3c97fb609a /documentation
parentb5ad96f86bc226690a26bd501c21284dd1d66373 (diff)
downloadpoky-9e21f5b1149b6ad03bab85f6ae776c76a906a7f5.tar.gz
documentation: dev-manual - Updated Enabling Your Layer section
This section was out of date. I copied in the most recent version of the bblayers.conf file, which sets LCONF_VERSION to "6" now. Also, added the meta-yocto-bsp layer to the example. Additionally, I inserted a Note explaining the consequences of removing the meta-yocto layer. The note references [YOCTO_#3176] for more information. (From yocto-docs rev: 532b72c5c18b2a9a61619164bae6216c91c2ecc9) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 8f09e968d9..0383e5a2a8 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -213,13 +213,15 @@
213 <literallayout class='monospaced'> 213 <literallayout class='monospaced'>
214 LCONF_VERSION = "6" 214 LCONF_VERSION = "6"
215 215
216 BBPATH = "${TOPDIR}"
216 BBFILES ?= "" 217 BBFILES ?= ""
217 BBLAYERS = " \ 218
219 BBLAYERS ?= " \
218 /path/to/poky/meta \ 220 /path/to/poky/meta \
219 /path/to/poky/meta-yocto \ 221 /path/to/poky/meta-yocto \
220 /path/to/poky/meta-yocto-bsp \ 222 /path/to/poky/meta-yocto-bsp \
221 /path/to/poky/meta-mylayer \ 223 /path/to/poky/meta-mylayer \
222 " 224 "
223 </literallayout> 225 </literallayout>
224 </para> 226 </para>
225 227
@@ -230,6 +232,14 @@
230 During the processing of each <filename>conf/layer.conf</filename> file, BitBake adds the 232 During the processing of each <filename>conf/layer.conf</filename> file, BitBake adds the
231 recipes, classes and configurations contained within the particular layer to the source 233 recipes, classes and configurations contained within the particular layer to the source
232 directory. 234 directory.
235 <note>
236 Removing the <filename>meta-yocto</filename> layer exposes a bug for the
237 current release of the Yocto Project.
238 If for some reason you do remove this layer from the
239 <filename>bblayers.conf</filename>, you must set the
240 <filename>LCONF_VERSION</filename> variable to "5".
241 See <ulink url='https://bugzilla.yoctoproject.org/show_bug.cgi?id=3176'>[YOCTO_#3176]</ulink>
242 for more information.</note>
233 </para> 243 </para>
234 </section> 244 </section>
235 245