mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-04 06:54:36 +02:00
Internal toolchains generally don't see these, as they build that toolchain with the default behavior they expect, so it's appropriate to include these fixes with the external toolchain configuration, for now. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
14 lines
493 B
Plaintext
14 lines
493 B
Plaintext
BBPATH .= ":${LAYERDIR}"
|
|
BBFILES += "${LAYERDIR}/recipes/*/*.bb \
|
|
${LAYERDIR}/recipes/*/*.bbappend"
|
|
BBFILE_COLLECTIONS += "sourcery"
|
|
BBFILE_PRIORITY_sourcery = "10"
|
|
BBFILE_PATTERN_sourcery = "^${LAYERDIR}/"
|
|
|
|
# Let us add layer-specific bbappends which are only applied when that
|
|
# layer is included in our configuration
|
|
BBFILES += "${@' '.join('${LAYERDIR}/%s/recipes*/*/*.bbappend' % layer \
|
|
for layer in BBFILE_COLLECTIONS.split())}"
|
|
|
|
TCMODE = "external-sourcery"
|