Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2
3from ..qemu_config import QemuArchParams
4
5QEMU_ARCH = QemuArchParams(linux_arch='mips',
6 kconfig='''
7CONFIG_CPU_MIPS64_R2=y
8CONFIG_64BIT=y
9CONFIG_CPU_BIG_ENDIAN=y
10CONFIG_MIPS_MALTA=y
11CONFIG_SERIAL_8250=y
12CONFIG_SERIAL_8250_CONSOLE=y
13CONFIG_POWER_RESET=y
14CONFIG_POWER_RESET_SYSCON=y
15''',
16 qemu_arch='mips64',
17 kernel_path='vmlinuz',
18 kernel_command_line='console=ttyS0',
19 extra_qemu_params=['-M', 'malta', '-cpu', '5KEc'])