diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-19 20:18:32 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-19 20:18:32 +0100 |
commit | 6562e7cdd0bc4020cc7fb3655d433ad6f6631173 (patch) | |
tree | 7b7e7e8729f76db88f195648437e604738ee2d4b /documentation/poky-ref-manual/extendpoky.xml | |
parent | 08cec5033020f731d946058ae4ab2b708db7a295 (diff) | |
download | poky-6562e7cdd0bc4020cc7fb3655d433ad6f6631173.tar.gz |
documentation/poky-ref-manual: Update packages references to recipes and make sure bbappend files are included in example BBFILES lines
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'documentation/poky-ref-manual/extendpoky.xml')
-rw-r--r-- | documentation/poky-ref-manual/extendpoky.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml index 57e085f403..aedd7c1c68 100644 --- a/documentation/poky-ref-manual/extendpoky.xml +++ b/documentation/poky-ref-manual/extendpoky.xml | |||
@@ -606,7 +606,7 @@ BBLAYERS = " \ | |||
606 | 606 | ||
607 | <para> | 607 | <para> |
608 | Bitbake parses the conf/layer.conf of each of the layers in BBLAYERS | 608 | Bitbake parses the conf/layer.conf of each of the layers in BBLAYERS |
609 | to add the layers packages, classes and configuration to Poky. | 609 | to add the recipes, classes and configuration contained within the layer to Poky. |
610 | To create your own layer, independent of the main Poky repository, | 610 | To create your own layer, independent of the main Poky repository, |
611 | you need only create a directory with a conf/layer.conf file and | 611 | you need only create a directory with a conf/layer.conf file and |
612 | add the directory to your bblayers.conf. | 612 | add the directory to your bblayers.conf. |
@@ -617,9 +617,9 @@ BBLAYERS = " \ | |||
617 | <literallayout class='monospaced'># We have a conf and classes directory, add to BBPATH | 617 | <literallayout class='monospaced'># We have a conf and classes directory, add to BBPATH |
618 | BBPATH := "${BBPATH}:${LAYERDIR}" | 618 | BBPATH := "${BBPATH}:${LAYERDIR}" |
619 | 619 | ||
620 | # We have a packages directory, add to BBFILES | 620 | # We have a recipes directory containing both .bb and .bbappend files, add to BBFILES |
621 | BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb \ | 621 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb \ |
622 | ${LAYERDIR}/packages/*/*.bbappend" | 622 | ${LAYERDIR}/recipes/*/*.bbappend" |
623 | 623 | ||
624 | BBFILE_COLLECTIONS += "emenlow" | 624 | BBFILE_COLLECTIONS += "emenlow" |
625 | BBFILE_PATTERN_emenlow := "^${LAYERDIR}/" | 625 | BBFILE_PATTERN_emenlow := "^${LAYERDIR}/" |