summaryrefslogtreecommitdiffstats
path: root/documentation/bsp-guide
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-12-06 13:36:03 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-07 17:13:15 +0000
commitf00ba684e0a3d1bda15a6ca06cc4cd466f1eada0 (patch)
treeb75e6f2cc535e8aaf8ea04886db8b730c1da6c20 /documentation/bsp-guide
parentac1981e41adc00b1c52995ddb874d50ed1ede73d (diff)
downloadpoky-f00ba684e0a3d1bda15a6ca06cc4cd466f1eada0.tar.gz
Documentation: dev-manual, bsp-guide, poky-ref-manual - bblayer.conf updates
Fixes [YOCTO #3176] Several places throughout the YP manual set examples are given for the bblayer.conf file. For release 1.3, a bug existed that surfaced when a user removed either the meta or meta-yocto layer from this configuration file. The bug has been fixed and the ripple effect through the YP documentation set affected several manuals. Fixes include updating the code samples that show bblayer.conf so that they now include the BBLAYERS_NON_REMOVABLE variable, a new glossary entry for the variable, and an explanation of both BBLAYER and BBLAYER_NON_REMOVABLE in the section that talks about the bblayer.conf file. (From yocto-docs rev: 904b9ec1cd6d823af0e92f6891fc7e434cf2e358) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/bsp-guide')
-rw-r--r--documentation/bsp-guide/bsp.xml24
1 files changed, 17 insertions, 7 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index a53ea98d8a..020e3508fa 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -52,12 +52,17 @@
52 definition and from it build an image. 52 definition and from it build an image.
53 Here is an example: 53 Here is an example:
54 <literallayout class='monospaced'> 54 <literallayout class='monospaced'>
55 BBLAYERS = " \ 55 BBLAYERS = ?" \
56 /usr/local/src/yocto/meta \ 56 /usr/local/src/yocto/meta \
57 /usr/local/src/yocto/meta-yocto \ 57 /usr/local/src/yocto/meta-yocto \
58 /usr/local/src/yocto/meta-yocto-bsp \ 58 /usr/local/src/yocto/meta-yocto-bsp \
59 /usr/local/src/yocto/meta-&lt;bsp_name&gt; \ 59 /usr/local/src/yocto/meta-mylayer \
60 " 60 "
61
62 BBLAYERS_NON_REMOVABLE ?= " \
63 /usr/local/src/yocto/meta \
64 /usr/local/src/yocto/meta-yocto \
65 "
61 </literallayout> 66 </literallayout>
62 </para> 67 </para>
63 68
@@ -1293,12 +1298,17 @@
1293 <filename>bblayers.conf</filename> file. 1298 <filename>bblayers.conf</filename> file.
1294 Here is an example: 1299 Here is an example:
1295 <literallayout class='monospaced'> 1300 <literallayout class='monospaced'>
1296 BBLAYERS = " \ 1301 BBLAYERS = ?" \
1297 /usr/local/src/yocto/meta \ 1302 /usr/local/src/yocto/meta \
1298 /usr/local/src/yocto/meta-yocto \ 1303 /usr/local/src/yocto/meta-yocto \
1299 /usr/local/src/yocto/meta-yocto-bsp \ 1304 /usr/local/src/yocto/meta-yocto-bsp \
1300 /usr/local/src/yocto/meta-myarm \ 1305 /usr/local/src/yocto/meta-myarm \
1301 " 1306 "
1307
1308 BBLAYERS_NON_REMOVABLE ?= " \
1309 /usr/local/src/yocto/meta \
1310 /usr/local/src/yocto/meta-yocto \
1311 "
1302 </literallayout> 1312 </literallayout>
1303 Adding the layer to this file allows the build system to build the BSP and 1313 Adding the layer to this file allows the build system to build the BSP and
1304 the <filename>yocto-kernel</filename> tool to be able to find the layer and 1314 the <filename>yocto-kernel</filename> tool to be able to find the layer and