blob: e1c4f2fdacaa53f2cf0a7eeb1b185554ad5fb295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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"
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}/
}
|