blob: ec3e76f836b2964c2344712e34945d69e8e9875a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
graphic: 0.779
instruction: 0.761
device: 0.737
network: 0.504
semantic: 0.351
vnc: 0.301
socket: 0.228
boot: 0.181
KVM: 0.168
mistranslation: 0.146
other: 0.047
assembly: 0.018
qemu-system-riscv64 Property 'virt-machine.aclint' not found
Description of problem:
Steps to reproduce:
1. run ./qemu-system-riscv64 -M virt,aclint=on
2. command output:
```
qemu-system-riscv64: Property 'virt-machine.aclint' not found
```
Additional information:
The aclint property is registered in the virt_machine_class_init function and depends on the condition tcg_enabled(), but the initialization of tcg_enabled() is later than the call of virt_machine_class_init. This caused the aclint property to never be registered.
|