26 lines
690 B
Python
26 lines
690 B
Python
|
# Copyright (c) 2017 Linaro Limited.
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
'''Runner stub for QEMU.'''
|
||
|
|
||
|
from .core import ZephyrBinaryRunner
|
||
|
|
||
|
|
||
|
class QemuBinaryRunner(ZephyrBinaryRunner):
|
||
|
'''Place-holder for QEMU runner customizations.'''
|
||
|
|
||
|
def __init__(self, debug=False):
|
||
|
super(QemuBinaryRunner, self).__init__(debug=debug)
|
||
|
|
||
|
def replaces_shell_script(shell_script, command):
|
||
|
return shell_script == 'qemu.sh'
|
||
|
|
||
|
def create_from_env(command, debug):
|
||
|
'''Create runner. No environment dependencies.'''
|
||
|
return QemuBinaryRunner()
|
||
|
|
||
|
def run(self, command, **kwargs):
|
||
|
if command == 'debugserver':
|
||
|
print('Detached GDB server')
|