mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-06 05:34:44 +02:00

This adds SPDX license headers in place of the wide assortment of things currently in our script headers. We default to GPL-2.0-only except for the oeqa code where it was clearly submitted and marked as MIT on the most part or some scripts which had the "or later" GPL versioning. The patch also drops other obsolete bits of file headers where they were encoountered such as editor modelines, obsolete maintainer information or the phrase "All rights reserved" which is now obsolete and not required in copyright headers (in this case its actually confusing for licensing as all rights were not reserved). More work is needed for OE-Core but this takes care of the bulk of the scripts and meta/lib directories. The top level LICENSE files are tweaked to match the new structure and the SPDX naming. (From OE-Core rev: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
65 lines
2.7 KiB
Python
65 lines
2.7 KiB
Python
# Development tool - runqemu command plugin
|
|
#
|
|
# Copyright (C) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
"""Devtool runqemu plugin"""
|
|
|
|
import os
|
|
import bb
|
|
import logging
|
|
import argparse
|
|
import glob
|
|
from devtool import exec_build_env_command, setup_tinfoil, DevtoolError
|
|
|
|
logger = logging.getLogger('devtool')
|
|
|
|
def runqemu(args, config, basepath, workspace):
|
|
"""Entry point for the devtool 'runqemu' subcommand"""
|
|
|
|
tinfoil = setup_tinfoil(config_only=True, basepath=basepath)
|
|
try:
|
|
machine = tinfoil.config_data.getVar('MACHINE')
|
|
bindir_native = os.path.join(tinfoil.config_data.getVar('STAGING_DIR'),
|
|
tinfoil.config_data.getVar('BUILD_ARCH'),
|
|
tinfoil.config_data.getVar('bindir_native').lstrip(os.path.sep))
|
|
finally:
|
|
tinfoil.shutdown()
|
|
|
|
if not glob.glob(os.path.join(bindir_native, 'qemu-system-*')):
|
|
raise DevtoolError('QEMU is not available within this SDK')
|
|
|
|
imagename = args.imagename
|
|
if not imagename:
|
|
sdk_targets = config.get('SDK', 'sdk_targets', '').split()
|
|
if sdk_targets:
|
|
imagename = sdk_targets[0]
|
|
if not imagename:
|
|
raise DevtoolError('Unable to determine image name to run, please specify one')
|
|
|
|
try:
|
|
# FIXME runqemu assumes that if OECORE_NATIVE_SYSROOT is set then it shouldn't
|
|
# run bitbake to find out the values of various environment variables, which
|
|
# isn't the case for the extensible SDK. Work around it for now.
|
|
newenv = dict(os.environ)
|
|
newenv.pop('OECORE_NATIVE_SYSROOT', '')
|
|
exec_build_env_command(config.init_path, basepath, 'runqemu %s %s %s' % (machine, imagename, " ".join(args.args)), watch=True, env=newenv)
|
|
except bb.process.ExecutionError as e:
|
|
# We've already seen the output since watch=True, so just ensure we return something to the user
|
|
return e.exitcode
|
|
|
|
return 0
|
|
|
|
def register_commands(subparsers, context):
|
|
"""Register devtool subcommands from this plugin"""
|
|
if context.fixed_setup:
|
|
parser_runqemu = subparsers.add_parser('runqemu', help='Run QEMU on the specified image',
|
|
description='Runs QEMU to boot the specified image',
|
|
group='testbuild', order=-20)
|
|
parser_runqemu.add_argument('imagename', help='Name of built image to boot within QEMU', nargs='?')
|
|
parser_runqemu.add_argument('args', help='Any remaining arguments are passed to the runqemu script (pass --help after imagename to see what these are)',
|
|
nargs=argparse.REMAINDER)
|
|
parser_runqemu.set_defaults(func=runqemu)
|