diff options
author | Andrew Davis <afd@ti.com> | 2024-12-20 09:26:33 -0600 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-01-22 15:08:56 -0600 |
commit | d56849a9ec5d8829afc62fba2ac36c6117b32f9d (patch) | |
tree | c29dbafd6a2ae89e103867c2d076493908df5be6 | |
parent | 785274bb8a3f3753f70173daaeffa523c83b5ce7 (diff) | |
download | meta-ti-d56849a9ec5d8829afc62fba2ac36c6117b32f9d.tar.gz |
meta-ti-extras: dsplib: Do not deploy packaged output
This might have been useful for building development packages with
the pre-built binaries for deployment elsewhere, but there are
better ways to do this and these are no longer consumed. Remove
this packaging step.
Signed-off-by: Andrew Davis <afd@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-ti/dsplib/dsplib.inc | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta-ti-extras/recipes-ti/dsplib/dsplib.inc b/meta-ti-extras/recipes-ti/dsplib/dsplib.inc index 6ebc3b34..3c24f196 100644 --- a/meta-ti-extras/recipes-ti/dsplib/dsplib.inc +++ b/meta-ti-extras/recipes-ti/dsplib/dsplib.inc | |||
@@ -11,7 +11,6 @@ DEPENDS = "ti-cgt6x-native \ | |||
11 | ti-xdctools-native \ | 11 | ti-xdctools-native \ |
12 | ti-sysbios \ | 12 | ti-sysbios \ |
13 | doxygen-native \ | 13 | doxygen-native \ |
14 | zip-native \ | ||
15 | swtools" | 14 | swtools" |
16 | 15 | ||
17 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
@@ -57,19 +56,6 @@ do_install() { | |||
57 | rm -r ${D}${DSPLIB_INSTALL_DIR_RECIPE}/dsplib | 56 | rm -r ${D}${DSPLIB_INSTALL_DIR_RECIPE}/dsplib |
58 | } | 57 | } |
59 | 58 | ||
60 | inherit deploy | ||
61 | addtask deploy before do_build after do_install | ||
62 | |||
63 | do_deploy() { | ||
64 | install -d ${DEPLOYDIR} | ||
65 | # zip up files in ${D}${DSPLIB_INSTALL_DIR_RECIPE} | ||
66 | # and place the zip file in ${DEPLOYDIR} | ||
67 | mkdir ./${DSPLIB_PACKAGE_NAME} | ||
68 | cp -r ${D}${DSPLIB_INSTALL_DIR_RECIPE}/. ./${DSPLIB_PACKAGE_NAME} | ||
69 | zip -9 -y -r -q ${DEPLOYDIR}/${DSPLIB_PACKAGE_NAME}.zip ./${DSPLIB_PACKAGE_NAME} | ||
70 | rm -r ./${DSPLIB_PACKAGE_NAME} | ||
71 | } | ||
72 | |||
73 | ALLOW_EMPTY:${PN} = "1" | 59 | ALLOW_EMPTY:${PN} = "1" |
74 | FILES:${PN}-dev += "${DSPLIB_INSTALL_DIR_RECIPE}" | 60 | FILES:${PN}-dev += "${DSPLIB_INSTALL_DIR_RECIPE}" |
75 | 61 | ||