diff options
author | Thomas Weißschuh <thomas.weissschuh@linutronix.de> | 2025-04-07 10:17:12 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2025-04-14 10:02:37 -0600 |
commit | 9aa08e761b67e3d8b5ca2ff1e9194a73d3000cce (patch) | |
tree | 3678d891e9512e5ac1d8d53b5432be8e587fe27b | |
parent | a571a9a1b120264e24b41eddf1ac5140131bfa84 (diff) |
kunit: qemu_configs: Add riscv32 config
Add a basic config to run kunit tests on riscv32.
Link: https://lore.kernel.org/r/20250407-kunit-qemu-riscv32-v1-1-7b9800034a35@linutronix.de
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
-rw-r--r-- | tools/testing/kunit/qemu_configs/riscv32.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/testing/kunit/qemu_configs/riscv32.py b/tools/testing/kunit/qemu_configs/riscv32.py new file mode 100644 index 0000000000000..b79ba0ae30f85 --- /dev/null +++ b/tools/testing/kunit/qemu_configs/riscv32.py @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: GPL-2.0 + +from ..qemu_config import QemuArchParams + +QEMU_ARCH = QemuArchParams(linux_arch='riscv', + kconfig=''' +CONFIG_NONPORTABLE=y +CONFIG_ARCH_RV32I=y +CONFIG_ARCH_VIRT=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_OF_PLATFORM=y +''', + qemu_arch='riscv32', + kernel_path='arch/riscv/boot/Image', + kernel_command_line='console=ttyS0', + extra_qemu_params=['-machine', 'virt']) |