[oe-commits] [openembedded-core] 13/16: devtool: build: add deploy to the tasks run for devtool build

git at git.openembedded.org git at git.openembedded.org
Sat Jun 8 09:27:02 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit f70c928951125d4a04978561c7ea5e807f18cdbc
Author: Jaewon Lee <jaewon.lee at xilinx.com>
AuthorDate: Fri Jun 7 15:17:01 2019 -0700

    devtool: build: add deploy to the tasks run for devtool build
    
    Right now `devtool build` runs populate_sysroot and packagedata tasks.
    Adding deploy to this list so that the newly built artifacts are
    available in the deploy directory.
    
    Signed-off-by: Jaewon Lee <jaewon.lee at xilinx.com>
    
    [YOCTO #13382]
    
    Signed-off-by: Jaewon Lee <jaewon.lee at xilinx.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/lib/devtool/build.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/lib/devtool/build.py b/scripts/lib/devtool/build.py
index 7543398..aff5710 100644
--- a/scripts/lib/devtool/build.py
+++ b/scripts/lib/devtool/build.py
@@ -37,7 +37,7 @@ def _set_file_values(fn, values):
     return updated
 
 def _get_build_tasks(config):
-    tasks = config.get('Build', 'build_task', 'populate_sysroot,packagedata').split(',')
+    tasks = config.get('Build', 'build_task', 'deploy,populate_sysroot,packagedata').split(',')
     return ['do_%s' % task.strip() for task in tasks]
 
 def build(args, config, basepath, workspace):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list