From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id AF7061A1E1E for ; Mon, 26 Sep 2016 02:31:00 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga101.fm.intel.com with ESMTP; 26 Sep 2016 02:31:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,398,1470726000"; d="scan'208";a="13208412" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga006.fm.intel.com with ESMTP; 26 Sep 2016 02:30:59 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Jordan Justen , Laszlo Ersek Date: Mon, 26 Sep 2016 17:30:30 +0800 Message-Id: <20160926093035.350612-15-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20160926093035.350612-1-ruiyu.ni@intel.com> References: <20160926093035.350612-1-ruiyu.ni@intel.com> Subject: [PATCH v2 14/19] OvmfPkg/PlatformBds: Do not call BootLogoEnableLogo 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: Mon, 26 Sep 2016 09:31:00 -0000 Prototype of BootLogoEnableLogo will change in following patches, so do not call BootLogoEnableLogo to avoid build failure. Contributed-under: TianoCore Contribution Agreement 1.0 Cc: Jordan Justen Cc: Laszlo Ersek Signed-off-by: Ruiyu Ni --- OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 14 +++++++------- .../PlatformBootManagerLib/PlatformBootManagerLib.inf | 1 - 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c index 7cd547e..4c5d259 100644 --- a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c +++ b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c @@ -1445,13 +1445,13 @@ Routine Description: // // Logo show // - BootLogoEnableLogo ( - ImageFormatBmp, // ImageFormat - PcdGetPtr (PcdLogoFile), // Logo - EdkiiPlatformLogoDisplayAttributeCenter, // Attribute - 0, // OffsetX - 0 // OffsetY - ); + //BootLogoEnableLogo ( + // ImageFormatBmp, // ImageFormat + // PcdGetPtr (PcdLogoFile), // Logo + // EdkiiPlatformLogoDisplayAttributeCenter, // Attribute + // 0, // OffsetX + // 0 // OffsetY + // ); // // Perform some platform specific connect sequence diff --git a/OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf b/OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf index f3303b9..4a6bece 100644 --- a/OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf +++ b/OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf @@ -56,7 +56,6 @@ [LibraryClasses] UefiLib [Pcd] - gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile gUefiOvmfPkgTokenSpaceGuid.PcdEmuVariableEvent gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashVariablesEnable gUefiOvmfPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId -- 2.9.0.windows.1