mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

The listing of subcommands in the --help output for devtool was starting to get difficult to follow, with commands appearing in no particular order (due to some being in separate modules and the order of those modules being parsed). Logically grouping the subcommands as well as being able to exercise some control over the order of the subcommands and groups would help, if we do so without losing the dynamic nature of the list (i.e. that it comes from the plugins). Argparse provides no built-in way to handle this and really, really makes it a pain to add, but with some subclassing and hacking it's now possible, and can be extended by any plugin as desired. To put a subcommand into a group, all you need to do is specify a group= parameter in the call to subparsers.add_parser(). you can also specify an order= parameter to make the subcommand sort higher or lower in the list (higher order numbers appear first, so use negative numbers to force items to the end if that's what you want). To add a new group, use subparsers.add_subparser_group(), supplying the name, description and optionally an order number for the group itself (again, higher numbers appear first). (From OE-Core rev: e1b9d31e6ea3c254ecfe940fe795af44761e0e69) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
66 lines
2.7 KiB
Python
66 lines
2.7 KiB
Python
# Development tool - runqemu command plugin
|
|
#
|
|
# Copyright (C) 2015 Intel Corporation
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
"""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)
|
|
machine = tinfoil.config_data.getVar('MACHINE', True)
|
|
bindir_native = tinfoil.config_data.getVar('STAGING_BINDIR_NATIVE', True)
|
|
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:
|
|
exec_build_env_command(config.init_path, basepath, 'runqemu %s %s %s' % (machine, imagename, " ".join(args.args)), watch=True)
|
|
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)
|