[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v6 05/38] target/arm: only build psci for TCG
From: |
Claudio Fontana |
Subject: |
[RFC v6 05/38] target/arm: only build psci for TCG |
Date: |
Thu, 11 Mar 2021 14:29:53 +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 v6 00/38] arm cleanup experiment for kvm-only build, Claudio Fontana, 2021/03/11
- [RFC v6 04/38] target/arm: tcg: add sysemu and user subsirs, Claudio Fontana, 2021/03/11
- [RFC v6 01/38] target/arm: move translate modules to tcg/, Claudio Fontana, 2021/03/11
- [RFC v6 05/38] target/arm: only build psci for TCG,
Claudio Fontana <=
- [RFC v6 02/38] target/arm: move helpers to tcg/, Claudio Fontana, 2021/03/11
- [RFC v6 06/38] target/arm: split off cpu-sysemu.c, Claudio Fontana, 2021/03/11
- [RFC v6 03/38] arm: tcg: only build under CONFIG_TCG, Claudio Fontana, 2021/03/11
- [RFC v6 08/38] target/arm: cpu-mmu: fix comment style, Claudio Fontana, 2021/03/11
- [RFC v6 11/38] target/arm: move cpu definitions to common cpu module, Claudio Fontana, 2021/03/11
- [RFC v6 13/38] target/arm: kvm: add stubs for some helpers, Claudio Fontana, 2021/03/11
- [RFC v6 07/38] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 12/38] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/11
- [RFC v6 16/38] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 10/38] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/11