Fix remaining occurrence of meta-yocto
[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-bsp \
29   "
30
31 # These are the direct dependencies of the AGL CORE Layers
32 #---------------------------------------------------------
33 AGL_CORE_DEPENDENCY_LAYERS = " \
34   ${METADIR}/meta-openembedded/meta-oe \
35   ${METADIR}/meta-openembedded/meta-multimedia \
36   ${METADIR}/meta-openembedded/meta-efl \
37   ${METADIR}/meta-openembedded/meta-networking \
38   ${METADIR}/meta-openembedded/meta-python \
39   "
40
41 ####################
42 # Combine the layers
43 BBLAYERS ?= " \
44   ${AGL_CORE_DEPENDENCY_LAYERS} \
45   ${AGL_CORE_LAYERS} \
46   ${YOCTO_LAYERS} \
47   "
48
49 BBLAYERS_NON_REMOVABLE ?= " \
50   ${METADIR}/poky/meta \
51   ${METADIR}/poky/meta-poky \
52   ${METADIR}//meta-agl/meta-agl \
53   "
54
55