mirror of
https://github.com/outbackdingo/meta-tanowrt.git
synced 2026-02-06 01:16:40 +00:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
# Layer version
|
|
LAYERVERSION = "1"
|
|
|
|
# We have a conf and classes directory, append to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have a recipes directory, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes*/*/*.bb \
|
|
${LAYERDIR}/recipes*/*/*.bbappend"
|
|
|
|
# Backported recipes (may be removed at next update on OE release)
|
|
BBFILES += "${LAYERDIR}/layers-backport/meta-oe/recipes*/*/*.bb \
|
|
${LAYERDIR}/layers-backport/meta-oe/recipes*/*/*.bbappend \
|
|
${LAYERDIR}/layers-backport/meta-networking/recipes*/*/*.bb \
|
|
${LAYERDIR}/layers-backport/meta-networking/recipes*/*/*.bbappend \
|
|
${LAYERDIR}/layers-backport/openembedded-core/recipes*/*/*.bb \
|
|
${LAYERDIR}/layers-backport/openembedded-core/recipes*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "tano-openwrt-layer"
|
|
BBFILE_PATTERN_tano-openwrt-layer := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_tano-openwrt-layer = "16"
|
|
|
|
LICENSE_PATH += "${LAYERDIR}/licenses"
|
|
|
|
LAYERDEPENDS_tano-openwrt-layer = "\
|
|
core \
|
|
openembedded-layer \
|
|
networking-layer \
|
|
meta-python \
|
|
"
|
|
|
|
# Compatible with OE Release 2.4 (Rocko)
|
|
LAYERSERIES_COMPAT_tano-openwrt-layer = "rocko"
|
|
|
|
#
|
|
# Dynamic layers
|
|
#
|
|
BBFILES_DYNAMIC += ""
|
|
|
|
# Set a variable to get the top of the metadata location
|
|
TANO_OPENWRT_BASE = '${@os.path.normpath("${LAYERDIR}/")}'
|