Skip to content

Commit

Permalink
linux-user: set default PPC64 CPU
Browse files Browse the repository at this point in the history
The default CPU for pseries has been set to POWER9 by default.
We can use the same default for linux-user

Signed-off-by: Laurent Vivier <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
  • Loading branch information
vivier committed Jun 24, 2019
1 parent 24c373e commit b50d1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linux-user/ppc/target_elf.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
static inline const char *cpu_get_model(uint32_t eflags)
{
#ifdef TARGET_PPC64
return "POWER8";
return "POWER9";
#else
return "750";
#endif
Expand Down

0 comments on commit b50d1e4

Please sign in to comment.