summaryrefslogtreecommitdiffstats
path: root/meta-phosphor/recipes-phosphor/leds/phosphor-led-manager-config-mrw-native.bb
blob: 920f6374530b78ce91333a8dd5a1f6b57dafb2b6 (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
SUMMARY = "Phosphor LED Group Management with MRW generated data"
PR = "r1"

inherit native
inherit obmc-phosphor-utils
inherit obmc-phosphor-license
inherit mrw-xml

PROVIDES += "virtual/phosphor-led-manager-config-native"
DEPENDS += "mrw-native mrw-perl-tools-native"

# Generate a YAML files based on MRW input
do_install_append() {
    USE_MRW="${@df_enabled(d, 'obmc-mrw', 'yes')}"
    DEST=${D}${datadir}/phosphor-led-manager

    if [ "${USE_MRW}" = "yes" ]; then
        install -d ${DEST}/
        ${STAGING_BINDIR_NATIVE}/perl-native/perl \
        ${STAGING_BINDIR_NATIVE}/gen_led_groups.pl \
        -i ${mrw_datadir}/${MRW_XML} \
        -o ${DEST}/led.yaml
    fi
}
OpenPOWER on IntegriCloud