1 # SPDX-License-Identifier: GPL-2.0
3 # Collection of configs for building non-UML kernels and running them on QEMU.
5 # Copyright (C) 2021, Google LLC.
8 from dataclasses import dataclass
9 from typing import List
12 @dataclass(frozen=True)
18 kernel_command_line: str
19 extra_qemu_params: List[str]