brintos

brintos / linux-shallow public Read only

0
0
Text · 464 B · b1fba90 Raw
21 lines · python
1# SPDX-License-Identifier: GPL-2.02#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 dataclasses import dataclass9from typing import List10 11 12@dataclass(frozen=True)13class QemuArchParams:14  linux_arch: str15  kconfig: str16  qemu_arch: str17  kernel_path: str18  kernel_command_line: str19  extra_qemu_params: List[str]20  serial: str = 'stdio'21