mirror of https://github.com/acidanthera/audk.git
update DxeIpl to use EFI_S3_RESUME2_PPI instead of EFI_S3_RESUME_PPI
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10138 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
42686f2990
commit
77215d10c0
|
@ -25,7 +25,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
#include <Ppi/FirmwareVolumeInfo.h>
|
||||
#include <Ppi/GuidedSectionExtraction.h>
|
||||
#include <Ppi/LoadFile.h>
|
||||
#include <Ppi/S3Resume.h>
|
||||
#include <Ppi/S3Resume2.h>
|
||||
#include <Ppi/RecoveryModule.h>
|
||||
|
||||
#include <Guid/MemoryTypeInformation.h>
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
gEfiPeiDecompressPpiGuid ## SOMETIMES_PRODUCES
|
||||
gEfiPeiReadOnlyVariable2PpiGuid ## SOMETIMES_CONSUMES
|
||||
gEfiPeiLoadFilePpiGuid ## CONSUMES
|
||||
gEfiPeiS3ResumePpiGuid ## SOMETIMES_CONSUMES(Consumed on S3 boot path)
|
||||
gEfiPeiS3Resume2PpiGuid ## SOMETIMES_CONSUMES(Consumed on S3 boot path)
|
||||
gEfiPeiRecoveryModulePpiGuid ## SOMETIMES_CONSUMES(Consumed on recovery boot path)
|
||||
|
||||
[Guids]
|
||||
|
|
|
@ -158,7 +158,7 @@ DxeLoadCore (
|
|||
UINTN Instance;
|
||||
UINT32 AuthenticationState;
|
||||
UINTN DataSize;
|
||||
EFI_PEI_S3_RESUME_PPI *S3Resume;
|
||||
EFI_PEI_S3_RESUME2_PPI *S3Resume;
|
||||
EFI_PEI_RECOVERY_MODULE_PPI *PeiRecovery;
|
||||
EFI_MEMORY_TYPE_INFORMATION MemoryData[EfiMaxMemoryType + 1];
|
||||
|
||||
|
@ -169,14 +169,14 @@ DxeLoadCore (
|
|||
|
||||
if (BootMode == BOOT_ON_S3_RESUME) {
|
||||
Status = PeiServicesLocatePpi (
|
||||
&gEfiPeiS3ResumePpiGuid,
|
||||
&gEfiPeiS3Resume2PpiGuid,
|
||||
0,
|
||||
NULL,
|
||||
(VOID **) &S3Resume
|
||||
);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
Status = S3Resume->S3RestoreConfig (PeiServices);
|
||||
Status = S3Resume->S3RestoreConfig2 (S3Resume);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
} else if (BootMode == BOOT_IN_RECOVERY_MODE) {
|
||||
Status = PeiServicesLocatePpi (
|
||||
|
|
Loading…
Reference in New Issue