aboutsummaryrefslogtreecommitdiffstats
path: root/conf/layer.conf
blob: af1d6044128bb1a50d7e32554e79d6d6e79fe50e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# We have a conf and classes directory, add to BBPATH
BBPATH =. "${LAYERDIR}:"

# We have a packages directory, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
            ${LAYERDIR}/recipes-*/*/*.bbappend"

BBFILE_COLLECTIONS += "meta-anaconda"
BBFILE_PATTERN_meta-anaconda = "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-anaconda = "10"

LAYERVERSION_meta-anaconda = "2"

LAYERSERIES_COMPAT_meta-anaconda = "thud"

LAYERDEPENDS_meta-anaconda = " \
    core \
    openembedded-layer \
    filesystems-layer \
    gnome-layer \
    meta-python \
    networking-layer \
    meta-initramfs \
"

LICENSE_PATH += "${LAYERDIR}/licenses"
SRC_DISTRIBUTE_LICENSES += "X11"
SRC_DISTRIBUTE_LICENSES += "FLTK"

LAYER_PATH_meta-anaconda = "${LAYERDIR}"

KERNEL_CLASSES_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'anaconda-support', 'anaconda_support_kernel', '', d)}"
IMAGE_CLASSES_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'anaconda-support', 'anaconda_support_image', '', d)}"

DISTRO_FEATURES_append = " \
    pam \
"