Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] devtool: build: add deploy to the tasks run for devtool build
@ 2019-06-07 22:17 Jaewon Lee
  2019-06-08 12:15 ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Jaewon Lee @ 2019-06-07 22:17 UTC (permalink / raw)
  To: openembedded-core

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@xilinx.com>

[YOCTO #13382]

Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com>
---
 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):
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-06-08 23:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-07 22:17 [PATCH] devtool: build: add deploy to the tasks run for devtool build Jaewon Lee
2019-06-08 12:15 ` Richard Purdie
2019-06-08 15:34   ` Jaewon Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox