SushiHangover

PowerShell, Learn it or Perish ;-)

master nix
Gitter

Qemu Machine and CPU list

"QEMU"I merged the latest changes from QEMU 2.0 RC master into the changes that I am making and noticed that since there is no default ARM ‘machine’ any more, you can not get a cpu listing without giving it a machine:

1
2
3
qemu-system-arm -cpu help
No machine specified, and there is no default.
Use -machine help to list supported machines!

So now, you will need to include any machine (–machine help) in order to see the cpu listing, using the ARM Cortex-M0+ dev board that I am putting together (sushi-m0plus-board), you can get the cpu listing.

The cores; cortex-m0, cortex-m0+ and machine; sushi-m0plus-board, are my additions and not apart of the QEMU main-line code.

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
qemu-system-arm --machine sushi-m0plus-board -cpu help
Available CPUs:
  arm1026
  arm1136
  arm1136-r2
  arm1176
  arm11mpcore
  arm926
  arm946
  cortex-a15
  cortex-a8
  cortex-a9
  cortex-m0
  cortex-m0plus
  cortex-m3
  pxa250
  pxa255
  pxa260
  pxa261
  pxa262
  pxa270-a0
  pxa270-a1
  pxa270
  pxa270-b0
  pxa270-b1
  pxa270-c0
  pxa270-c5
  sa1100
  sa1110
  ti925t

Comments