summaryrefslogtreecommitdiffstats
path: root/meta-phosphor/common/recipes-phosphor/dbus/phosphor-mapper-config-native.bb
blob: 976c59b9c678f6c94c13d7f479726f829bd1d367 (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
38
39
40
41
SUMMARY = "Phosphor Mapper Configuration"
DESCRIPTION = "Meta-recipe, pulling in native recipes that wish to add \
configuration files to the native /usr/share/phosphor-mapper filesystem."
HOMEPAGE = "http://github.com/openbmc/phosphor-objmgr"
PR = "r1"

inherit obmc-phosphor-license
inherit native
inherit phosphor-mapper

PHOSPHOR_MAPPER_CONFIGS = " \
        phosphor-dbus-interfaces-mapper-config-native \
        phosphor-legacy-namespace-mapper-config-native \
        "

DEPENDS += "${PHOSPHOR_MAPPER_CONFIGS}"

# To add namespaces and blacklists to the mapper configuration,
# create a native recipe in your layer, and add it to
# PHOSPHOR_MAPPER_CONFIGS with a bbappend to this recipe.
# Recipes should set one of the variables below.
# Consult phosphor-mapper.bbclass for additional information.

# Add path namespaces to be monitored.
PHOSPHOR_MAPPER_NAMESPACE = ""

# Add interfaces to be monitored.
PHOSPHOR_MAPPER_INTERFACE = ""

# Blacklist paths from being monitored.
PHOSPHOR_MAPPER_NAMESPACE_BLACKLIST = ""

# Blacklist interfaces from being monitored.
PHOSPHOR_MAPPER_INTERFACE_BLACKLIST = ""

do_install() {
        install -d ${D}/${namespace_dir}
        install -d ${D}/${interface_dir}
        install -d ${D}/${blacklist_dir}
        install -d ${D}/${interfaceblacklist_dir}
}
OpenPOWER on IntegriCloud