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 v5.18 16 lines 449 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# 3# Collection of configs for building non-UML kernels and running them on QEMU. 4# 5# Copyright (C) 2021, Google LLC. 6# Author: Brendan Higgins <brendanhiggins@google.com> 7 8from collections import namedtuple 9 10 11QemuArchParams = namedtuple('QemuArchParams', ['linux_arch', 12 'kconfig', 13 'qemu_arch', 14 'kernel_path', 15 'kernel_command_line', 16 'extra_qemu_params'])