diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-31 19:44:49 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-02-03 10:15:51 +0000 |
commit | fd8f71b95da86f530aae3d02a14b0ccd9e024772 (patch) | |
tree | 8b589c59c233c8b956a784a679726530cfd0fd67 /hw/arm/orangepi.c | |
parent | e022f2a205b93f5c5203352c0482634b4ec705ea (diff) | |
download | qemu-fd8f71b95da86f530aae3d02a14b0ccd9e024772.zip qemu-fd8f71b95da86f530aae3d02a14b0ccd9e024772.tar.gz qemu-fd8f71b95da86f530aae3d02a14b0ccd9e024772.tar.bz2 |
hw/arm: Display CPU type in machine description
Most of ARM machines display their CPU when QEMU list the available
machines (-M help). Some machines do not. Fix to unify the help
output.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Niek Linnenbank <nieklinnenbank@gmail.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20210131184449.382425-7-f4bug@amsat.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/orangepi.c')
-rw-r--r-- | hw/arm/orangepi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/orangepi.c b/hw/arm/orangepi.c index d6306df..40cdb5c 100644 --- a/hw/arm/orangepi.c +++ b/hw/arm/orangepi.c @@ -113,7 +113,7 @@ static void orangepi_init(MachineState *machine) static void orangepi_machine_init(MachineClass *mc) { - mc->desc = "Orange Pi PC"; + mc->desc = "Orange Pi PC (Cortex-A7)"; mc->init = orangepi_init; mc->block_default_type = IF_SD; mc->units_per_default_bus = 1; |