2017-06-14 13:36:37 +02:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
2018-09-05 11:13:03 +02:00
|
|
|
# Copyright (c) Siemens AG, 2017-2018
|
2017-06-14 13:36:37 +02:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
2020-11-06 12:50:18 +01:00
|
|
|
This plugin implements the ``kas build`` command.
|
|
|
|
|
|
|
|
When this command is executed, kas will checkout repositories, setup the
|
|
|
|
build environment and then invoke bitbake to build the targets selected
|
|
|
|
in the chosen config file.
|
|
|
|
|
|
|
|
For example, to build the configuration described in the file
|
|
|
|
``kas-project.yml`` you could run::
|
|
|
|
|
|
|
|
kas build kas-project.yml
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2018-09-03 10:02:06 +02:00
|
|
|
import logging
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2020-10-16 19:31:45 +02:00
|
|
|
from kas.context import create_global_context
|
|
|
|
from kas.config import Config
|
|
|
|
from kas.libkas import find_program, run_cmd
|
2020-11-13 19:34:51 +01:00
|
|
|
from kas.libcmds import Macro, Command
|
2021-07-10 11:22:34 +02:00
|
|
|
from kas.libkas import setup_parser_common_args
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
__license__ = 'MIT'
|
2018-09-05 11:13:03 +02:00
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018'
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Build:
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This class implements the build plugin for kas.
|
|
|
|
"""
|
|
|
|
|
2020-06-15 22:03:27 +02:00
|
|
|
name = 'build'
|
|
|
|
helpmsg = (
|
|
|
|
'Checks out all necessary repositories and builds using bitbake as '
|
2020-11-06 12:50:18 +01:00
|
|
|
'specified in the configuration file.'
|
2020-06-15 22:03:27 +02:00
|
|
|
)
|
|
|
|
|
2017-06-28 14:48:41 +02:00
|
|
|
@classmethod
|
2020-06-15 22:03:27 +02:00
|
|
|
def setup_parser(cls, parser):
|
2017-06-28 14:48:41 +02:00
|
|
|
"""
|
2020-06-15 22:03:27 +02:00
|
|
|
Setup the argument parser for the build plugin
|
2017-06-28 14:48:41 +02:00
|
|
|
"""
|
2020-06-15 22:03:27 +02:00
|
|
|
|
2021-07-10 11:22:34 +02:00
|
|
|
setup_parser_common_args(parser)
|
2020-06-15 22:03:27 +02:00
|
|
|
parser.add_argument('extra_bitbake_args',
|
|
|
|
nargs='*',
|
2021-09-16 08:04:06 +02:00
|
|
|
help='Extra arguments to pass to bitbake '
|
|
|
|
'(typically requires separation via \'--\')')
|
2020-06-15 22:03:27 +02:00
|
|
|
parser.add_argument('--target',
|
|
|
|
action='append',
|
|
|
|
help='Select target to build')
|
|
|
|
parser.add_argument('-c', '--cmd', '--task', dest='task',
|
|
|
|
help='Select which task should be executed')
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
def run(self, args):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Executes the build command of the kas plugin.
|
|
|
|
"""
|
|
|
|
|
2022-03-14 12:37:47 +01:00
|
|
|
if args.config and args.config.startswith('-'):
|
|
|
|
args.extra_bitbake_args.insert(0, args.config)
|
|
|
|
args.config = None
|
|
|
|
|
2020-06-15 22:03:29 +02:00
|
|
|
ctx = create_global_context(args)
|
2021-08-18 15:36:49 +02:00
|
|
|
ctx.config = Config(ctx, args.config, args.target, args.task)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
macro = Macro()
|
2020-05-19 10:45:18 +02:00
|
|
|
macro.add(BuildCommand(args.extra_bitbake_args))
|
2018-08-13 14:11:22 +02:00
|
|
|
macro.run(ctx, args.skip)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
class BuildCommand(Command):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
2018-09-05 11:13:03 +02:00
|
|
|
Implements the bitbake build step.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
|
2020-05-19 10:45:18 +02:00
|
|
|
def __init__(self, extra_bitbake_args):
|
2017-06-21 13:32:56 +02:00
|
|
|
super().__init__()
|
2020-05-19 10:45:18 +02:00
|
|
|
self.extra_bitbake_args = extra_bitbake_args
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return 'build'
|
|
|
|
|
2018-08-13 14:11:22 +02:00
|
|
|
def execute(self, ctx):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Executes the bitbake build command.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
# Start bitbake build of image
|
2018-08-13 14:11:22 +02:00
|
|
|
bitbake = find_program(ctx.environ['PATH'], 'bitbake')
|
2021-01-19 18:10:06 +01:00
|
|
|
cmd = [bitbake, '-c', ctx.config.get_bitbake_task()] \
|
2020-06-17 08:09:14 +02:00
|
|
|
+ self.extra_bitbake_args + ctx.config.get_bitbake_targets()
|
2018-09-03 10:02:06 +02:00
|
|
|
if sys.stdout.isatty():
|
|
|
|
logging.info('%s$ %s', ctx.build_dir, ' '.join(cmd))
|
2020-05-19 10:45:16 +02:00
|
|
|
ret = subprocess.call(cmd, env=ctx.environ, cwd=ctx.build_dir)
|
|
|
|
if ret != 0:
|
|
|
|
logging.error('Command returned non-zero exit status %d', ret)
|
|
|
|
sys.exit(ret)
|
2018-09-03 10:02:06 +02:00
|
|
|
else:
|
|
|
|
run_cmd(cmd, cwd=ctx.build_dir)
|
2020-10-16 19:31:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
__KAS_PLUGINS__ = [Build]
|