summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/package.py')
-rw-r--r--scripts/lib/devtool/package.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/scripts/lib/devtool/package.py b/scripts/lib/devtool/package.py
new file mode 100644
index 0000000000..3a7a36b600
--- /dev/null
+++ b/scripts/lib/devtool/package.py
@@ -0,0 +1,61 @@
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
19import os
20import subprocess
21import logging
22from bb.process import ExecutionError
23from devtool import exec_build_env_command, setup_tinfoil, DevtoolError
24
25logger = logging.getLogger('devtool')
26
27def plugin_init(pluginlist):
28 """Plugin initialization"""
29 pass
30
31def 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
56def 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)