summaryrefslogtreecommitdiff
path: root/meta-openpower/recipes-phosphor/vpd/openpower-fru-inventory-example-native.bb
blob: e04ebd90836f5ae30f91a79f7c5d1f3a03d65d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SUMMARY = "Inventory config for openpower-vpd-parser"
PR = "r1"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://${OPENPOWERBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658"

inherit native
inherit openpower-fru-vpd

SRC_URI += "file://inventory"

PROVIDES += "virtual/openpower-fru-inventory"

S = "${WORKDIR}"

do_install() {
        # This recipe is supposed to create a systemd environment file
        # with values for FRU types and paths. This example recipe
        # uses a pre-defined file ($PN/inventory).

        DEST=${D}${inventory_datadir_native}
        install -d ${DEST}
        install inventory ${DEST}
}