diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2015-09-01 17:29:06 +0000 |
---|---|---|
committer | abiesheuvel <abiesheuvel@Edk2> | 2015-09-01 17:29:06 +0000 |
commit | a680d52f4faaf38dd7ab580b17f14e0fb52b350b (patch) | |
tree | b4fab7ebed5967ccd4a54b100e03c7db4f87df97 /ArmPlatformPkg | |
parent | 3d175bcb6eeb0bccffd7470f0b2af82311944155 (diff) | |
download | edk2-a680d52f4faaf38dd7ab580b17f14e0fb52b350b.tar.gz edk2-a680d52f4faaf38dd7ab580b17f14e0fb52b350b.tar.bz2 edk2-a680d52f4faaf38dd7ab580b17f14e0fb52b350b.zip |
ArmPlatformPkg/PlatformIntelBdsLib: add splash screen support
Add a call to EnableQuietBoot () to BdsPlatformPolicyBehavior(),
so that a splash screen is shown in case one is present under the
correct GUID in the FV, and we have graphics support.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Tested-by: Leif Lindholm <leif.lindholm@linaro.org>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18377 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r-- | ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c | 5 | ||||
-rw-r--r-- | ArmPlatformPkg/Library/PlatformIntelBdsLib/PlatformIntelBdsLib.inf | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c b/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c index 9ba95d9896..98d5b277a6 100644 --- a/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c +++ b/ArmPlatformPkg/Library/PlatformIntelBdsLib/IntelBdsPlatform.c @@ -311,6 +311,11 @@ PlatformBdsPolicyBehavior ( Status = PlatformBdsConnectConsole ();
ASSERT_EFI_ERROR (Status);
+
+ //
+ // Show the splash screen.
+ //
+ EnableQuietBoot (PcdGetPtr (PcdLogoFile));
}
/**
diff --git a/ArmPlatformPkg/Library/PlatformIntelBdsLib/PlatformIntelBdsLib.inf b/ArmPlatformPkg/Library/PlatformIntelBdsLib/PlatformIntelBdsLib.inf index d47298d01a..a18c5ea71f 100644 --- a/ArmPlatformPkg/Library/PlatformIntelBdsLib/PlatformIntelBdsLib.inf +++ b/ArmPlatformPkg/Library/PlatformIntelBdsLib/PlatformIntelBdsLib.inf @@ -58,6 +58,7 @@ gArmPlatformTokenSpaceGuid.PcdDefaultConInPaths
gArmPlatformTokenSpaceGuid.PcdDefaultConOutPaths
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut
+ gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdLogoFile
[Protocols]
gEfiDevicePathFromTextProtocolGuid
|