brintos

brintos / linux-shallow public Read only

0
0
Text · 408 B · db21602 Raw
14 lines · python
1from ..qemu_config import QemuArchParams2 3QEMU_ARCH = QemuArchParams(linux_arch='arm',4			   kconfig='''5CONFIG_ARCH_VIRT=y6CONFIG_SERIAL_AMBA_PL010=y7CONFIG_SERIAL_AMBA_PL010_CONSOLE=y8CONFIG_SERIAL_AMBA_PL011=y9CONFIG_SERIAL_AMBA_PL011_CONSOLE=y''',10			   qemu_arch='arm',11			   kernel_path='arch/arm/boot/zImage',12			   kernel_command_line='console=ttyAMA0',13			   extra_qemu_params=['-machine', 'virt'])14