diff options
author | Alexandre Iooss <erdnaxe@crans.org> | 2021-06-17 18:56:45 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-07-09 16:09:12 +0100 |
commit | 2ac2410c5e39ac4a317b38d14f0f878fe007c6e5 (patch) | |
tree | 9f60725706bc07a5dc192c413085b0f9e2073bf2 /hw/arm/meson.build | |
parent | 0f76debd1fff9bb8234e9ca921ef6f9c14be46a9 (diff) | |
download | qemu-2ac2410c5e39ac4a317b38d14f0f878fe007c6e5.zip qemu-2ac2410c5e39ac4a317b38d14f0f878fe007c6e5.tar.gz qemu-2ac2410c5e39ac4a317b38d14f0f878fe007c6e5.tar.bz2 |
stm32vldiscovery: Add the STM32VLDISCOVERY Machine
This is a Cortex-M3 based machine. Information can be found at:
https://www.st.com/en/evaluation-tools/stm32vldiscovery.html
Signed-off-by: Alexandre Iooss <erdnaxe@crans.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: 20210617165647.2575955-3-erdnaxe@crans.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/meson.build')
-rw-r--r-- | hw/arm/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/meson.build b/hw/arm/meson.build index 0e637e6..721a8eb 100644 --- a/hw/arm/meson.build +++ b/hw/arm/meson.build @@ -24,6 +24,7 @@ arm_ss.add(when: 'CONFIG_Z2', if_true: files('z2.c')) arm_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview.c')) arm_ss.add(when: 'CONFIG_SBSA_REF', if_true: files('sbsa-ref.c')) arm_ss.add(when: 'CONFIG_STELLARIS', if_true: files('stellaris.c')) +arm_ss.add(when: 'CONFIG_STM32VLDISCOVERY', if_true: files('stm32vldiscovery.c')) arm_ss.add(when: 'CONFIG_COLLIE', if_true: files('collie.c')) arm_ss.add(when: 'CONFIG_VERSATILE', if_true: files('versatilepb.c')) arm_ss.add(when: 'CONFIG_VEXPRESS', if_true: files('vexpress.c')) |