diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-10-03 08:37:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-04 14:08:18 +0100 |
commit | 3aadcacead0a674435415851e0f4641124c4cc77 (patch) | |
tree | 94bf760ca3bdf71053cf4b89f5e176956c473254 /documentation/dev-manual | |
parent | f0db0f6627337916499708aa21188569de00dd34 (diff) | |
download | poky-3aadcacead0a674435415851e0f4641124c4cc77.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/dev-manual')
-rw-r--r-- | documentation/dev-manual/dev-manual-common-tasks.xml | 14 |
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 | ||