brintos

brintos / linux-shallow public Read only

0
0
Text · 357 B · 7ec38d4 Raw
13 lines · python
1from ..qemu_config import QemuArchParams2 3QEMU_ARCH = QemuArchParams(linux_arch='powerpc',4			   kconfig='''5CONFIG_PPC64=y6CONFIG_SERIAL_8250=y7CONFIG_SERIAL_8250_CONSOLE=y8CONFIG_HVC_CONSOLE=y''',9			   qemu_arch='ppc64',10			   kernel_path='vmlinux',11			   kernel_command_line='console=ttyS0',12			   extra_qemu_params=['-M', 'pseries', '-cpu', 'power8'])13