mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
This version add dependce on CMEM Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
47 lines
1.3 KiB
BlitzBasic
47 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "TI Multiproc Manager for KeyStone II"
|
|
SUMMARY = "Provides download, debug and other utilities for other cores in the SOC like DSP"
|
|
|
|
include multiprocmgr.inc
|
|
|
|
SRC_URI_append = " file://mpmsrv-daemon.service"
|
|
|
|
PR = "${INC_PR}.1"
|
|
|
|
DEPENDS = "mpm-transport libdaemon virtual/kernel cmem"
|
|
RDEPENDS_${PN} = "syslog-ng"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
CC += "-I${STAGING_KERNEL_DIR}/include"
|
|
|
|
INITSCRIPT_NAME = "mpmsrv-daemon.sh"
|
|
INITSCRIPT_PARAMS = "defaults 10"
|
|
|
|
SYSTEMD_SERVICE_${PN} = "mpmsrv-daemon.service"
|
|
|
|
inherit update-rc.d systemd
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
install -c -m 755 ${S}/bin/mpmsrv ${D}${bindir}/mpmsrv
|
|
install -c -m 755 ${S}/bin/mpmcl ${D}${bindir}/mpmcl
|
|
|
|
systemd_enabled=${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '1', '0', d)}
|
|
if [ ${systemd_enabled} -eq 1 ]
|
|
then
|
|
install -d ${D}${systemd_system_unitdir}
|
|
install -m 0644 ${WORKDIR}/mpmsrv-daemon.service ${D}${systemd_system_unitdir}
|
|
else
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -c -m 755 ${S}/scripts/mpmsrv-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
|
|
fi
|
|
install -d ${D}${sysconfdir}/mpm/
|
|
install -c -m 755 ${S}/scripts/crash_callback.sh ${D}${sysconfdir}/mpm/crash_callback.sh
|
|
|
|
install -d ${D}${includedir}/
|
|
install -c -m 755 ${S}/include/* ${D}${includedir}/
|
|
|
|
install -d ${D}${libdir}/
|
|
cp -a ${S}/lib/* ${D}${libdir}/
|
|
}
|