mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 02:25:58 +00:00

Add basic configs to run kunit tests on some more PowerPC variants. Link: https://lore.kernel.org/r/20250415-kunit-ppc-v1-2-f5a170264147@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>
15 lines
371 B
Python
15 lines
371 B
Python
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
from ..qemu_config import QemuArchParams
|
|
|
|
QEMU_ARCH = QemuArchParams(linux_arch='powerpc',
|
|
kconfig='''
|
|
CONFIG_PPC64=y
|
|
CONFIG_CPU_LITTLE_ENDIAN=y
|
|
CONFIG_HVC_CONSOLE=y
|
|
''',
|
|
qemu_arch='ppc64',
|
|
kernel_path='vmlinux',
|
|
kernel_command_line='console=ttyS0',
|
|
extra_qemu_params=['-M', 'pseries', '-cpu', 'power8'])
|