diff options
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 | ||