From 3aadcacead0a674435415851e0f4641124c4cc77 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 3 Oct 2012 08:37:45 -0700 Subject: [PATCH] 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 Signed-off-by: Richard Purdie --- .../dev-manual/dev-manual-common-tasks.xml | 14 ++++++++++++-- 1 file 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 @@ LCONF_VERSION = "6" + BBPATH = "${TOPDIR}" BBFILES ?= "" - BBLAYERS = " \ + + BBLAYERS ?= " \ /path/to/poky/meta \ /path/to/poky/meta-yocto \ /path/to/poky/meta-yocto-bsp \ /path/to/poky/meta-mylayer \ - " + " @@ -230,6 +232,14 @@ During the processing of each conf/layer.conf file, BitBake adds the recipes, classes and configurations contained within the particular layer to the source directory. + + Removing the meta-yocto layer exposes a bug for the + current release of the Yocto Project. + If for some reason you do remove this layer from the + bblayers.conf, you must set the + LCONF_VERSION variable to "5". + See [YOCTO_#3176] + for more information.