3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-14 11:15:54 +00:00
Brooklyn/tools/testing/kunit/qemu_config.py

20 lines
440 B
Python
Raw Normal View History

2022-04-02 18:24:21 +05:00
# SPDX-License-Identifier: GPL-2.0
#
# Collection of configs for building non-UML kernels and running them on QEMU.
#
# Copyright (C) 2021, Google LLC.
# Author: Brendan Higgins <brendanhiggins@google.com>
2022-09-09 14:21:57 +05:00
from dataclasses import dataclass
from typing import List
2022-04-02 18:24:21 +05:00
2022-09-09 14:21:57 +05:00
@dataclass(frozen=True)
class QemuArchParams:
linux_arch: str
kconfig: str
qemu_arch: str
kernel_path: str
kernel_command_line: str
extra_qemu_params: List[str]