diff options
-rw-r--r-- | documentation/poky-ref-manual/bsp.xml | 6 | ||||
-rw-r--r-- | documentation/poky-ref-manual/extendpoky.xml | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/documentation/poky-ref-manual/bsp.xml b/documentation/poky-ref-manual/bsp.xml index e0ca31732b..9982f9e739 100644 --- a/documentation/poky-ref-manual/bsp.xml +++ b/documentation/poky-ref-manual/bsp.xml | |||
@@ -105,8 +105,8 @@ meta-bsp/prebuilds/ | |||
105 | # We have a conf directory, add to BBPATH | 105 | # We have a conf directory, add to BBPATH |
106 | BBPATH := "${BBPATH}${LAYERDIR}" | 106 | BBPATH := "${BBPATH}${LAYERDIR}" |
107 | 107 | ||
108 | # We have a packages directory, add to BBFILES | 108 | # We have a recipes directory containing .bb and .bbappend files, add to BBFILES |
109 | BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb" | 109 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes/*/*.bb ${LAYERDIR}/recipes/*/*.bbappend" |
110 | 110 | ||
111 | BBFILE_COLLECTIONS += "bsp" | 111 | BBFILE_COLLECTIONS += "bsp" |
112 | BBFILE_PATTERN_bsp := "^${LAYERDIR}/" | 112 | BBFILE_PATTERN_bsp := "^${LAYERDIR}/" |
@@ -115,7 +115,7 @@ BBFILE_PRIORITY_bsp = "5" | |||
115 | </para> | 115 | </para> |
116 | 116 | ||
117 | <para> | 117 | <para> |
118 | which simply makes bitbake aware of the packages and conf directories. | 118 | which simply makes bitbake aware of the recipes and conf directories. |
119 | </para> | 119 | </para> |
120 | 120 | ||
121 | <para> | 121 | <para> |
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}/" |