summaryrefslogtreecommitdiff
path: root/meta-openpower
diff options
context:
space:
mode:
authorAdriana Kobylak <anoo@us.ibm.com>2020-07-23 23:03:15 +0300
committerAndrew Geissler <geissonator@yahoo.com>2020-07-31 17:08:22 +0300
commitdebf182b63d3577e9a64b99849c1999108082fcb (patch)
treea45c6608d67c1753449c8b4e11bbed191c427556 /meta-openpower
parent616b8316a958ab2a1d3bef364068fd1eb28c56b4 (diff)
downloadopenbmc-debf182b63d3577e9a64b99849c1999108082fcb.tar.xz
meta-openpower: Revert "host-fw: New recipe to include the host firmware"
This reverts commit d552bf6e0cf9cc1c9d4bfd650cf2765277cda980. This host-fw recipe has been replaced by the phosphor-hostfw-image recipe in the meta-phosphor layer. Delete it. (From meta-openpower rev: 63a158cb84f01fa3462ebb8600e0362cdc5155f6) Change-Id: I5d57b67a8b9f52b3c25c4a9c5d396c871c564de8 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com> Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Diffstat (limited to 'meta-openpower')
-rw-r--r--meta-openpower/recipes-phosphor/flash/host-fw_git.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-openpower/recipes-phosphor/flash/host-fw_git.bb b/meta-openpower/recipes-phosphor/flash/host-fw_git.bb
deleted file mode 100644
index 00fc1fd59..000000000
--- a/meta-openpower/recipes-phosphor/flash/host-fw_git.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-SUMMARY = "OpenPOWER Host Firmware Image"
-DESCRIPTION = "Adds the OpenPOWER Host Firmware image to the BMC image"
-PR = "r1"
-
-inherit allarch
-
-HOST_FW_LICENSE ?= "Apache-2.0"
-HOST_FW_LIC_FILES_CHKSUM ?= "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
-HOST_FW_SRC_URI ?= ""
-
-LICENSE = "${HOST_FW_LICENSE}"
-LIC_FILES_CHKSUM = "${HOST_FW_LIC_FILES_CHKSUM}"
-SRC_URI = "${HOST_FW_SRC_URI}"
-
-DEPENDS = "squashfs-tools-native"
-
-S = "${WORKDIR}"
-B = "${WORKDIR}/build"
-do_compile[cleandirs] = "${B}"
-
-do_compile() {
- if [ -n "${HOST_FW_SRC_URI}" ]; then
- unsquashfs -d ${B}/squashfs-root ${S}/pnor.xz.squashfs
- fi
-}
-
-do_install() {
- install -d ${D}${datadir}/${BPN}
-
- if [ -n "${HOST_FW_SRC_URI}" ]; then
- install -m 0440 ${B}/squashfs-root/* ${D}${datadir}/${BPN}
- fi
-}