diff options
author | Alistair Francis | 2017-11-13 14:55:26 +0100 |
---|---|---|
committer | Peter Maydell | 2017-11-13 14:55:26 +0100 |
commit | 83926ad52789bc13d5b4bbd1fd3366e5bace9a3b (patch) | |
tree | 519987c3a551125fcf1156ff72bc5e04fda6ab3e /hw/arm/xlnx-zcu102.c | |
parent | xlnx-zynqmp: Properly support the smp command line option (diff) | |
download | qemu-83926ad52789bc13d5b4bbd1fd3366e5bace9a3b.tar.gz qemu-83926ad52789bc13d5b4bbd1fd3366e5bace9a3b.tar.xz qemu-83926ad52789bc13d5b4bbd1fd3366e5bace9a3b.zip |
xlnx-zcu102: Add an info message deprecating the EP108
The EP108 was an early access development board that is no longer used.
Add an info message to convert any users to the ZCU102 instead. On QEMU
they are both identical.
This patch also updated the qemu-doc.texi file to indicate that the
EP108 has been deprecated.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Emilio G. Cota <cota@braap.org>
Message-id: 1510343626-25861-4-git-send-email-cota@braap.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/xlnx-zcu102.c')
-rw-r--r-- | hw/arm/xlnx-zcu102.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/arm/xlnx-zcu102.c b/hw/arm/xlnx-zcu102.c index 7ec03dad42..adddd234a1 100644 --- a/hw/arm/xlnx-zcu102.c +++ b/hw/arm/xlnx-zcu102.c @@ -164,6 +164,9 @@ static void xlnx_ep108_init(MachineState *machine) { XlnxZCU102 *s = EP108_MACHINE(machine); + info_report("The Xilinx EP108 machine is deprecated, please use the " + "ZCU102 machine instead. It has the same features supported."); + xlnx_zynqmp_init(s, machine); } |