blob: aca1d0aabb15cfde7a632219b94ec941c0078273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUMMARY = "Sample hostfw inventory map for phosphor-ipmi-fru"
PR = "r1"
inherit native
inherit phosphor-ipmi-fru
require phosphor-ipmi-fru.inc
PROVIDES += "virtual/phosphor-ipmi-fru-hostfw-config"
S = "${WORKDIR}/git"
do_install() {
DEST=${D}${hostfw_datadir}
install -d ${DEST}
# TODO: copy example hostfw yaml to ${DEST}/config.yaml
# install fru-types.yaml ${DEST}/config.yaml
}
|