blob: 3e434b52f136e913974c5d407062440f32ebae74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SUMMARY = "OEM sensor config for phosphor-host-ipmid"
PR = "r1"
inherit native
inherit obmc-phosphor-license
inherit phosphor-ipmi-host
SRC_URI += "file://openpower-config.yaml"
S = "${WORKDIR}"
do_install() {
DEST=${D}${sensor_yamldir}
install -d ${DEST}
install openpower-config.yaml ${DEST}/openpower-config.yaml
}
|