[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 5/7] hw/arm/sbsa-ref: Restrict SBSA-ref board to 64-bit build
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 5/7] hw/arm/sbsa-ref: Restrict SBSA-ref board to 64-bit build |
Date: |
Sun, 31 Jan 2021 11:59:16 +0100 |
The SBSA-ref board only use CPUs available in the 64-bit build,
it is pointless to have it available in the 32-bit build.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
Cc: Radoslaw Biernacki <rad@semihalf.com>
Cc: Leif Lindholm <leif@nuviainc.com>
---
hw/arm/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/arm/meson.build b/hw/arm/meson.build
index be39117b9b6..059ff7382f2 100644
--- a/hw/arm/meson.build
+++ b/hw/arm/meson.build
@@ -22,7 +22,7 @@
arm_ss.add(when: 'CONFIG_TOSA', if_true: files('tosa.c'))
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_SBSA_REF', 'TARGET_AARCH64'], if_true:
files('sbsa-ref.c'))
arm_ss.add(when: 'CONFIG_STELLARIS', if_true: files('stellaris.c'))
arm_ss.add(when: 'CONFIG_COLLIE', if_true: files('collie.c'))
arm_ss.add(when: 'CONFIG_VERSATILE', if_true: files('versatilepb.c'))
--
2.26.2
- [PATCH v2 0/7] hw/arm: Misc trivial fixes/cleanups, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 1/7] hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 2/7] hw/arm/exynos4210: Add missing dependency on OR_IRQ, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 3/7] hw/arm/xlnx-versal: Versal SoC requires ZDMA, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 4/7] hw/arm/virt: Do not include 64-bit CPUs in 32-bit build, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 5/7] hw/arm/sbsa-ref: Restrict SBSA-ref board to 64-bit build,
Philippe Mathieu-Daudé <=
- [PATCH v2 6/7] hw/arm/xlnx-zcu102: Restrict ZynqMP ZCU102 board to 64-bit build, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 7/7] hw/arm: Display CPU type in machine description, Philippe Mathieu-Daudé, 2021/01/31