[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH V13 2/9] meson.build: Re-enable KVM support for MIPS
From: |
Paolo Bonzini |
Subject: |
Re: [PATCH V13 2/9] meson.build: Re-enable KVM support for MIPS |
Date: |
Wed, 7 Oct 2020 10:51:42 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 |
On 07/10/20 10:39, Huacai Chen wrote:
> After converting from configure to meson, KVM support is lost for MIPS,
> so re-enable it in meson.build.
>
> Fixes: fdb75aeff7c212e1afaaa3a43 ("configure: remove target configuration")
> Fixes: 8a19980e3fc42239aae054bc9 ("configure: move accelerator logic to
> meson")
> Cc: aolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Huacai Chen <chenhc@lemote.com>
> ---
> meson.build | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/meson.build b/meson.build
> index 17c89c8..b407ff4 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -59,6 +59,8 @@ elif cpu == 's390x'
> kvm_targets = ['s390x-softmmu']
> elif cpu in ['ppc', 'ppc64']
> kvm_targets = ['ppc-softmmu', 'ppc64-softmmu']
> +elif cpu in ['mips', 'mips64']
> + kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu',
> 'mips64el-softmmu']
> else
> kvm_targets = []
> endif
>
I'm queuing this one, sorry for the breakage. :(
Paolo
- [PATCH V13 0/9] mips: Add Loongson-3 machine support, Huacai Chen, 2020/10/07
- [PATCH V13 1/9] linux-headers: Update MIPS KVM type defintition, Huacai Chen, 2020/10/07
- [PATCH V13 2/9] meson.build: Re-enable KVM support for MIPS, Huacai Chen, 2020/10/07
- Re: [PATCH V13 2/9] meson.build: Re-enable KVM support for MIPS,
Paolo Bonzini <=
- [PATCH V13 3/9] target/mips: Fix PageMask with variable page size, Huacai Chen, 2020/10/07
- [PATCH V13 4/9] target/mips: Add loongson-ext lswc2 group of instructions (Part 1), Huacai Chen, 2020/10/07
- [PATCH V13 5/9] target/mips: Add loongson-ext lswc2 group of instructions (Part 2), Huacai Chen, 2020/10/07
- [PATCH V13 6/9] target/mips: Add loongson-ext lsdc2 group of instructions, Huacai Chen, 2020/10/07
[PATCH V13 7/9] hw/mips: Implement fw_cfg_arch_key_name(), Huacai Chen, 2020/10/07