Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at ec4ddc90d201d09ef4e4bef8a2c6d9624525ad68 17 lines 451 B view raw
1# SPDX-License-Identifier: GPL-2.0 2 3from ..qemu_config import QemuArchParams 4 5QEMU_ARCH = QemuArchParams(linux_arch='powerpc', 6 kconfig=''' 7CONFIG_PPC32=y 8CONFIG_CPU_BIG_ENDIAN=y 9CONFIG_ADB_CUDA=y 10CONFIG_SERIAL_PMACZILOG=y 11CONFIG_SERIAL_PMACZILOG_TTYS=y 12CONFIG_SERIAL_PMACZILOG_CONSOLE=y 13''', 14 qemu_arch='ppc', 15 kernel_path='vmlinux', 16 kernel_command_line='console=ttyS0', 17 extra_qemu_params=['-M', 'g3beige', '-cpu', 'max'])