diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2011-05-17 11:22:28 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-20 22:35:16 +0000 |
commit | 11355f3a7f1ae968476f449d259c8bf4ede45582 (patch) | |
tree | 1daede4bf3543ab856b28448cfa43e73fa22257a /documentation/bsp-guide | |
parent | a2283defe257efcd83f354fa5d8aa3460c77f3ca (diff) | |
download | poky-11355f3a7f1ae968476f449d259c8bf4ede45582.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: b27bfc3b7a24b09d974b503937aa02c80101bfb5)
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.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml index a67e08079e..e895e7f6ff 100644 --- a/documentation/bsp-guide/bsp.xml +++ b/documentation/bsp-guide/bsp.xml | |||
@@ -163,7 +163,7 @@ meta-<bsp_name>/binary/<bootable_images> | |||
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-<bsp_name>/conf/layer.conf | |||
197 | BBPATH := "${BBPATH}:${LAYERDIR}" | 197 | BBPATH := "${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 |
200 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ ${LAYERDIR}/recipes/*/*.bbappend" | 200 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ |
201 | ${LAYERDIR}/recipes/*/*.bbappend" | ||
201 | 202 | ||
202 | BBFILE_COLLECTIONS += "bsp" | 203 | BBFILE_COLLECTIONS += "bsp" |
203 | BBFILE_PATTERN_bsp := "^${LAYERDIR}/" | 204 | BBFILE_PATTERN_bsp := "^${LAYERDIR}/" |