blob: df258544952d8f63f0a4a451a1a982ce0d110878 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
mistranslation: 0.915
device: 0.871
boot: 0.842
other: 0.798
vnc: 0.715
network: 0.688
socket: 0.685
KVM: 0.637
instruction: 0.609
assembly: 0.531
graphic: 0.528
semantic: 0.270
alphabetical order of monitor options
Looking for the 'continue'/'resume' option I found this order that was not quite 'alphabetical'.
It had me overlook the 'cont' option at glance. Which is just a little impractical.
...
boot_set bootdevice -- define new values for the boot device list
change device filename [format [read-only-mode]] -- change a removable medium, optional format
chardev-add args -- add chardev
chardev-remove id -- remove chardev
client_migrate_info protocol hostname port tls-port cert-subject -- set migration information for remote display
closefd closefd name -- close a file descriptor previously passed via SCM rights
commit device|all -- commit changes to the disk images (if -snapshot is used) or backing files
cpu index -- set the default CPU
cpu-add id -- add cpu
c|cont -- resume emulation
delvm tag|id -- delete a VM snapshot from its tag or id
...
I tested this list with 'sort' just to make sure and make a point:
$ cat Desktop/order-orig.txt
boot_set
change
chardev-add
chardev-remove
client_migrate_info
closefd
commit
cpu
cpu-add
c|cont
delvm
$ cat Desktop/order-orig.txt | sort
boot_set
c|cont
change
chardev-add
chardev-remove
client_migrate_info
closefd
commit
cpu
cpu-add
delvm
$
Should be fixed by this patch: https://<email address hidden>/
Fix has been included here:
https://gitlab.com/qemu-project/qemu/-/commit/ff688cd2c7c3a677b71e
|