brintos

brintos / linux-shallow public Read only

0
0
Text · 496 B · 78a474a Raw
18 lines · python
1# SPDX-License-Identifier: GPL-2.0-only2from ..qemu_config import QemuArchParams3 4QEMU_ARCH = QemuArchParams(linux_arch='sh',5			   kconfig='''6CONFIG_CPU_SUBTYPE_SH7751R=y7CONFIG_MEMORY_START=0x0c0000008CONFIG_SH_RTS7751R2D=y9CONFIG_RTS7751R2D_PLUS=y10CONFIG_SERIAL_SH_SCI=y''',11			   qemu_arch='sh4',12			   kernel_path='arch/sh/boot/zImage',13			   kernel_command_line='console=ttySC1',14			   serial='null',15			   extra_qemu_params=[16					    '-machine', 'r2d',17					    '-serial', 'mon:stdio'])18