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 shell`` command.
|
|
|
|
|
|
|
|
When this command is executed, kas will checkout repositories, setup the
|
|
|
|
build environment and then start a shell in the build environment. This
|
|
|
|
can be used to manually run ``bitbake`` with custom command line options
|
|
|
|
or to execute other commands such as ``runqemu``.
|
|
|
|
|
|
|
|
For example, to start a shell in the build environment for the file
|
|
|
|
``kas-project.yml`` you could run::
|
|
|
|
|
|
|
|
kas shell kas-project.yml
|
|
|
|
|
|
|
|
Or to invoke qemu to test an image which has been built::
|
|
|
|
|
|
|
|
kas shell kas-project.yml -c 'runqemu'
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2020-05-19 10:45:17 +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
|
2020-11-13 19:34:51 +01:00
|
|
|
from kas.libcmds import Macro, Command
|
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 Shell:
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Implements a kas plugin that opens a shell within the kas environment.
|
|
|
|
"""
|
|
|
|
|
2020-06-15 22:03:27 +02:00
|
|
|
name = 'shell'
|
|
|
|
helpmsg = 'Run a shell in the build environment.'
|
|
|
|
|
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 shell plugin
|
2017-06-28 14:48:41 +02:00
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2020-06-15 22:03:27 +02:00
|
|
|
parser.add_argument('-k', '--keep-config-unchanged',
|
2017-08-01 10:31:49 +02:00
|
|
|
help='Skip steps that change the configuration',
|
|
|
|
action='store_true')
|
2020-06-15 22:03:27 +02:00
|
|
|
parser.add_argument('-c', '--command',
|
2017-06-14 13:36:37 +02:00
|
|
|
help='Run command',
|
|
|
|
default='')
|
|
|
|
|
|
|
|
def run(self, args):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Runs this kas plugin
|
|
|
|
"""
|
|
|
|
|
2020-06-15 22:03:29 +02:00
|
|
|
ctx = create_global_context(args)
|
2020-11-06 12:50:20 +01:00
|
|
|
ctx.config = Config(args.config)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2020-11-13 19:34:50 +01:00
|
|
|
if args.keep_config_unchanged:
|
|
|
|
# Skip the tasks which would change the config of the build
|
|
|
|
# environment
|
|
|
|
args.skip += [
|
|
|
|
'setup_dir',
|
|
|
|
'finish_setup_repos',
|
|
|
|
'repos_apply_patches',
|
|
|
|
'write_bbconfig',
|
|
|
|
]
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
macro = Macro()
|
|
|
|
macro.add(ShellCommand(args.command))
|
2018-08-13 14:11:22 +02:00
|
|
|
macro.run(ctx, args.skip)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ShellCommand(Command):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This class implements the command that starts a shell.
|
|
|
|
"""
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
def __init__(self, cmd):
|
2017-06-21 13:32:56 +02:00
|
|
|
super().__init__()
|
2017-06-14 13:36:37 +02:00
|
|
|
self.cmd = []
|
|
|
|
if cmd:
|
|
|
|
self.cmd = cmd
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return 'shell'
|
|
|
|
|
2018-08-13 14:11:22 +02:00
|
|
|
def execute(self, ctx):
|
|
|
|
cmd = [ctx.environ.get('SHELL', '/bin/sh')]
|
2017-06-14 13:36:37 +02:00
|
|
|
if self.cmd:
|
|
|
|
cmd.append('-c')
|
|
|
|
cmd.append(self.cmd)
|
2020-05-19 10:45:17 +02:00
|
|
|
ret = subprocess.call(cmd, env=ctx.environ, cwd=ctx.build_dir)
|
|
|
|
if ret != 0:
|
|
|
|
logging.error('Shell returned non-zero exit status %d', ret)
|
|
|
|
sys.exit(ret)
|
2020-10-16 19:31:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
__KAS_PLUGINS__ = [Shell]
|