[oe] [meta-oe][PATCH] sjf2410-linux-native: Fix do_deploy sstate caching

Daniel Klauer daniel.klauer at gin.de
Wed Aug 28 12:43:35 UTC 2019


deploy.bbclass requires do_deploy to copy files to DEPLOYDIR (sstate
input dir) instead of DEPLOY_DIR_TOOLS (sstate output dir), otherwise
the sstate caching does not work.

Signed-off-by: Daniel Klauer <daniel.klauer at gin.de>
---
 .../samsung-soc-utils/sjf2410-linux-native_svn.bb              | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb b/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
index c56c8b9dd..9e609c4dd 100644
--- a/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
+++ b/meta-oe/recipes-support/samsung-soc-utils/sjf2410-linux-native_svn.bb
@@ -27,8 +27,7 @@ do_install() {
 }
 
 do_deploy() {
-    install -d ${DEPLOY_DIR_TOOLS}
-    install -m 0755 sjf2410 ${DEPLOY_DIR_TOOLS}/sjf2410-${PV}
+    install -m 0755 sjf2410 ${DEPLOYDIR}/sjf2410-${PV}
 }
 
 addtask deploy before do_build after do_install
-- 
2.17.1



More information about the Openembedded-devel mailing list