summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDung Cao <dung@os.amperecomputing.com>2021-01-12 07:44:23 +0300
committerAndrew Geissler <geissonator@yahoo.com>2021-01-14 20:02:34 +0300
commit74dbe1e29f3693dd2774ab010bf5f4ca8abc9bb7 (patch)
tree54b85626c64296a72a73e648fae3c5be7d1a7ef0
parentf0afcf836269e7fba7c33c58146f2fcd3db57ae2 (diff)
downloadopenbmc-74dbe1e29f3693dd2774ab010bf5f4ca8abc9bb7.tar.xz
Add ssifbridge recipe
The ssifbride immplements a Dbus compliant interface for implementing SSIF interfaces. This daemon is standing between BMC SSIF kernel driver and DBUS IPMI Interface for sending IPMI requests and return responses. (From meta-phosphor rev: cf9a8ecdc994f24e7e5d52869fea528424028b8b) Signed-off-by: Dung Cao <dung@os.amperecomputing.com> Change-Id: Iae9efe017f76ea3987c189e2b9b3539b2fe62e03 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
-rw-r--r--meta-phosphor/recipes-phosphor/ipmi/phosphor-ipmi-ssif.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-phosphor/recipes-phosphor/ipmi/phosphor-ipmi-ssif.bb b/meta-phosphor/recipes-phosphor/ipmi/phosphor-ipmi-ssif.bb
new file mode 100644
index 000000000..b086a0a36
--- /dev/null
+++ b/meta-phosphor/recipes-phosphor/ipmi/phosphor-ipmi-ssif.bb
@@ -0,0 +1,24 @@
+SUMMARY = "Phosphor OpenBMC SSIF to DBUS"
+DESCRIPTION = "Phosphor OpenBMC SSIF to DBUS."
+PR = "r1"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
+
+inherit meson pkgconfig
+inherit systemd
+
+SYSTEMD_SERVICE_${PN} = "ssifbridge.service"
+
+PROVIDES += "virtual/obmc-host-ipmi-hw"
+RPROVIDES_${PN} += "virtual-obmc-host-ipmi-hw"
+RRECOMMENDS_${PN} += "phosphor-ipmi-host"
+
+DEPENDS += "systemd"
+DEPENDS += "phosphor-logging"
+DEPENDS += "sdbusplus"
+DEPENDS += "cli11"
+
+S = "${WORKDIR}/git"
+SRC_URI = "git://github.com/openbmc/ssifbridge.git;protocol=git;branch=master"
+SRCREV= "f624941f501e2ddd1f2d4518dbdbd3642560f610"
+