From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web08.11315.1619007674307006411 for ; Wed, 21 Apr 2021 05:21:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 04EA411D4; Wed, 21 Apr 2021 05:21:14 -0700 (PDT) Received: from e120189.arm.com (unknown [10.57.26.208]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 585C83F694; Wed, 21 Apr 2021 05:21:12 -0700 (PDT) From: "PierreGondois" To: devel@edk2.groups.io, sami.mujawar@arm.com, leif@nuviainc.com, ardb+tianocore@kernel.org, sean.brogan@microsoft.com, Bret.Barkelew@microsoft.com Subject: [PATCH v1 04/12] ArmPkg: Add OemMiscLibNull library to ArmPkg.dsc Date: Wed, 21 Apr 2021 13:20:40 +0100 Message-Id: <20210421122048.11729-5-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210421122048.11729-1-Pierre.Gondois@arm.com> References: <20210421122048.11729-1-Pierre.Gondois@arm.com> From: Pierre Gondois Add the OemMiscLibNull library to the [Components] section of ArmPkg.dsc, allowing to complete the 'DscCompleteCheck' CI test. According to .pytool/Readme about the 'DscCompleteCheck' test: The test considers it an error if any INF does not appear in the `Components` section of the package-level DSC. Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=3258 Signed-off-by: Pierre Gondois --- ArmPkg/ArmPkg.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/ArmPkg/ArmPkg.dsc b/ArmPkg/ArmPkg.dsc index 282950b953a8..926986cf7fbb 100644 --- a/ArmPkg/ArmPkg.dsc +++ b/ArmPkg/ArmPkg.dsc @@ -156,6 +156,7 @@ [Components.common] ArmPkg/Universal/Smbios/ProcessorSubClassDxe/ProcessorSubClassDxe.inf ArmPkg/Universal/Smbios/SmbiosMiscDxe/SmbiosMiscDxe.inf + ArmPkg/Universal/Smbios/OemMiscLibNull/OemMiscLibNull.inf [Components.AARCH64] ArmPkg/Drivers/MmCommunicationDxe/MmCommunication.inf -- 2.17.1