From mboxrd@z Thu Jan 1 00:00:00 1970 From: gengdongjiu Subject: Re: [PATCH v14 4/9] ACPI: enable APEI GHES in the configure file Date: Wed, 10 Jan 2018 20:20:45 +0800 Message-ID: References: <1514440458-10515-1-git-send-email-gengdongjiu@huawei.com> <1514440458-10515-5-git-send-email-gengdongjiu@huawei.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: Paolo Bonzini , "Michael S. Tsirkin" , Igor Mammedov , Shannon Zhao , Marcelo Tosatti , "Richard Henderson" , Eduardo Habkost , "James Morse" , Christoffer Dall , Marc Zyngier , kvm-devel , "QEMU Developers" , qemu-arm , Huangshaoyu , "Zhengqiang (turing)" , Xu Wei To: Peter Maydell Return-path: Received: from szxga04-in.huawei.com ([45.249.212.190]:4157 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754252AbeAJMVS (ORCPT ); Wed, 10 Jan 2018 07:21:18 -0500 In-Reply-To: Content-Language: en-US Sender: kvm-owner@vger.kernel.org List-ID: On 2018/1/10 1:16, Peter Maydell wrote: > On 28 December 2017 at 05:54, Dongjiu Geng wrote: >> Add CONFIG_ACPI_APEI configuration in the arm-softmmu.mak >> and add build choice in the Makefile.objs. >> >> Signed-off-by: Dongjiu Geng >> --- >> default-configs/arm-softmmu.mak | 1 + >> hw/acpi/Makefile.objs | 1 + >> 2 files changed, 2 insertions(+) >> >> diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak >> index bbdd3c1..c362113 100644 >> --- a/default-configs/arm-softmmu.mak >> +++ b/default-configs/arm-softmmu.mak >> @@ -129,3 +129,4 @@ CONFIG_ACPI=y >> CONFIG_SMBIOS=y >> CONFIG_ASPEED_SOC=y >> CONFIG_GPIO_KEY=y >> +CONFIG_ACPI_APEI=y >> diff --git a/hw/acpi/Makefile.objs b/hw/acpi/Makefile.objs >> index 11c35bc..bafb148 100644 >> --- a/hw/acpi/Makefile.objs >> +++ b/hw/acpi/Makefile.objs >> @@ -6,6 +6,7 @@ common-obj-$(CONFIG_ACPI_MEMORY_HOTPLUG) += memory_hotplug.o >> common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu.o >> common-obj-$(CONFIG_ACPI_NVDIMM) += nvdimm.o >> common-obj-$(CONFIG_ACPI_VMGENID) += vmgenid.o >> +common-obj-$(CONFIG_ACPI_APEI) += hest_ghes.o >> common-obj-$(call lnot,$(CONFIG_ACPI_X86)) += acpi-stub.o > > You should include this in the patch which first adds the > new host_ghes.c file. Otherwise that patch won't compile. sure, will modify it. > > thanks > -- PMM > > . >