mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-23 12:26:59 +00:00
7e6f1b75b3
* "linux/remoteproc_user.h" is included by ./src/daemon/mpmdlif.c Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
33 lines
946 B
BlitzBasic
33 lines
946 B
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
|
|
|
|
DEPENDS = "mpm-transport libdaemon virtual/kernel"
|
|
RDEPENDS_${PN} = "syslog-ng"
|
|
|
|
|
|
CC += "-I${STAGING_KERNEL_DIR}/include"
|
|
|
|
INITSCRIPT_NAME = "mpmsrv-daemon.sh"
|
|
INITSCRIPT_PARAMS = "defaults 10"
|
|
|
|
inherit update-rc.d
|
|
|
|
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
|
|
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -c -m 755 ${S}/scripts/mpmsrv-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
|
|
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}/
|
|
}
|