diff options
author | Brendan Higgins <brendanhiggins@google.com> | 2021-05-27 00:24:06 +0300 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2021-06-12 01:10:23 +0300 |
commit | 87c9c16317882dd6dbbc07e349bc3223e14f3244 (patch) | |
tree | fd678aef9225e5272a2a74ae8e9f95d895e2d61e /tools/testing/kunit/qemu_config.py | |
parent | 12ca7a893d543a64130d15c765fc18497b2ea65f (diff) | |
download | linux-87c9c16317882dd6dbbc07e349bc3223e14f3244.tar.xz |
kunit: tool: add support for QEMU
Add basic support to run QEMU via kunit_tool. Add support for i386,
x86_64, arm, arm64, and a bunch more.
Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
Tested-by: David Gow <davidgow@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/kunit/qemu_config.py')
-rw-r--r-- | tools/testing/kunit/qemu_config.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/testing/kunit/qemu_config.py b/tools/testing/kunit/qemu_config.py new file mode 100644 index 000000000000..1672f6184e95 --- /dev/null +++ b/tools/testing/kunit/qemu_config.py @@ -0,0 +1,16 @@ +# 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> + +from collections import namedtuple + + +QemuArchParams = namedtuple('QemuArchParams', ['linux_arch', + 'kconfig', + 'qemu_arch', + 'kernel_path', + 'kernel_command_line', + 'extra_qemu_params']) |