]> code.ossystems Code Review - openembedded-core.git/commitdiff
devtool/sdk: Run build-sysroots after installing new things
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 1 Mar 2017 01:13:34 +0000 (01:13 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 1 Mar 2017 16:11:39 +0000 (16:11 +0000)
After running sdk-install we need to ensure that the standalone sysroots are
updated as done when the eSDK is originally built. Add such a call so this
happens automatically and the envrionment scripts in the SDK work correctly
after updates.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/devtool/sdk.py

index f629db1876856961e3b887128c872e5ae9f0338e..e8bf0ad98c23132f7993018b5f1451cbece6a6fc 100644 (file)
@@ -306,6 +306,12 @@ def sdk_install(args, config, basepath, workspace):
         if failed:
             return 2
 
+        try:
+            exec_build_env_command(config.init_path, basepath, 'bitbake build-sysroots', watch=True)
+        except bb.process.ExecutionError as e:
+            raise DevtoolError('Failed to bitbake build-sysroots:\n%s' % (str(e)))
+
+
 def register_commands(subparsers, context):
     """Register devtool subcommands from the sdk plugin"""
     if context.fixed_setup: