diff options
author | Sam Nelson <sam.nelson@ti.com> | 2017-03-14 03:13:02 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-03-14 21:39:41 -0400 |
commit | 39d09b2349787bdc97b9810a1bd9689939a54d9d (patch) | |
tree | e79392c78b66514e2ec41616dfff367fbc680509 /recipes-ti/ipc | |
parent | 84fb08a2a39c8442dcc6a8f54b7663367484fb78 (diff) | |
download | meta-ti-39d09b2349787bdc97b9810a1bd9689939a54d9d.tar.gz |
ti-ipc-rtos: Update to remove host-user-contaminated warnings
Update to copy NOT to preserve ownership (but to preserve mode and
timestamps)
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/ipc')
-rw-r--r-- | recipes-ti/ipc/ti-ipc-rtos.inc | 2 | ||||
-rw-r--r-- | recipes-ti/ipc/ti-ipc-rtos_git.bb | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/recipes-ti/ipc/ti-ipc-rtos.inc b/recipes-ti/ipc/ti-ipc-rtos.inc index 7f029a72..b29e984a 100644 --- a/recipes-ti/ipc/ti-ipc-rtos.inc +++ b/recipes-ti/ipc/ti-ipc-rtos.inc | |||
@@ -37,7 +37,7 @@ S_ipc-metadata = "${WORKDIR}/git/ipc-metadata" | |||
37 | RELEASE_TYPE = "GA" | 37 | RELEASE_TYPE = "GA" |
38 | RELEASE_SUFFIX = "" | 38 | RELEASE_SUFFIX = "" |
39 | 39 | ||
40 | PR = "${INC_PR}.2" | 40 | PR = "${INC_PR}.3" |
41 | 41 | ||
42 | DEPENDS_append_keystone = " ti-cgt6x-native \ | 42 | DEPENDS_append_keystone = " ti-cgt6x-native \ |
43 | gcc-arm-none-eabi-native \ | 43 | gcc-arm-none-eabi-native \ |
diff --git a/recipes-ti/ipc/ti-ipc-rtos_git.bb b/recipes-ti/ipc/ti-ipc-rtos_git.bb index f0ccb104..018634c2 100644 --- a/recipes-ti/ipc/ti-ipc-rtos_git.bb +++ b/recipes-ti/ipc/ti-ipc-rtos_git.bb | |||
@@ -62,13 +62,14 @@ do_compile() { | |||
62 | } | 62 | } |
63 | 63 | ||
64 | do_install() { | 64 | do_install() { |
65 | CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" | ||
65 | IPC_VERSION=`echo ${PV}${RELEASE_SUFFIX} | sed -e 's|\.|_|g'` | 66 | IPC_VERSION=`echo ${PV}${RELEASE_SUFFIX} | sed -e 's|\.|_|g'` |
66 | # Copy docs and other meta files | 67 | # Copy docs and other meta files |
67 | install -d ${D}${IPC_INSTALL_DIR_RECIPE} | 68 | install -d ${D}${IPC_INSTALL_DIR_RECIPE} |
68 | cp -pPrf ${IPC_PACKAGE_DIR}/* -d ${D}${IPC_INSTALL_DIR_RECIPE} | 69 | cp ${CP_ARGS} ${IPC_PACKAGE_DIR}/* -d ${D}${IPC_INSTALL_DIR_RECIPE} |
69 | 70 | ||
70 | install -d ${D}${base_libdir}/firmware/ipc | 71 | install -d ${D}${base_libdir}/firmware/ipc |
71 | cp -pPrf ${S}/packages/ti/ipc/tests/bin/* ${D}${base_libdir}/firmware/ipc || true | 72 | cp ${CP_ARGS} ${S}/packages/ti/ipc/tests/bin/* ${D}${base_libdir}/firmware/ipc || true |
72 | } | 73 | } |
73 | 74 | ||
74 | ALTERNATIVE_PRIORITY = "5" | 75 | ALTERNATIVE_PRIORITY = "5" |