From nobody Sun May 19 04:05:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+81250+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+81250+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1632877419; cv=none; d=zohomail.com; s=zohoarc; b=PE8ztS1QVpXhq3D09u7P2TDIFuz5zv/s9ltKbXqMdDa6Zb2tCOn0zloaG9dOdmEBE1r3YuEWlKNR0bBUqC8twVK9WftYc35CoiWcMkq053xAoayHl7pbYybPH5eC56/J10yFJ6+PFQmqLXpzaV1CXGT/l+UZ9+ovBE8YqEyL53s= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1632877419; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=ae0CqT3Vv5Y7iIsCtlSiLL2U47VlAgoJiKUN9whFQc4=; b=Rd10saMbkofrsqXmSdUlgzBlg9O+6XKiQhzl7QOJJGN6Hg0G9QlE1/ikO1neB76bx0AHBq3CDJsy4DgD7pPfxOp33mlQDaUAhfP4HunT5wDYMtLY5ayhnLftUwYqRhq/sD9LyJVLPNzoQHWIzqAsu9QmqhLjhSb50/tyTKHAlIQ= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+81250+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1632877419929929.5107751184523; Tue, 28 Sep 2021 18:03:39 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id JMYJYY1788612xLxpz7FCgux; Tue, 28 Sep 2021 18:03:39 -0700 X-Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web09.2864.1632877418145110695 for ; Tue, 28 Sep 2021 18:03:38 -0700 X-IronPort-AV: E=McAfee;i="6200,9189,10121"; a="224491471" X-IronPort-AV: E=Sophos;i="5.85,330,1624345200"; d="scan'208";a="224491471" X-Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Sep 2021 18:03:37 -0700 X-IronPort-AV: E=Sophos;i="5.85,330,1624345200"; d="scan'208";a="437447459" X-Received: from nldesimo-desk1.amr.corp.intel.com ([10.212.189.201]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Sep 2021 18:03:36 -0700 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Chasel Chiu Subject: [edk2-devel] [edk2-platforms] [PATCH V1] KabylakeOpenBoardPkg: Fix Build Date: Tue, 28 Sep 2021 18:03:23 -0700 Message-Id: <20210929010323.2653-2-nathaniel.l.desimone@intel.com> In-Reply-To: <20210929010323.2653-1-nathaniel.l.desimone@intel.com> References: <20210929010323.2653-1-nathaniel.l.desimone@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,nathaniel.l.desimone@intel.com X-Gm-Message-State: 7lvtZgriXIWZBHDv3lRp5oqnx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1632877419; bh=KoRixmxC/cX9shTFiwlLpyugTYzsaRA10QnqjWdeXkE=; h=Cc:Date:From:Reply-To:Subject:To; b=dsWHDkjnvi2vWCY6dhmwpbhrkvBekhpjVlpLoUvHcGEPIPIsTsYiH5zu0kMelBUt0aE uj28U278bDHqHEKK9iE9LveTIvAuXsH+T0uKL/n9W3htInjJqxIJLJJYf9lR7PNFgMK8p FK1mjdPSoog6gAd64i8mjsYMSk0MbM5XlUI= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1632877421349100001 Content-Type: text/plain; charset="utf-8" Commit d281e9e broke the build for KabylakeOpenBoardPkg due to DxeMultiBoardAcpiSupportLib having a dependency on BoardAcpiTableLib that was never declared. This change adds a correct declaration of the library dependency and fixes the build. Cc: Chasel Chiu Signed-off-by: Nate DeSimone Reviewed-by: Chasel Chiu --- .../Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf | 3 ++- .../Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/BoardAc= piLib/DxeMultiBoardAcpiSupportLib.inf b/Platform/Intel/KabylakeOpenBoardPkg= /GalagoPro3/Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf index 9fe27f9fda..dc597c4808 100644 --- a/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/BoardAcpiLib/D= xeMultiBoardAcpiSupportLib.inf +++ b/Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/BoardAcpiLib/D= xeMultiBoardAcpiSupportLib.inf @@ -1,7 +1,7 @@ ### @file # System 76 GalagoPro3 board multi-board DXE ACPI table support functional= ity. # -# Copyright (c) 2019, Intel Corporation. All rights reserved.
+# Copyright (c) 2019 - 2021, Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -26,6 +26,7 @@ BaseLib IoLib PciLib + BoardAcpiTableLib AslUpdateLib =20 [Packages] diff --git a/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/Library/Board= AcpiLib/DxeMultiBoardAcpiSupportLib.inf b/Platform/Intel/KabylakeOpenBoardP= kg/KabylakeRvp3/Library/BoardAcpiLib/DxeMultiBoardAcpiSupportLib.inf index e5de9268e7..8438b16a6e 100644 --- a/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/Library/BoardAcpiLib= /DxeMultiBoardAcpiSupportLib.inf +++ b/Platform/Intel/KabylakeOpenBoardPkg/KabylakeRvp3/Library/BoardAcpiLib= /DxeMultiBoardAcpiSupportLib.inf @@ -1,7 +1,7 @@ ### @file # Kaby Lake RVP 3 Multi-Board ACPI Support library # -# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -26,6 +26,7 @@ BaseLib IoLib PciLib + BoardAcpiTableLib AslUpdateLib =20 [Packages] --=20 2.27.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#81250): https://edk2.groups.io/g/devel/message/81250 Mute This Topic: https://groups.io/mt/85939099/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-