diff options
author | Dave Cobbley <david.j.cobbley@linux.intel.com> | 2018-08-14 10:05:37 -0700 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-08-22 21:26:31 -0400 |
commit | eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 (patch) | |
tree | de291a73dc37168da6370e2cf16c347d1eba9df8 /import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py | |
parent | 9c3cf826d853102535ead04cebc2d6023eff3032 (diff) | |
download | blackbird-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.tar.gz blackbird-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.zip |
[Subtree] Removing import-layers directory
As part of the move to subtrees, need to bring all the import layers
content to the top level.
Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f
Signed-off-by: Dave Cobbley <david.j.cobbley@linux.intel.com>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py')
-rw-r--r-- | import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py b/import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py deleted file mode 100644 index b89d65b0c..000000000 --- a/import-layers/yocto-poky/scripts/lib/devtool/build_sdk.py +++ /dev/null @@ -1,65 +0,0 @@ -# Development tool - build-sdk command plugin -# -# Copyright (C) 2015-2016 Intel Corporation -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -import os -import subprocess -import logging -import glob -import shutil -import errno -import sys -import tempfile -from devtool import exec_build_env_command, setup_tinfoil, parse_recipe, DevtoolError -from devtool import build_image - -logger = logging.getLogger('devtool') - - -def build_sdk(args, config, basepath, workspace): - """Entry point for the devtool build-sdk command""" - - sdk_targets = config.get('SDK', 'sdk_targets', '').split() - if sdk_targets: - image = sdk_targets[0] - else: - raise DevtoolError('Unable to determine image to build SDK for') - - extra_append = ['SDK_DERIVATIVE = "1"'] - try: - result, outputdir = build_image.build_image_task(config, - basepath, - workspace, - image, - task='populate_sdk_ext', - extra_append=extra_append) - except build_image.TargetNotImageError: - raise DevtoolError('Unable to determine image to build SDK for') - - if result == 0: - logger.info('Successfully built SDK. You can find output files in %s' - % outputdir) - return result - - -def register_commands(subparsers, context): - """Register devtool subcommands""" - if context.fixed_setup: - parser_build_sdk = subparsers.add_parser('build-sdk', - help='Build a derivative SDK of this one', - description='Builds an extensible SDK based upon this one and the items in your workspace', - group='advanced') - parser_build_sdk.set_defaults(func=build_sdk) |