mirror of https://github.com/acidanthera/audk.git
ArmPlatformPkg/Sec: Change initial 'welcome' string from 'UEFI Firmware' to 'Secure/Boot Firmware'
The 'SEC' component is not part of the UEFI software stack. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13138 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e28e0ad9d7
commit
99744d5219
|
@ -62,7 +62,13 @@ CEntryPoint (
|
||||||
SerialPortInitialize ();
|
SerialPortInitialize ();
|
||||||
|
|
||||||
// Start talking
|
// Start talking
|
||||||
CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"UEFI firmware built at %a on %a\n\r",__TIME__, __DATE__);
|
if (FixedPcdGetBool (PcdTrustzoneSupport)) {
|
||||||
|
CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Secure firmware (version %s built at %a on %a)\n\r",
|
||||||
|
(CHAR16*)PcdGetPtr(PcdFirmwareVersionString), __TIME__, __DATE__);
|
||||||
|
} else {
|
||||||
|
CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"Boot firmware (version %s built at %a on %a)\n\r",
|
||||||
|
(CHAR16*)PcdGetPtr(PcdFirmwareVersionString), __TIME__, __DATE__);
|
||||||
|
}
|
||||||
SerialPortWrite ((UINT8 *) Buffer, CharCount);
|
SerialPortWrite ((UINT8 *) Buffer, CharCount);
|
||||||
|
|
||||||
// Initialize the Debug Agent for Source Level Debugging
|
// Initialize the Debug Agent for Source Level Debugging
|
||||||
|
|
|
@ -52,6 +52,8 @@
|
||||||
gArmPlatformTokenSpaceGuid.PcdSystemMemoryInitializeInSec
|
gArmPlatformTokenSpaceGuid.PcdSystemMemoryInitializeInSec
|
||||||
|
|
||||||
[FixedPcd]
|
[FixedPcd]
|
||||||
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString
|
||||||
|
|
||||||
gArmTokenSpaceGuid.PcdTrustzoneSupport
|
gArmTokenSpaceGuid.PcdTrustzoneSupport
|
||||||
gArmTokenSpaceGuid.PcdVFPEnabled
|
gArmTokenSpaceGuid.PcdVFPEnabled
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue