Splice out distro configuration in own layer for compatibility
[AGL/meta-agl.git] / templates / base / bblayers.conf.sample
1 # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
2 # changes incompatibly
3 LCONF_VERSION = "6"
4
5 BBPATH = "${TOPDIR}"
6 BBFILES ?= ""
7
8 # Convenience variables usable in various configuration fragments
9 #----------------------------------
10 BCONFDIR := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)))}"
11 METADIR  := "${@os.path.abspath('##OEROOT##/..')}"
12
13 # These are the core OE + YP Layers
14 #----------------------------------
15 YOCTO_LAYERS = " \
16   ${METADIR}/poky/meta \
17   ${METADIR}/poky/meta-poky \
18   ${METADIR}/poky/meta-yocto-bsp \
19   "
20
21 # These are the AGL CORE Layers that make up the basis
22 # - they create a minimal bootable filesystem
23 #   with some automotive tools/libraries
24 #-----------------------------------------------------
25 AGL_CORE_LAYERS = " \
26   ${METADIR}/meta-agl/meta-ivi-common \
27   ${METADIR}/meta-agl/meta-agl \
28   ${METADIR}/meta-agl/meta-agl-distro \
29   ${METADIR}/meta-agl/meta-agl-bsp \
30   "
31
32 # These are the direct dependencies of the AGL CORE Layers
33 #---------------------------------------------------------
34 AGL_CORE_DEPENDENCY_LAYERS = " \
35   ${METADIR}/meta-openembedded/meta-oe \
36   ${METADIR}/meta-openembedded/meta-multimedia \
37   ${METADIR}/meta-openembedded/meta-efl \
38   ${METADIR}/meta-openembedded/meta-networking \
39   ${METADIR}/meta-openembedded/meta-python \
40   "
41
42 ####################
43 # Combine the layers
44 BBLAYERS ?= " \
45   ${AGL_CORE_DEPENDENCY_LAYERS} \
46   ${AGL_CORE_LAYERS} \
47   ${YOCTO_LAYERS} \
48   "
49
50 BBLAYERS_NON_REMOVABLE ?= " \
51   ${METADIR}/poky/meta \
52   ${METADIR}/poky/meta-poky \
53   ${METADIR}//meta-agl/meta-agl \
54   "
55
56