blob: bc6c700bb59d5d4f35a8e5d9ed08709eafa6ed89 [file] [log] [blame]
George Hung897b1452020-05-13 19:54:28 +08001SUMMARY = "GBS IPMI Entity association mapping."
2PR = "r1"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
5
6SRC_URI += "file://entity_association_map.json"
7
Brandon Kim1e427092021-08-10 15:46:03 -07008FILES:${PN} = " \
George Hung897b1452020-05-13 19:54:28 +08009 ${datadir}/ipmi-entity-association/entity_association_map.json \
10 "
11
12do_install() {
13 install -d ${D}${datadir}/ipmi-entity-association
14 install -m 0644 -D ${WORKDIR}/entity_association_map.json \
15 ${D}${datadir}/ipmi-entity-association/entity_association_map.json
16}