summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-05-17 11:22:28 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-17 18:14:05 +0100
commitcf3d261f3ef8bb81477cb873df59bdb7b07fd7b7 (patch)
tree6c79df1fe9bf02de3dcd3875ba1a8f06f7cb26c7
parent211d5a3fba543141e07226ddf2bb2641eb9f1154 (diff)
downloadpoky-cf3d261f3ef8bb81477cb873df59bdb7b07fd7b7.tar.gz
documentation/bsp-guide/bsp.xml: BBFILES statement corrected.
In the '1.1.4 Layer Configuration File' section there was a BBFILES statment that used the '\' character to indicate a continuation of the command on the following line. However, the example did not use a new line. I added the hard-return to correct that in the example. (From yocto-docs rev: 185352ae2f5879a8418715053f3791b167bd6d7e) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/bsp-guide/bsp.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index 113af4964b..885e952de7 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -163,7 +163,7 @@ meta-&lt;bsp_name&gt;/binary/&lt;bootable_images&gt;
163 This optional area contains useful pre-built kernels and user-space filesystem 163 This optional area contains useful pre-built kernels and user-space filesystem
164 images appropriate to the target system. 164 images appropriate to the target system.
165 This directory contains the Application Development Toolkit (ADT) and minimal 165 This directory contains the Application Development Toolkit (ADT) and minimal
166 live images when the BSP is has been "tar-balled" and placed on the Yocto Project website. 166 live images when the BSP tarball has been created and made available in the Yocto Project website.
167 You can use these kernels and images to get a system running and quickly get started 167 You can use these kernels and images to get a system running and quickly get started
168 on development tasks. 168 on development tasks.
169 </para> 169 </para>
@@ -197,7 +197,8 @@ meta-&lt;bsp_name&gt;/conf/layer.conf
197BBPATH := "${BBPATH}:${LAYERDIR}" 197BBPATH := "${BBPATH}:${LAYERDIR}"
198 198
199# We have a recipes directory containing .bb and .bbappend files, add to BBFILES 199# We have a recipes directory containing .bb and .bbappend files, add to BBFILES
200BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ ${LAYERDIR}/recipes/*/*.bbappend" 200BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \
201 ${LAYERDIR}/recipes/*/*.bbappend"
201 202
202BBFILE_COLLECTIONS += "bsp" 203BBFILE_COLLECTIONS += "bsp"
203BBFILE_PATTERN_bsp := "^${LAYERDIR}/" 204BBFILE_PATTERN_bsp := "^${LAYERDIR}/"