Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kunit: tool: Add support for m68k under QEMU

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>

authored by

Geert Uytterhoeven and committed by
Shuah Khan
60684c2b fe15c26e

+10
+10
tools/testing/kunit/qemu_configs/m68k.py
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + from ..qemu_config import QemuArchParams 3 + 4 + QEMU_ARCH = QemuArchParams(linux_arch='m68k', 5 + kconfig=''' 6 + CONFIG_VIRT=y''', 7 + qemu_arch='m68k', 8 + kernel_path='vmlinux', 9 + kernel_command_line='console=hvc0', 10 + extra_qemu_params=['-machine', 'virt'])