diff options
author | Sam Nelson <sam.nelson@ti.com> | 2017-04-24 17:12:45 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-04-24 12:48:15 -0400 |
commit | c734db427cdb3a38614f5e132269a599fab9cdb1 (patch) | |
tree | 64860101f7630f037880886d6cc7e41920b706af /recipes-ti | |
parent | 9d9f15a183469ccf36003a453fa531a463cd4164 (diff) | |
download | meta-ti-c734db427cdb3a38614f5e132269a599fab9cdb1.tar.gz |
mpm-transport: Update to new version 2.0.4.0
- Add INSANE_SKIP ldflags to avoid warning
- Add no-preserve-ownership to avoid host contamination warning
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r-- | recipes-ti/mpm-transport/mpm-transport_git.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb b/recipes-ti/mpm-transport/mpm-transport_git.bb index 0690807d..bf02c0b8 100644 --- a/recipes-ti/mpm-transport/mpm-transport_git.bb +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb | |||
@@ -15,15 +15,16 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" | |||
15 | SRC_URI = "git://git.ti.com/keystone-linux/mpm-transport.git;protocol=git;branch=${BRANCH}" | 15 | SRC_URI = "git://git.ti.com/keystone-linux/mpm-transport.git;protocol=git;branch=${BRANCH}" |
16 | 16 | ||
17 | BRANCH = "master" | 17 | BRANCH = "master" |
18 | # This commit corresponds to tag DEV.MPM-TRANSPORT-02.00.03.00 | 18 | # This commit corresponds to tag DEV.MPM-TRANSPORT-02.00.04.00 |
19 | SRCREV = "ba53217c5db1a6f9d21a0c8f50e9e30a6efa8be8" | 19 | SRCREV = "e0e44fe55bef7ddf89f7ff3574f07fa906e72a37" |
20 | 20 | ||
21 | PV = "2.0.3.0" | 21 | PV = "2.0.4.0" |
22 | PR = "r0" | 22 | PR = "r0" |
23 | 23 | ||
24 | EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}" | 24 | EXTRA_OEMAKE = "PDK_INSTALL_PATH=${STAGING_INCDIR}" |
25 | EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true" | 25 | EXTRA_OEMAKE_append_k2hk-evm += "HYPLNK_TRANSPORT=true SRIO_TRANSPORT=true" |
26 | EXTRA_OEMAKE_append_k2e += "HYPLNK_TRANSPORT=true" | 26 | EXTRA_OEMAKE_append_k2e += "HYPLNK_TRANSPORT=true" |
27 | INSANE_SKIP_${PN} += "ldflags" | ||
27 | 28 | ||
28 | S = "${WORKDIR}/git" | 29 | S = "${WORKDIR}/git" |
29 | 30 | ||
@@ -43,7 +44,7 @@ do_install() { | |||
43 | install -c -m 644 ${S}/include/* ${D}${includedir}/ | 44 | install -c -m 644 ${S}/include/* ${D}${includedir}/ |
44 | 45 | ||
45 | install -d ${D}${libdir}/ | 46 | install -d ${D}${libdir}/ |
46 | cp -a ${S}/lib/* ${D}${libdir}/ | 47 | cp -a --preserve=mode,timestamps --no-preserve=ownership ${S}/lib/* ${D}${libdir}/ |
47 | 48 | ||
48 | install -d ${D}${sysconfdir}/mpm/ | 49 | install -d ${D}${sysconfdir}/mpm/ |
49 | install -c -m 644 ${S}/scripts/mpm_config.json ${D}${sysconfdir}/mpm/mpm_config.json | 50 | install -c -m 644 ${S}/scripts/mpm_config.json ${D}${sysconfdir}/mpm/mpm_config.json |