aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/kunit/qemu_configs/powerpc.py
blob: 7ec38d4131f7ec3b95d1ec6e49c60a6945be47c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from ..qemu_config import QemuArchParams

QEMU_ARCH = QemuArchParams(linux_arch='powerpc',
			   kconfig='''
CONFIG_PPC64=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_HVC_CONSOLE=y''',
			   qemu_arch='ppc64',
			   kernel_path='vmlinux',
			   kernel_command_line='console=ttyS0',
			   extra_qemu_params=['-M', 'pseries', '-cpu', 'power8'])