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_32BIT=y
8CONFIG_CPU_BIG_ENDIAN=y
9CONFIG_MIPS_MALTA=y
10CONFIG_SERIAL_8250=y
11CONFIG_SERIAL_8250_CONSOLE=y
12CONFIG_POWER_RESET=y
13CONFIG_POWER_RESET_SYSCON=y
14''',
15 qemu_arch='mips',
16 kernel_path='vmlinuz',
17 kernel_command_line='console=ttyS0',
18 extra_qemu_params=['-M', 'malta'])