From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 519C59419E2 for ; Wed, 17 Jan 2024 18:12:34 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=U0l/BL4o++1w80skdnIqR1r1FZzL44VnlKaPzVRxDSw=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1705515152; v=1; b=Uuj/ek82AlGORT+j2PmxkaFEb1kAQ28pHJiWtADvXfT71nT/TV6Hu2Tc96DXjmcUAWxvNaJm qM/uh1N0mPra4EwobqtWIj1nRnwNM/VcaduyHN/6rNCLto5WrdbKYuzzdXYGu5nsoRqMapeRdyR CmHoTMiUSbg+G/K2yWVhGxD4= X-Received: by 127.0.0.2 with SMTP id tLgsYY7687511xkRrgTXpTsO; Wed, 17 Jan 2024 10:12:32 -0800 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.11]) by mx.groups.io with SMTP id smtpd.web11.10915.1705515151800216055 for ; Wed, 17 Jan 2024 10:12:32 -0800 X-IronPort-AV: E=McAfee;i="6600,9927,10956"; a="6939209" X-IronPort-AV: E=Sophos;i="6.05,200,1701158400"; d="scan'208";a="6939209" X-Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orvoesa103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2024 10:12:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10956"; a="734039788" X-IronPort-AV: E=Sophos;i="6.05,200,1701158400"; d="scan'208";a="734039788" X-Received: from shpfwdbuild003.ccr.corp.intel.com ([10.239.56.82]) by orsmga003.jf.intel.com with ESMTP; 17 Jan 2024 10:12:29 -0800 From: "Xu, Wei6" To: devel@edk2.groups.io Cc: Wei6 Xu , Abner Chang , Nate DeSimone Subject: [edk2-devel] [PATCH edk2-platforms 1/1] IpmiFeaturePkg/ServerManagementLib: Fix a GCC compile error Date: Thu, 18 Jan 2024 02:12:22 +0800 Message-Id: <3879b220ee383490ef07a566e6ee98e24e8b2c35.1705514596.git.wei6.xu@intel.com> In-Reply-To: References: MIME-Version: 1.0 Precedence: Bulk 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,wei6.xu@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: b0IYfEHqZe9EMAqpHnSfVus7x7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b="Uuj/ek82"; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io The source file definition in INF file is ServerManagementELog.c, while the actual file name is ServerManagementElog.c. The case is mismatched. Correct the definition in INF file to fix this issue. Cc: Abner Chang Cc: Nate DeSimone Signed-off-by: Wei6 Xu --- .../Library/ServerManagementLib/ServerManagementLib.inf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/ServerManagementLib.inf b/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/ServerManagementLib.inf index 6e7702e0db33..5c5e8f6d48af 100644 --- a/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/ServerManagementLib.inf +++ b/Features/Intel/OutOfBandManagement/IpmiFeaturePkg/Library/ServerManagementLib/ServerManagementLib.inf @@ -1,6 +1,6 @@ ### @file # -# Copyright (c) 2023, Intel Corporation. All rights reserved.
+# Copyright (c) 2023 - 2024, Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -17,7 +17,7 @@ LIBRARY_CLASS = ServerManagementLib [Sources] - ServerManagementELog.c + ServerManagementElog.c ServerManagementTime.c [Packages] -- 2.29.2.windows.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#113957): https://edk2.groups.io/g/devel/message/113957 Mute This Topic: https://groups.io/mt/103791804/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-