# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
LCONF_VERSION = "6"
BBPATH = "${TOPDIR}"
BBFILES ?= ""
# Convenience variables usable in various configuration fragments
#----------------------------------
BCONFDIR := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)))}"
METADIR := "${@os.path.abspath('##OEROOT##')}"
# These are the core OE + YP Layers
#----------------------------------
YOCTO_LAYERS = " \
${METADIR}/poky/meta \
${METADIR}/poky/meta-poky \
${METADIR}/poky/meta-yocto-bsp \
${METADIR}/meta-openembedded/meta-oe \
${METADIR}/meta-openembedded/meta-python \
${METADIR}/meta-openembedded/meta-filesystems \
${METADIR}/meta-openembedded/meta-networking \
"
####################
# Combine the layers
BBLAYERS ?= " \
${YOCTO_LAYERS} \
"
BBLAYERS_NON_REMOVABLE ?= " \
${METADIR}/poky/meta \
${METADIR}/poky/meta-poky \
"