diff options
Diffstat (limited to 'documentation/bsp-guide/bsp.xml')
-rw-r--r-- | documentation/bsp-guide/bsp.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml index 5c34bfdca9..8c0a344f5a 100644 --- a/documentation/bsp-guide/bsp.xml +++ b/documentation/bsp-guide/bsp.xml | |||
@@ -312,14 +312,14 @@ | |||
312 | <para> | 312 | <para> |
313 | <literallayout class='monospaced'> | 313 | <literallayout class='monospaced'> |
314 | # We have a conf and classes directory, add to BBPATH | 314 | # We have a conf and classes directory, add to BBPATH |
315 | BBPATH := "${BBPATH}:${LAYERDIR}" | 315 | BBPATH .= ":${LAYERDIR}" |
316 | 316 | ||
317 | # We have a recipes directory, add to BBFILES | 317 | # We have recipes-* directories, add to BBFILES |
318 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*.bb \ | 318 | BBFILES += "${LAYERDIR}/recipes-*/*.bb \ |
319 | ${LAYERDIR}/recipes-*/*.bbappend" | 319 | ${LAYERDIR}/recipes-*/*.bbappend" |
320 | 320 | ||
321 | BBFILE_COLLECTIONS += "bsp" | 321 | BBFILE_COLLECTIONS += "bsp" |
322 | BBFILE_PATTERN_bsp := "^${LAYERDIR}/" | 322 | BBFILE_PATTERN_bsp = "^${LAYERDIR}/" |
323 | BBFILE_PRIORITY_bsp = "6" | 323 | BBFILE_PRIORITY_bsp = "6" |
324 | </literallayout> | 324 | </literallayout> |
325 | </para> | 325 | </para> |
@@ -329,7 +329,7 @@ | |||
329 | Bay <filename>conf/layer.conf</filename> file: | 329 | Bay <filename>conf/layer.conf</filename> file: |
330 | <literallayout class='monospaced'> | 330 | <literallayout class='monospaced'> |
331 | BBFILE_COLLECTIONS += "crownbay" | 331 | BBFILE_COLLECTIONS += "crownbay" |
332 | BBFILE_PATTERN_crownbay := "^${LAYERDIR}/" | 332 | BBFILE_PATTERN_crownbay = "^${LAYERDIR}/" |
333 | BBFILE_PRIORITY_crownbay = "6" | 333 | BBFILE_PRIORITY_crownbay = "6" |
334 | </literallayout> | 334 | </literallayout> |
335 | </para> | 335 | </para> |