xref: /openbmc/linux/tools/testing/kunit/qemu_configs/i386.py (revision a8f4fcdd8ba7d191c29ae87a2315906fe90368d6)
1from ..qemu_config import QemuArchParams
2
3QEMU_ARCH = QemuArchParams(linux_arch='i386',
4			   kconfig='''
5CONFIG_SERIAL_8250=y
6CONFIG_SERIAL_8250_CONSOLE=y''',
7			   qemu_arch='x86_64',
8			   kernel_path='arch/x86/boot/bzImage',
9			   kernel_command_line='console=ttyS0',
10			   extra_qemu_params=[''])
11