From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-x236.google.com (mail-wm0-x236.google.com [IPv6:2a00:1450:400c:c09::236]) (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 CCC7A81F25 for ; Thu, 1 Dec 2016 07:53:31 -0800 (PST) Received: by mail-wm0-x236.google.com with SMTP id t79so251713166wmt.0 for ; Thu, 01 Dec 2016 07:53:31 -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=6A1L3c91glzB5Stz3SZFFpIHc5TZV33hfJD4MNcRqOg=; b=T8baYHKbhDkvO1MaPDm7HBSxQ6JlrbN04v6ujwvuOolBrhLp5jh3ZUmChMyb+e3W9u YBARjs0EULtfn84rPQ0hqqf4ZASH8cnZYm/uw5lFvix0FhPuPs0rsbxjvh55CFuQ1pUA O/sK+FLQx0e6r9hQREy336jDHm+tl1KEBjEAw= 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=6A1L3c91glzB5Stz3SZFFpIHc5TZV33hfJD4MNcRqOg=; b=dSE7uybVcmq57FhVtT7jppWZBfGWIyCfqmbknViYxzadvdCiU+LnYs65QVEtGQiQZN eHRCLzNR0ad1SdyZRGnWcA9BYDQsenizNti1qBp33ik1XBRIuWzyInKahcg/GKsWSjsh rmwq9rFBkiJue4AxaNQAJYMtWZpo4RnUZqF7yMF/M3lJSuPcBXtLpYqlMJsQEFVvecBh f2n7o/uORlmq5EiRja33KlblpKesFQBiD3fGogFPj09WeuGM4kP8hj91FM0vX/HTdSpP z2fuWtwJ92Mr9WwwfEO1nIX0tGPaqdepDJv8gyBjMvo28vquAA17FsGDJHEzvanodj4P ugWA== X-Gm-Message-State: AKaTC02snijSrQPONW30hhXVD6Yuahn4ykSc3B2Aas3vI7llJUlQnkEjVSBy6SDI2EJxEVoc X-Received: by 10.28.185.203 with SMTP id j194mr646582wmf.73.1480607610222; Thu, 01 Dec 2016 07:53:30 -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.29 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 01 Dec 2016 07:53:29 -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:21 +0000 Message-Id: <20161201155326.21716-3-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 2/7] QuarkSocPkg: 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:32 -0000 LzmaCustomDecompressLib and PeiDxeDebugLibReportStatusCode were copied from IntelFrameworkModulePkg to MdeModulePkg, but the originals were kept for compatibility. Since the libraries are identical, move iQuarkSocPkg to use the MdeModulePkg versions instead. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm Reviewed-by: Michael Kinney --- QuarkSocPkg/QuarkSocPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuarkSocPkg/QuarkSocPkg.dsc b/QuarkSocPkg/QuarkSocPkg.dsc index 42bb5bb..9e37a0b 100644 --- a/QuarkSocPkg/QuarkSocPkg.dsc +++ b/QuarkSocPkg/QuarkSocPkg.dsc @@ -116,7 +116,7 @@ # # Misc # - DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf + DebugLib|MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf -- 2.10.2