Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.15.
 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
 8from collections import namedtuple
 9
10
11QemuArchParams = namedtuple('QemuArchParams', ['linux_arch',
12					       'kconfig',
13					       'qemu_arch',
14					       'kernel_path',
15					       'kernel_command_line',
16					       'extra_qemu_params'])