From: Geert Uytterhoeven Date: Mon, 27 Feb 2023 11:12:45 +0000 (+0100) Subject: kunit: tool: Add support for m68k under QEMU X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=60684c2bd35064043360e6f716d1b7c20e967b7d;p=linux.git kunit: tool: Add support for m68k under QEMU Add basic support to run m68k under QEMU via kunit_tool. Signed-off-by: Geert Uytterhoeven Reviewed-by: David Gow Signed-off-by: Shuah Khan --- diff --git a/tools/testing/kunit/qemu_configs/m68k.py b/tools/testing/kunit/qemu_configs/m68k.py new file mode 100644 index 0000000000000..287fc386f8a7f --- /dev/null +++ b/tools/testing/kunit/qemu_configs/m68k.py @@ -0,0 +1,10 @@ +# 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'])