diff options
author | Denys Dmytriyenko <denys@ti.com> | 2015-08-20 06:53:05 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2015-08-19 20:55:09 -0400 |
commit | 3d31d82b334ea0e608dbee3b2d5d1cde85eaa10c (patch) | |
tree | 3eac290e5ec50e010d641219c261e2f2bc417f5c /recipes-ti/ipc/ti-ipc_git.bb | |
parent | 781e7e00c4ba8e968cbd8e82e98edb0b7a5f2659 (diff) | |
download | meta-ti-3d31d82b334ea0e608dbee3b2d5d1cde85eaa10c.tar.gz |
ti-ipc: fix build when STAGING_KERNEL_DIR != STAGING_KERNEL_BUILDDIR
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/ipc/ti-ipc_git.bb')
-rw-r--r-- | recipes-ti/ipc/ti-ipc_git.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-ti/ipc/ti-ipc_git.bb b/recipes-ti/ipc/ti-ipc_git.bb index 5f0b8db0..065d2c64 100644 --- a/recipes-ti/ipc/ti-ipc_git.bb +++ b/recipes-ti/ipc/ti-ipc_git.bb | |||
@@ -11,6 +11,7 @@ PV = "3.36.01.11" | |||
11 | BRANCH = "3.36" | 11 | BRANCH = "3.36" |
12 | SRC_URI = "git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH} \ | 12 | SRC_URI = "git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH} \ |
13 | file://tiipclad-daemon.sh \ | 13 | file://tiipclad-daemon.sh \ |
14 | file://0001-Add-kernel-build-dir.patch \ | ||
14 | " | 15 | " |
15 | # Commit corresponds to 3.36.01.11 | 16 | # Commit corresponds to 3.36.01.11 |
16 | SRCREV = "2a4256289d462d93a7e00a6ffb10bd46081a9500" | 17 | SRCREV = "2a4256289d462d93a7e00a6ffb10bd46081a9500" |
@@ -33,14 +34,15 @@ DAEMON_k2hk-evm = "lad_tci6638" | |||
33 | DAEMON_k2l-evm = "lad_tci6630" | 34 | DAEMON_k2l-evm = "lad_tci6630" |
34 | DAEMON_k2e-evm = "lad_66ak2e" | 35 | DAEMON_k2e-evm = "lad_66ak2e" |
35 | 36 | ||
36 | inherit autotools pkgconfig update-rc.d | 37 | inherit autotools-brokensep pkgconfig update-rc.d |
37 | 38 | ||
38 | INITSCRIPT_NAME = "tiipclad-daemon.sh" | 39 | INITSCRIPT_NAME = "tiipclad-daemon.sh" |
39 | INITSCRIPT_PARAMS = "defaults 10" | 40 | INITSCRIPT_PARAMS = "defaults 10" |
40 | 41 | ||
41 | EXTRA_OECONF += "PLATFORM=${PLATFORM} KERNEL_INSTALL_DIR=${STAGING_KERNEL_DIR}" | 42 | EXTRA_OECONF += "PLATFORM=${PLATFORM} KERNEL_INSTALL_DIR=${STAGING_KERNEL_DIR} KERNEL_BUILD_DIR=${STAGING_KERNEL_BUILDDIR}" |
42 | 43 | ||
43 | do_configure() { | 44 | do_configure() { |
45 | ( cd ${S}; autoreconf -f -i -s ) | ||
44 | oe_runconf | 46 | oe_runconf |
45 | } | 47 | } |
46 | 48 | ||