We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b6d72 commit d282524Copy full SHA for d282524
tools/testing/kunit/qemu_configs/loongarch.py
@@ -0,0 +1,18 @@
1
+# SPDX-License-Identifier: GPL-2.0
2
+
3
+from ..qemu_config import QemuArchParams
4
5
+QEMU_ARCH = QemuArchParams(linux_arch='loongarch',
6
+ kconfig='''
7
+CONFIG_EFI_STUB=n
8
+CONFIG_PCI_HOST_GENERIC=y
9
+CONFIG_SERIAL_8250=y
10
+CONFIG_SERIAL_8250_CONSOLE=y
11
+CONFIG_SERIAL_OF_PLATFORM=y
12
+''',
13
+ qemu_arch='loongarch64',
14
+ kernel_path='arch/loongarch/boot/vmlinux.elf',
15
+ kernel_command_line='console=ttyS0',
16
+ extra_qemu_params=[
17
+ '-machine', 'virt',
18
+ '-cpu', 'max',])
0 commit comments