mirror of
https://git.yoctoproject.org/meta-zephyr
synced 2026-01-29 21:58:41 +01:00
26 lines
759 B
Plaintext
26 lines
759 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "zephyrcore"
|
|
BBFILE_PATTERN_zephyrcore = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_zephyrcore = "6"
|
|
|
|
# This should only be incremented on significant changes that will
|
|
# cause compatibility issues with other layers
|
|
LAYERVERSION_zephyrcore = "1"
|
|
|
|
LAYERDEPENDS_zephyrcore = "core meta-python"
|
|
|
|
LAYERSERIES_COMPAT_zephyrcore = "whinlatter"
|
|
|
|
PYTHON3_NATIVE_SITEPACKAGES_DIR = "${libdir_native}/${PYTHON3_DIR}/site-packages"
|
|
|
|
addpylib ${LAYERDIR}/lib oeqa
|
|
|
|
PREFERRED_VERSION_zephyr-kernel ??= "4.2.0"
|
|
PREFERRED_VERSION_zephyr-sdk ??= "0.16.9"
|