mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
60684c2bd3
Add basic support to run m68k under QEMU via kunit_tool. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Reviewed-by: David Gow <davidgow@google.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
11 lines
305 B
Python
11 lines
305 B
Python
# SPDX-License-Identifier: GPL-2.0-only
|
|
from ..qemu_config import QemuArchParams
|
|
|
|
QEMU_ARCH = QemuArchParams(linux_arch='m68k',
|
|
kconfig='''
|
|
CONFIG_VIRT=y''',
|
|
qemu_arch='m68k',
|
|
kernel_path='vmlinux',
|
|
kernel_command_line='console=hvc0',
|
|
extra_qemu_params=['-machine', 'virt'])
|