summaryrefslogtreecommitdiffstats
path: root/ucs2-lib/doc/html/search/variables_6e.html
AgeCommit message (Expand)AuthorFilesLines
2017-05-26Initial CommitFulup Ar Foll1-0/+25
2'>42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
# 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 \
  "
#  this is added for the boards where necessary, not globally
#  ${METADIR}/poky/meta-yocto-bsp \
#
# These are the AGL CORE Layers that make up the basis
# - they create a minimal bootable filesystem
#   with some automotive tools/libraries
#-----------------------------------------------------
AGL_CORE_LAYERS = " \
  ${METADIR}/meta-agl/meta-agl-profile-core \
  ${METADIR}/meta-agl/meta-agl-distro \
  ${METADIR}/meta-agl/meta-agl-bsp \
  "

AGL_APPFW_LAYERS = " \
  ${METADIR}/meta-security \
  ${METADIR}/meta-openembedded/meta-perl \
  ${METADIR}/meta-agl/meta-security \
  ${METADIR}/meta-agl/meta-app-framework \
    "


# These are the direct dependencies of the AGL CORE Layers
#---------------------------------------------------------
AGL_CORE_DEPENDENCY_LAYERS = " \
  ${METADIR}/meta-openembedded/meta-oe \
  ${METADIR}/meta-openembedded/meta-multimedia \
  ${METADIR}/meta-openembedded/meta-networking \
  ${METADIR}/meta-openembedded/meta-python \
  ${METADIR}/meta-openembedded/meta-filesystems \
  "

# temporary ... to avoid build breakage. To move to upper layers.
AGL_TEMP_GFX_LAYERS = " \
  ${METADIR}/meta-agl/meta-agl-profile-graphical \
  ${METADIR}/meta-agl/meta-agl-profile-demo \
  "


####################
# Combine the layers
BBLAYERS ?= " \
  ${AGL_CORE_DEPENDENCY_LAYERS} \
  ${AGL_CORE_LAYERS} \
  ${AGL_APPFW_LAYERS} \
  ${AGL_TEMP_GFX_LAYERS} \
  ${YOCTO_LAYERS} \
  "

BBLAYERS_NON_REMOVABLE ?= " \
  ${METADIR}/poky/meta \
  ${METADIR}/poky/meta-poky \
  ${METADIR}/meta-agl/meta-agl-profile-core \
  ${METADIR}/meta-agl/meta-agl-distro \
  "