Initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Generates MRW settings override yaml for phosphor-settings-manager
|
||||
# The default YAML file, mrw-override-settings.yaml, is empty, therefore no
|
||||
# settings will be overwritten. To override, modify mrw-override-settings.yaml.
|
||||
SUMMARY = "Generates MRW settings override YAML for phosphor-settings-manager."
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
|
||||
DEPENDS += "mrw-native mrw-perl-tools-native"
|
||||
PR = "r1"
|
||||
|
||||
SRC_URI += "file://mrw-override-settings.yaml"
|
||||
|
||||
S = "${WORKDIR}"
|
||||
|
||||
inherit phosphor-settings-manager
|
||||
inherit mrw-xml
|
||||
inherit native
|
||||
|
||||
do_install() {
|
||||
DEST=${D}${config_datadir}
|
||||
install -D mrw-override-settings.yaml ${DEST}/mrw-override-settings.yaml
|
||||
SETTINGS=${D}${settings_datadir}
|
||||
install -d ${SETTINGS}
|
||||
# gen_settings.pl replaces any MRW variables with their value
|
||||
${bindir}/perl-native/perl \
|
||||
${bindir}/gen_settings.pl \
|
||||
-i ${mrw_datadir}/${MRW_XML} \
|
||||
-s ${DEST}/mrw-override-settings.yaml \
|
||||
-o ${SETTINGS}/mrw-settings.override.yaml \
|
||||
${MRW_EXPRESSION_VARS} \
|
||||
-f
|
||||
}
|
||||
|
||||
MRW_EXPRESSION_VARS ?= ""
|
||||
Reference in New Issue
Block a user