GNU Linux-libre 5.15.137-gnu
[releases.git] / tools / testing / kunit / qemu_config.py
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
8 from collections import namedtuple
9
10
11 QemuArchParams = namedtuple('QemuArchParams', ['linux_arch',
12                                                'kconfig',
13                                                'qemu_arch',
14                                                'kernel_path',
15                                                'kernel_command_line',
16                                                'extra_qemu_params'])