From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id A2F151A1DF1 for ; Mon, 26 Sep 2016 03:06:17 -0700 (PDT) Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3538BE9504; Mon, 26 Sep 2016 10:06:17 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-12.phx2.redhat.com [10.3.116.12]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8QA6FfB011787; Mon, 26 Sep 2016 06:06:16 -0400 To: Ruiyu Ni , edk2-devel@ml01.01.org References: <20160926093035.350612-1-ruiyu.ni@intel.com> <20160926093035.350612-15-ruiyu.ni@intel.com> Cc: Jordan Justen From: Laszlo Ersek Message-ID: <085a30ad-ae71-319b-4250-acb8379d8e05@redhat.com> Date: Mon, 26 Sep 2016 12:06:15 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <20160926093035.350612-15-ruiyu.ni@intel.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Mon, 26 Sep 2016 10:06:17 +0000 (UTC) Subject: Re: [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 10:06:17 -0000 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit On 09/26/16 11:30, Ruiyu Ni wrote: > 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 > Reviewed-by: Laszlo Ersek