diff options
| author | Thomas Huth <thuth@redhat.com> | 2022-07-05 17:10:30 +0200 |
|---|---|---|
| committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2022-07-06 10:23:39 -0300 |
| commit | 7886605961d0a9c40ada0c28dee5fa0b42a30836 (patch) | |
| tree | ea3a9429d751eb7a1e39c20ac50d6171d18d65f8 | |
| parent | c7e89de13224c1e6409152602ac760ac91f606b4 (diff) | |
| download | focaccia-qemu-7886605961d0a9c40ada0c28dee5fa0b42a30836.tar.gz focaccia-qemu-7886605961d0a9c40ada0c28dee5fa0b42a30836.zip | |
target/ppc/cpu-models: Remove the "default" CPU alias
QEMU emulates a *lot* of PowerPC-based machines - having a CPU that is named "default" and cannot be used with most of those machines sounds just wrong. Thus let's remove this old and confusing alias now. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20220705151030.662140-1-thuth@redhat.com> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
| -rw-r--r-- | target/ppc/cpu-models.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/ppc/cpu-models.c b/target/ppc/cpu-models.c index 05589eb21d..8538493061 100644 --- a/target/ppc/cpu-models.c +++ b/target/ppc/cpu-models.c @@ -917,6 +917,6 @@ PowerPCCPUAlias ppc_cpu_aliases[] = { #endif { "ppc32", "604" }, { "ppc", "604" }, - { "default", "604" }, + { NULL, NULL } }; |