From 7a9d1ae972e9a6729c9655e0c36d1e2b93198efd Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Mon, 2 May 2022 23:25:18 +0200 Subject: [PATCH] package/qemu: rewrite BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET to be more readable Use the same format introduced for BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS in commit 65e05cd914c895461a65ebdf901f991585529005. Signed-off-by: Romain Naour Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/qemu/Config.in | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package/qemu/Config.in b/package/qemu/Config.in index 7bb203a177..1afbc6c364 100644 --- a/package/qemu/Config.in +++ b/package/qemu/Config.in @@ -1,9 +1,14 @@ config BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET bool # Only tested on these architectures - default y if BR2_aarch64 || BR2_i386 || BR2_mips || BR2_mipsel \ - || BR2_x86_64 || BR2_arm \ - || BR2_powerpc64 || BR2_powerpc64le + default y if BR2_aarch64 + default y if BR2_arm + default y if BR2_i386 + default y if BR2_mips + default y if BR2_mipsel + default y if BR2_powerpc64 + default y if BR2_powerpc64le + default y if BR2_x86_64 comment "QEMU requires a toolchain with wchar, threads, gcc >= 8" depends on BR2_PACKAGE_QEMU_ARCH_SUPPORTS_TARGET