meta-stx-distro: create layer and add layer.conf file

Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
Saul Wold 2020-05-12 14:46:21 -07:00 committed by babak sarashki
parent e3a9bbb373
commit db506b6b50

View File

@ -20,9 +20,9 @@ BBPATH .= ":${LAYERDIR}"
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "stx-layer"
BBFILE_PATTERN_stx-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_stx-layer = "5"
BBFILE_COLLECTIONS += "stx-distro-layer"
BBFILE_PATTERN_stx-distro-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_stx-distro-layer = "5"
LAYERDEPENDS_STX = "\
core \
@ -47,14 +47,14 @@ LAYERDEPENDS_STX_ANACONDA = "\
openembedded-layer \
"
LAYERDEPENDS_stx-layer = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-anaconda', '${LAYERDEPENDS_STX_ANACONDA}', '${LAYERDEPENDS_STX}', d)}"
LAYERDEPENDS_stx-distro-layer = "${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-anaconda', '${LAYERDEPENDS_STX_ANACONDA}', '${LAYERDEPENDS_STX}', d)}"
# This should only be incremented on significant changes that will
# cause compatibility issues with other layers
LAYERVERSION_stx-version = "1"
LAYERSERIES_COMPAT_stx-layer = "thud warrior"
LAYERVERSION_stx-distro-version = "1"
LAYERSERIES_COMPAT_stx-distro-layer = "thud warrior"
LAYER_PATH_meta-stx = "${LAYERDIR}"
LAYER_PATH_meta-stx-distro = "${LAYERDIR}"
# Masked recipes:
BBMASK += "/meta-python2/recipes-core/images/meta-python-ptest-image.bb"