diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-09-26 14:39:04 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-09-28 16:22:12 +0800 |
commit | e6c823994e5694daf06f94b790f7331b402d6155 (patch) | |
tree | 613ed7099eec4e2885c2d9508f4359d1df18f496 /ArmVirtPkg | |
parent | 62936ada310842be79764a87b6bfb5ef39756dbc (diff) | |
download | edk2-e6c823994e5694daf06f94b790f7331b402d6155.zip edk2-e6c823994e5694daf06f94b790f7331b402d6155.tar.gz edk2-e6c823994e5694daf06f94b790f7331b402d6155.tar.bz2 |
ArmVirtPkg/PlatformBds: Do not call BootLogoEnableLogo
Prototype of BootLogoEnableLogo will change in following patches, so
do not call BootLogoEnableLogo to avoid build failure.
Contributed-under: TianoCore Contribution Agreement 1.0
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'ArmVirtPkg')
-rw-r--r-- | ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c | 14 | ||||
-rw-r--r-- | ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf | 1 |
2 files changed, 7 insertions, 8 deletions
diff --git a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c index c11196a..5d7c2a4 100644 --- a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c +++ b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c @@ -657,13 +657,13 @@ PlatformBootManagerAfterConsole ( //
// Show the splash screen.
//
- BootLogoEnableLogo (
- ImageFormatBmp, // ImageFormat
- PcdGetPtr (PcdLogoFile), // Logo
- EdkiiPlatformLogoDisplayAttributeCenter, // Attribute
- 0, // OffsetX
- 0 // OffsetY
- );
+ // BootLogoEnableLogo (
+ // ImageFormatBmp, // ImageFormat
+ // PcdGetPtr (PcdLogoFile), // Logo
+ // EdkiiPlatformLogoDisplayAttributeCenter, // Attribute
+ // 0, // OffsetX
+ // 0 // OffsetY
+ // );
//
// Connect the rest of the devices.
diff --git a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf index bec7fab..1f162c6 100644 --- a/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf +++ b/ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf @@ -58,7 +58,6 @@ UefiRuntimeServicesTableLib
[FixedPcd]
- gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile
gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdShellFile
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate
gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits
|