aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-04-19 20:50:54 +1200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-04-19 20:56:26 +1200
commitda6a19e856be1b305483c212b837652c824f0cf2 (patch)
tree0e265f6a247f7fdfa64c7bc20948e3f04abcd672
parent55fe27e1f64352d36e4a49eb488a51bda21bd007 (diff)
downloadopenembedded-core-contrib-paule/esdk-runqemu-fixes.tar.gz
ext-sdk-prepare.py: use quiet mode when preparing sysrootpaule/esdk-runqemu-fixes
In order to have a shared sysroot usable within the eSDK after recipe specific sysroots were implemented, we need to run bitbake build-sysroots as a separate call. However, unlike the first call, --quiet wasn't being specified and that somewhat undermined the earlier effort to clean up the eSDK installation output. Make this second call quiet as well so that the output is tidier. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/files/ext-sdk-prepare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/files/ext-sdk-prepare.py b/meta/files/ext-sdk-prepare.py
index ef096394bb..96c5212a2e 100644
--- a/meta/files/ext-sdk-prepare.py
+++ b/meta/files/ext-sdk-prepare.py
@@ -54,7 +54,7 @@ def main():
ret = run_command_interruptible('BB_SETSCENE_ENFORCE=1 bitbake --quiet %s' % ' '.join(sdk_targets))
if not ret:
- ret = run_command_interruptible('bitbake build-sysroots')
+ ret = run_command_interruptible('bitbake --quiet build-sysroots')
lastlog = get_last_consolelog()
if lastlog:
with open(lastlog, 'r') as f: