Skip to content

Commit 2398cb8

Browse files
committed
qemu: Look for the specified CPU when booting ppce500
1 parent 3c5f319 commit 2398cb8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/qemu.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ def apply_defaults(self):
9595
self.cpuinfo = ['PowerPC 44x Platform']
9696
elif self.machine == 'ppce500':
9797
self.cpuinfo = ['QEMU ppce500']
98+
if self.cpu:
99+
self.cpuinfo.insert(0, f'cpu\s+: {self.cpu}')
98100

99101
if self.qemu_path is None:
100102
if self.machine_is('pseries') or self.machine_is('powernv'):

0 commit comments

Comments
 (0)