brintos

brintos / linux-shallow public Read only

0
0
Text · 380 B · 98fa4fb Raw
15 lines · python
1from ..qemu_config import QemuArchParams2 3QEMU_ARCH = QemuArchParams(linux_arch='s390',4			   kconfig='''5CONFIG_EXPERT=y6CONFIG_TUNE_ZEC12=y7CONFIG_NUMA=y8CONFIG_MODULES=y''',9			   qemu_arch='s390x',10			   kernel_path='arch/s390/boot/bzImage',11			   kernel_command_line='console=ttyS0',12			   extra_qemu_params=[13					   '-machine', 's390-ccw-virtio',14					   '-cpu', 'qemu',])15