summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-phosphor/inventory
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2019-04-25 04:20:53 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2019-05-15 19:45:47 +0300
commit8a8bb9bb83ba43540e876a7de60442386c294be6 (patch)
tree7da80323629a1b34c55388da864af06951afd5c5 /meta-phosphor/recipes-phosphor/inventory
parent30217a527db0b1427fc482c2f44552461f208831 (diff)
downloadopenbmc-8a8bb9bb83ba43540e876a7de60442386c294be6.tar.xz
meta-phosphor: remove unused obmc-inventory
obmc-inventory is a native recipe that provides a translator application that bridges OpenPOWER machine readable workbooks to a runtime configuration file for the obmc-mgr-inventory application. The Palmetto system was the only system to ever make use of obmc-inventory; the other obmc-mgr-inventory using systems use a hardcoded-in-python config file. Since Palmetto doesn't use obmc-mgr-inventory anymore, there is no longer a user of obmc-inventory. Drop from the tree. (From meta-phosphor rev: be7b902b79a0639d41f80102d79d26cce62be2f4) Change-Id: Ida807973f79e9d68e32be015408f84954c18ee39 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/recipes-phosphor/inventory')
-rw-r--r--meta-phosphor/recipes-phosphor/inventory/obmc-inventory_git.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-phosphor/recipes-phosphor/inventory/obmc-inventory_git.bb b/meta-phosphor/recipes-phosphor/inventory/obmc-inventory_git.bb
deleted file mode 100644
index 56286123e..000000000
--- a/meta-phosphor/recipes-phosphor/inventory/obmc-inventory_git.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-SUMMARY = "Phosphor Inventory Generation"
-DESCRIPTION = "Generates inventory data from the machine readable workbook"
-PR = "r1"
-PV = "1.0+git${SRCPV}"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
-
-inherit mrw-xml
-
-S = "${WORKDIR}/git"
-
-PROVIDES += "virtual/obmc-inventory-data"
-RPROVIDES_${PN} += "virtual-obmc-inventory-data"
-
-inherit allarch
-inherit mrw-rev
-
-DEPENDS += "mrw-native mrw-api-native"
-
-SRC_URI += "${MRW_TOOLS_SRC_URI}"
-SRCREV = "${MRW_TOOLS_SRCREV}"
-
-FILES_${PN} += "${datadir}/inventory"
-
-do_compile() {
- ${STAGING_BINDIR_NATIVE}/perl-native/perl ${S}/inventory.pl \
- -x ${STAGING_DIR_NATIVE}${mrw_datadir}/${MRW_XML} -o inventory.json
-}
-
-do_install() {
- install -d ${D}${datadir}/inventory
- install -m 0644 inventory.json ${D}${datadir}/inventory/inventory.json
-}