summaryrefslogtreecommitdiffstats
path: root/recipes-ti/multiprocmgr/multiprocmgr_git.bb
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2018-04-24 01:53:50 +0000
committerDenys Dmytriyenko <denys@ti.com>2018-04-24 16:00:50 -0400
commit268548b2c808afaa7bd9b7404b63f6036d7c5963 (patch)
tree9e47449560e1f85edd10ac71a5fc67254eca12c4 /recipes-ti/multiprocmgr/multiprocmgr_git.bb
parent789979a559c2759e5073c444636e7e9d3bd4299b (diff)
downloadmeta-ti-268548b2c808afaa7bd9b7404b63f6036d7c5963.tar.gz
multiprocmgr: don't hardcode "uapi" kernel location
This way keystone_remoteproc.h can also be found in sysroots, when available. Otherwise it can fall back to using kernel sources directly. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/multiprocmgr/multiprocmgr_git.bb')
-rw-r--r--recipes-ti/multiprocmgr/multiprocmgr_git.bb9
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-ti/multiprocmgr/multiprocmgr_git.bb b/recipes-ti/multiprocmgr/multiprocmgr_git.bb
index 053a04e5..f37b97e3 100644
--- a/recipes-ti/multiprocmgr/multiprocmgr_git.bb
+++ b/recipes-ti/multiprocmgr/multiprocmgr_git.bb
@@ -3,15 +3,18 @@ SUMMARY = "Provides download, debug and other utilities for other cores in the S
3 3
4include multiprocmgr.inc 4include multiprocmgr.inc
5 5
6SRC_URI_append = " file://mpmsrv-daemon.service" 6SRC_URI += " \
7 file://mpmsrv-daemon.service \
8 file://0001-mpmdlif.c-don-t-hardcode-kernel-s-uapi-location-keys.patch \
9"
7 10
8PR = "${INC_PR}.1" 11PR = "${INC_PR}.2"
9 12
10DEPENDS = "mpm-transport libdaemon virtual/kernel cmem" 13DEPENDS = "mpm-transport libdaemon virtual/kernel cmem"
11 14
12PACKAGE_ARCH = "${MACHINE_ARCH}" 15PACKAGE_ARCH = "${MACHINE_ARCH}"
13 16
14CC += "-I${STAGING_KERNEL_DIR}/include" 17CC += "-I${STAGING_KERNEL_DIR}/include -I${STAGING_KERNEL_DIR}/include/uapi"
15 18
16INITSCRIPT_NAME = "mpmsrv-daemon.sh" 19INITSCRIPT_NAME = "mpmsrv-daemon.sh"
17INITSCRIPT_PARAMS = "defaults 10" 20INITSCRIPT_PARAMS = "defaults 10"