mirror of
git://git.yoctoproject.org/poky
synced 2026-09-05 00:36:05 +00:00
Add a 'layer' target containing all the data that will be used to generate a generic yocto layer. (From meta-yocto rev: 198a85f61ebd6435830285b2a9b1b925aea6779e) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
373 B
Plaintext
11 lines
373 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH := "${BBPATH}:${LAYERDIR}"
|
|
|
|
# We have a recipes directory, add to BBFILES
|
|
BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "{{=layer_name}}"
|
|
BBFILE_PATTERN_{{=layer_name}} := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_{{=layer_name}} = "{{=layer_priority}}"
|