summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-04-19 20:57:29 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-04-19 10:38:37 +0100
commit2f3e34537ecf81639d28af991b5c8032aa8e9c17 (patch)
treec3731806ac9a825087befe4ba045c04384634f8e /meta/files
parent9e267ad1739d460127e4c7ab71e886e0b1f153a1 (diff)
downloadpoky-2f3e34537ecf81639d28af991b5c8032aa8e9c17.tar.gz
ext-sdk-prepare.py: use quiet mode when preparing sysroot
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. (From OE-Core rev: 56b73788edaa0796e53f1a30e9ebdb2ae85b1646) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/files')
-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():
54 54
55 ret = run_command_interruptible('BB_SETSCENE_ENFORCE=1 bitbake --quiet %s' % ' '.join(sdk_targets)) 55 ret = run_command_interruptible('BB_SETSCENE_ENFORCE=1 bitbake --quiet %s' % ' '.join(sdk_targets))
56 if not ret: 56 if not ret:
57 ret = run_command_interruptible('bitbake build-sysroots') 57 ret = run_command_interruptible('bitbake --quiet build-sysroots')
58 lastlog = get_last_consolelog() 58 lastlog = get_last_consolelog()
59 if lastlog: 59 if lastlog:
60 with open(lastlog, 'r') as f: 60 with open(lastlog, 'r') as f: