]> code.ossystems Code Review - openembedded-core.git/commitdiff
ext-sdk-prepare.py: use quiet mode when preparing sysroot
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Wed, 19 Apr 2017 08:57:29 +0000 (20:57 +1200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Apr 2017 09:38:31 +0000 (10:38 +0100)
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/files/ext-sdk-prepare.py

index ef096394bb60f21935e839cfa2fcafec8adffb88..96c5212a2e39a3af74bdda887c7b2cb80b4b9250 100644 (file)
@@ -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: