[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v9 05/50] target/arm: only build psci for TCG
From: |
Claudio Fontana |
Subject: |
[RFC v9 05/50] target/arm: only build psci for TCG |
Date: |
Wed, 17 Mar 2021 19:29:28 +0100 |
We do not move psci.c to tcg/ because we expect other
hypervisors to use it (waiting for HVF enablement).
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Cc: Alexander Graf <agraf@csgraf.de>
---
target/arm/meson.build | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/target/arm/meson.build b/target/arm/meson.build
index 0172937b40..a9fdada0cc 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -19,8 +19,12 @@ arm_softmmu_ss.add(files(
'arm-powerctl.c',
'machine.c',
'monitor.c',
+))
+
+arm_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
'psci.c',
))
+
arm_user_ss = ss.source_set()
subdir('tcg')
--
2.26.2
- [RFC v9 00/50] arm cleanup experiment for kvm-only build, Claudio Fontana, 2021/03/17
- [RFC v9 03/50] arm: tcg: only build under CONFIG_TCG, Claudio Fontana, 2021/03/17
- [RFC v9 04/50] target/arm: tcg: add sysemu and user subsirs, Claudio Fontana, 2021/03/17
- [RFC v9 02/50] target/arm: move helpers to tcg/, Claudio Fontana, 2021/03/17
- [RFC v9 07/50] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/17
- [RFC v9 05/50] target/arm: only build psci for TCG,
Claudio Fontana <=
- [RFC v9 10/50] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/17
- [RFC v9 01/50] target/arm: move translate modules to tcg/, Claudio Fontana, 2021/03/17
- [RFC v9 12/50] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/17
- [RFC v9 06/50] target/arm: split off cpu-sysemu.c, Claudio Fontana, 2021/03/17
- [RFC v9 11/50] target/arm: move cpu definitions to common cpu module, Claudio Fontana, 2021/03/17
- [RFC v9 16/50] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/17
- [RFC v9 19/50] target/arm: move arm_sctlr away from tcg helpers, Claudio Fontana, 2021/03/17
- [RFC v9 08/50] target/arm: cpu-mmu: fix comment style, Claudio Fontana, 2021/03/17
- [RFC v9 15/50] target/arm: add temporary stub for arm_rebuild_hflags, Claudio Fontana, 2021/03/17
- [RFC v9 14/50] target/arm: move cpsr_read, cpsr_write to cpu_common, Claudio Fontana, 2021/03/17