blob: fe9e6ed053e2aa8ce260f3a47b978cedbb291c23 [file] [log] [blame]
Tom Josephc0794e72017-07-12 17:13:30 +05301SUMMARY = "Recipe to create AssetTag property in inventory manager"
2PR = "r1"
3
4inherit native
5inherit obmc-phosphor-license
6inherit phosphor-inventory-manager
7
8PROVIDES += "virtual/phosphor-inventory-manager-assettag"
9
10SRC_URI += "file://assettag.yaml"
11
12S = "${WORKDIR}"
13
14do_install() {
15 # This recipe would provide the yaml for inventory manager to
16 # create AssetTag property at startup
17
Patrick Williamsa0179fb2017-08-28 16:28:45 -050018 install -d ${D}${base_datadir}/events.d/
19 install assettag.yaml ${D}${base_datadir}/events.d/assettag.yaml
Tom Josephc0794e72017-07-12 17:13:30 +053020}