summaryrefslogtreecommitdiffstats
path: root/recipes-ti/multiprocmgr/multiprocmgr-test_git.bb
diff options
context:
space:
mode:
authorSam Nelson <sam.nelson@ti.com>2015-01-16 18:20:26 +0000
committerDenys Dmytriyenko <denys@ti.com>2015-01-21 15:15:14 -0500
commita9fe62d130146ed94dc248f35c563c1e76206517 (patch)
tree82112da40dab180b6325a5a0749b29f51c728064 /recipes-ti/multiprocmgr/multiprocmgr-test_git.bb
parent73d028e699ad28120e83e93d5da596e9f05f4420 (diff)
downloadmeta-ti-a9fe62d130146ed94dc248f35c563c1e76206517.tar.gz
multiprocmgr: Update to new version of MPM 2.0.1.7
- Recipe split into main and test recipes. - Added dependency on mpm-transport & libdaemon & syslog-ng - Added startup scripts for daemon - Removed PR Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/multiprocmgr/multiprocmgr-test_git.bb')
-rw-r--r--recipes-ti/multiprocmgr/multiprocmgr-test_git.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-ti/multiprocmgr/multiprocmgr-test_git.bb b/recipes-ti/multiprocmgr/multiprocmgr-test_git.bb
new file mode 100644
index 00000000..b05cd44e
--- /dev/null
+++ b/recipes-ti/multiprocmgr/multiprocmgr-test_git.bb
@@ -0,0 +1,18 @@
1DESCRIPTION = "TI Multiproc Manager test code"
2
3include multiprocmgr.inc
4
5DEPENDS = "multiprocmgr cmem"
6RDEPENDS_${PN} = "multiprocmgr mpm-transport cmem"
7
8CC += "-I${STAGING_KERNEL_DIR}/include"
9
10do_compile() {
11 make -C ${S} test
12}
13
14do_install() {
15 install -d ${D}${bindir}/
16 install -c -m 755 ${S}/test/filetestdemo/host/bin/demo_filetest ${D}${bindir}/mpm_demo_filetest
17 install -c -m 755 ${S}/test/sync_test/host/bin/sync_test ${D}${bindir}/mpm_sync_test
18}