[oe-commits] [openembedded-core] 03/03: ext-sdk-prepare.py: use quiet mode when preparing sysroot

git at git.openembedded.org git at git.openembedded.org
Wed Apr 19 09:39:45 UTC 2017


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

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

commit 56b73788edaa0796e53f1a30e9ebdb2ae85b1646
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Wed Apr 19 20:57:29 2017 +1200

    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.
    
    Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/files/ext-sdk-prepare.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/files/ext-sdk-prepare.py b/meta/files/ext-sdk-prepare.py
index ef09639..96c5212 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:

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


More information about the Openembedded-commits mailing list