[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 7/9] meson: Alias CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v3 7/9] meson: Alias CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY |
Date: |
Tue, 13 Jun 2023 15:33:45 +0200 |
We use the CONFIG_USER_ONLY key to describe user emulation,
and the CONFIG_SOFTMMU key to describe system emulation. Alias
it as 'CONFIG_SYSTEM_ONLY' for parity with user emulation.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/meson.build b/meson.build
index 34306a6205..8bfa37afe2 100644
--- a/meson.build
+++ b/meson.build
@@ -2862,6 +2862,7 @@ foreach target : target_dirs
endif
config_target += { 'CONFIG_BSD_USER': 'y' }
elif target.endswith('softmmu')
+ config_target += { 'CONFIG_SYSTEM_ONLY': 'y' }
config_target += { 'CONFIG_SOFTMMU': 'y' }
endif
if target.endswith('-user')
--
2.38.1
- [PATCH v3 0/9] bulk: Replace CONFIG_SOFTMMU by !CONFIG_USER_ONLY/CONFIG_SYSTEM_ONLY, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 1/9] target/i386: Simplify i386_tr_init_disas_context(), Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 2/9] target/tricore: Remove pointless CONFIG_SOFTMMU guard, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 3/9] target/m68k: Check for USER_ONLY definition instead of SOFTMMU one, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 4/9] target/ppc: Check for USER_ONLY definition instead of SOFTMMU one, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 5/9] hw/core/cpu: Check for USER_ONLY definition instead of SOFTMMU one, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 6/9] accel/tcg: Check for USER_ONLY definition instead of SOFTMMU one, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 7/9] meson: Alias CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY,
Philippe Mathieu-Daudé <=
- [PATCH v3 8/9] meson: Replace CONFIG_SOFTMMU -> CONFIG_SYSTEM_ONLY, Philippe Mathieu-Daudé, 2023/06/13
- [PATCH v3 9/9] meson: Replace softmmu_ss -> system_ss, Philippe Mathieu-Daudé, 2023/06/13
- Re: [PATCH v3 0/9] bulk: Replace CONFIG_SOFTMMU by !CONFIG_USER_ONLY/CONFIG_SYSTEM_ONLY, Nicholas Piggin, 2023/06/14