]> Git Repo - J-linux.git/blob - tools/testing/kunit/qemu_config.py
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.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 <[email protected]>
7
8 from dataclasses import dataclass
9 from typing import List
10
11
12 @dataclass(frozen=True)
13 class QemuArchParams:
14   linux_arch: str
15   kconfig: str
16   qemu_arch: str
17   kernel_path: str
18   kernel_command_line: str
19   extra_qemu_params: List[str]
20   serial: str = 'stdio'
This page took 0.027654 seconds and 4 git commands to generate.