From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-x232.google.com (mail-wm0-x232.google.com [IPv6:2a00:1450:400c:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D7BFC81F2C for ; Thu, 1 Dec 2016 07:53:33 -0800 (PST) Received: by mail-wm0-x232.google.com with SMTP id t79so251714317wmt.0 for ; Thu, 01 Dec 2016 07:53:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=DgHBtFZq+aBwMMjtZCEIEq+K9dqTnWQki55FDiIZIW0=; b=bBdaN5CmWFvmWdwDvNE2LIafy46OldSI2bqZtuKX2KnSQmhbSEMJIU+5EfdeubeJLY g/uttyXJGlUiE9XiZnajlOKRRa2Idglu0Q2ex3yiotTZwLX2xIJXjQJiUou0EeEviVlx RsfWND0vCNUkqW57nTPe6JABN544TO6acLXLw= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=DgHBtFZq+aBwMMjtZCEIEq+K9dqTnWQki55FDiIZIW0=; b=IcbXf/0buAnQcABCMktwnM+9Tp/A1V/vQSR29ssTAAvh5SCfXL0XIjP/Fa1gWEu8U+ uvvULu5uyLlR06wHXFkNiFNq868SKuh0EsnRAcQm0+/LYj6YPiFM5GddVZ7k0PMYnSZi RpZ3+G1pQ9es0leWSFBp0LHz6wCJQ4IQbtZ3mskJi37OmEqJVfjWVSfVqE8rm0563kGj rceQA01vRmrvJAMEe3rzN8pbhOo+bz8hHtxu1XaJGl38u7kUXHex1PP1TkhC4fhp6smr e2bVkAqJ+AO0C+QxL3vKV3WpwlEn4s2WNhHkOFUHJCd8dHrPzoaeRZ1e7d8NHRRcDQOE 4E1w== X-Gm-Message-State: AKaTC024f7dgG3781LK/ZBoQILUwLgLpKFH2B33Rgf2OVi1joBByvYt1MuSvpzST0qYEfa6m X-Received: by 10.28.95.197 with SMTP id t188mr32596767wmb.99.1480607612340; Thu, 01 Dec 2016 07:53:32 -0800 (PST) Received: from mohikan.hemma.eciton.net ([2a01:348:6:8735:e23f:49ff:fe6d:9d26]) by smtp.gmail.com with ESMTPSA id i2sm850730wjx.44.2016.12.01.07.53.31 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 01 Dec 2016 07:53:31 -0800 (PST) From: Leif Lindholm To: edk2-devel@lists.01.org Cc: Ruiyu Ni , Jordan Justen , Andrew Fish , Laszlo Ersek , Michael D Kinney , Kelly Steele , David Wei , Mang Guo , Ard Biesheuvel Date: Thu, 1 Dec 2016 15:53:23 +0000 Message-Id: <20161201155326.21716-5-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.10.2 In-Reply-To: <20161201155326.21716-1-leif.lindholm@linaro.org> References: <20161201155326.21716-1-leif.lindholm@linaro.org> Subject: [PATCH 4/7] EmbeddedPkg: Remove use of IntelFrameworkModulePkg legacy libs X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2016 15:53:34 -0000 LzmaCustomDecompressLib and PeiDxeDebugLibReportStatusCode were copied from IntelFrameworkModulePkg to MdeModulePkg, but the originals were kept for compatibility. Since the libraries are identical, move EmbeddedPkg to use the MdeModulePkg versions instead. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm --- EmbeddedPkg/EmbeddedPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EmbeddedPkg/EmbeddedPkg.dsc b/EmbeddedPkg/EmbeddedPkg.dsc index eb7af80..ba4f1ea 100644 --- a/EmbeddedPkg/EmbeddedPkg.dsc +++ b/EmbeddedPkg/EmbeddedPkg.dsc @@ -60,7 +60,7 @@ UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf EfiFileLib|EmbeddedPkg/Library/EfiFileLib/EfiFileLib.inf - ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf + ReportStatusCodeLib|MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf -- 2.10.2