Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # Development tool - package command plugin |
| 2 | # |
| 3 | # Copyright (C) 2014-2015 Intel Corporation |
| 4 | # |
| 5 | # This program is free software; you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU General Public License version 2 as |
| 7 | # published by the Free Software Foundation. |
| 8 | # |
| 9 | # This program is distributed in the hope that it will be useful, |
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | # GNU General Public License for more details. |
| 13 | # |
| 14 | # You should have received a copy of the GNU General Public License along |
| 15 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 17 | """Devtool plugin containing the package subcommands""" |
| 18 | |
| 19 | import os |
| 20 | import subprocess |
| 21 | import logging |
| 22 | from bb.process import ExecutionError |
| 23 | from devtool import exec_build_env_command, setup_tinfoil, DevtoolError |
| 24 | |
| 25 | logger = logging.getLogger('devtool') |
| 26 | |
| 27 | def plugin_init(pluginlist): |
| 28 | """Plugin initialization""" |
| 29 | pass |
| 30 | |
| 31 | def package(args, config, basepath, workspace): |
| 32 | """Entry point for the devtool 'package' subcommand""" |
| 33 | if not args.recipename in workspace: |
| 34 | raise DevtoolError("no recipe named %s in your workspace" % |
| 35 | args.recipename) |
| 36 | |
| 37 | image_pkgtype = config.get('Package', 'image_pkgtype', '') |
| 38 | if not image_pkgtype: |
| 39 | tinfoil = setup_tinfoil() |
| 40 | try: |
| 41 | tinfoil.prepare(config_only=True) |
| 42 | image_pkgtype = tinfoil.config_data.getVar('IMAGE_PKGTYPE', True) |
| 43 | finally: |
| 44 | tinfoil.shutdown() |
| 45 | |
| 46 | package_task = config.get('Package', 'package_task', 'package_write_%s' % image_pkgtype) |
| 47 | try: |
| 48 | exec_build_env_command(config.init_path, basepath, 'bitbake -c %s %s' % (package_task, args.recipename), watch=True) |
| 49 | except bb.process.ExecutionError as e: |
| 50 | # We've already seen the output since watch=True, so just ensure we return something to the user |
| 51 | return e.exitcode |
| 52 | logger.info('Your packages are in %s/tmp/deploy/%s' % (basepath, image_pkgtype)) |
| 53 | |
| 54 | return 0 |
| 55 | |
| 56 | def register_commands(subparsers, context): |
| 57 | """Register devtool subcommands from the package plugin""" |
| 58 | if context.fixed_setup: |
| 59 | parser_package = subparsers.add_parser('package', help='Build packages for a recipe', description='Builds packages for a recipe\'s output files') |
| 60 | parser_package.add_argument('recipename', help='Recipe to package') |
| 61 | parser_package.set_defaults(func=package) |