bblayers.conf: Remove meta-ruby and meta-efl layer
[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   "
19 #  this is added for the boards where necessary, not globally
20 #  ${METADIR}/poky/meta-yocto-bsp \
21 #
22 # These are the AGL CORE Layers that make up the basis
23 # - they create a minimal bootable filesystem
24 #   with some automotive tools/libraries
25 #-----------------------------------------------------
26 AGL_CORE_LAYERS = " \
27   ${METADIR}/meta-agl/meta-ivi-common \
28   ${METADIR}/meta-agl/meta-agl \
29   ${METADIR}/meta-agl/meta-agl-distro \
30   ${METADIR}/meta-agl/meta-agl-bsp \
31   "
32
33 # These are the direct dependencies of the AGL CORE Layers
34 #---------------------------------------------------------
35 AGL_CORE_DEPENDENCY_LAYERS = " \
36   ${METADIR}/meta-openembedded/meta-oe \
37   ${METADIR}/meta-openembedded/meta-multimedia \
38   ${METADIR}/meta-openembedded/meta-networking \
39   ${METADIR}/meta-openembedded/meta-python \
40   ${METADIR}/meta-openembedded/meta-filesystems \
41   "
42
43 ####################
44 # Combine the layers
45 BBLAYERS ?= " \
46   ${AGL_CORE_DEPENDENCY_LAYERS} \
47   ${AGL_CORE_LAYERS} \
48   ${YOCTO_LAYERS} \
49   "
50
51 BBLAYERS_NON_REMOVABLE ?= " \
52   ${METADIR}/poky/meta \
53   ${METADIR}/poky/meta-poky \
54   ${METADIR}//meta-agl/meta-agl \
55   "
56
57