summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-phosphor/mctp/mctp_git.bb
diff options
context:
space:
mode:
authorJeremy Kerr <jk@codeconstruct.com.au>2021-09-02 08:20:09 +0300
committerPatrick Williams <patrick@stwcx.xyz>2021-09-08 15:36:48 +0300
commitdebf2b5d689c9d308bc752f5aab3367c05152dc3 (patch)
treeed469065dabddc16a827c3c0254c09427e6e8f30 /meta-phosphor/recipes-phosphor/mctp/mctp_git.bb
parent2dfbc7f56a9389622f76af6c829b1bdaa998a8ad (diff)
downloadopenbmc-debf2b5d689c9d308bc752f5aab3367c05152dc3.tar.xz
meta-phosphor: rename mctp package to libmctp
We're about to introduce a package for mctp utilities, called 'mctp'. However, the libmctp package already uses that name. This change renames 'mctp' to the upstream name of 'libmctp'. Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Change-Id: Ia49a40c822e920d3bc36584cbc2c97b83828cfdd
Diffstat (limited to 'meta-phosphor/recipes-phosphor/mctp/mctp_git.bb')
-rw-r--r--meta-phosphor/recipes-phosphor/mctp/mctp_git.bb37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta-phosphor/recipes-phosphor/mctp/mctp_git.bb b/meta-phosphor/recipes-phosphor/mctp/mctp_git.bb
deleted file mode 100644
index 54d6b73e4..000000000
--- a/meta-phosphor/recipes-phosphor/mctp/mctp_git.bb
+++ /dev/null
@@ -1,37 +0,0 @@
-SUMMARY = "MCTP stack"
-DESCRIPTION = "MCTP library implementing the MCTP base specification"
-PR = "r1"
-PV = "1.0+git${SRCPV}"
-
-inherit systemd
-inherit autotools pkgconfig
-
-HOMEPAGE = "https://github.com/openbmc/libmctp"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=0d30807bb7a4f16d36e96b78f9ed8fae"
-SRC_URI = "git://github.com/openbmc/libmctp \
- file://default"
-SRCREV = "edebe169ebefd6410d74850bbce1ea599c347753"
-
-DEPENDS += "autoconf-archive-native \
- systemd \
- "
-
-SYSTEMD_SERVICE:${PN} = "mctp-demux.service \
- mctp-demux.socket \
- "
-
-PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
-PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_system_unitdir}, \
- --without-systemdsystemunitdir,systemd"
-
-PACKAGECONFIG[astlpc-raw-kcs] = "--enable-astlpc-raw-kcs,--disable-astlpc-raw-kcs,udev,udev"
-
-CONFFILES:${PN} = "${sysconfdir}/default/mctp"
-
-do_install:append() {
- install -d ${D}${sysconfdir}/default
- install -m 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/mctp
-}
-
-S = "${WORKDIR}/git"