Changeset 105670 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg
- Timestamp:
- Aug 14, 2024 1:16:30 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164367
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-159268 /vendor/edk2/current 103735-103757,103769-103776,129194-164365
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.c
r101291 r105670 198 198 MeasurementExcludedFvPpi = AllocatePool (sizeof (*MeasurementExcludedFvPpi)); 199 199 ASSERT (MeasurementExcludedFvPpi != NULL); 200 if (MeasurementExcludedFvPpi == NULL) { 201 return EFI_OUT_OF_RESOURCES; 202 } 203 200 204 MeasurementExcludedFvPpi->Count = 1; 201 205 MeasurementExcludedFvPpi->Fv[0].FvBase = PcdGet32 (PcdFspmBaseAddress); … … 204 208 MeasurementExcludedPpiList = AllocatePool (sizeof (*MeasurementExcludedPpiList)); 205 209 ASSERT (MeasurementExcludedPpiList != NULL); 210 if (MeasurementExcludedPpiList == NULL) { 211 return EFI_OUT_OF_RESOURCES; 212 } 213 206 214 MeasurementExcludedPpiList->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST; 207 215 MeasurementExcludedPpiList->Guid = &gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid; -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.ci.yaml
r99404 r105670 7 7 ## 8 8 { 9 "PrEval": { 10 "DscPath": "IntelFsp2WrapperPkg.dsc", 11 }, 9 12 ## options defined .pytool/Plugin/LicenseCheck 10 13 "LicenseCheck": { -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspMeasurementLib/FspMeasurementLib.c
r99404 r105670 198 198 EDKII_TCG_PRE_HASH_LOG_ONLY 199 199 ); 200 if (EFI_ERROR (Status)) { 201 DEBUG ((DEBUG_ERROR, "TpmMeasureAndLogDataWithFlags failed - %r\n", Status)); 202 return Status; 203 } 200 204 201 205 Status = TpmMeasureAndLogData ( -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/FspWrapperMultiPhaseProcessLib/PeiFspWrapperMultiPhaseProcessLib.c
r99404 r105670 81 81 FSP_MULTI_PHASE_PARAMS *FspMultiPhaseParamsPtr; 82 82 83 FspMultiPhaseApiOffset = 0; 83 84 FspMultiPhaseParamsPtr = (FSP_MULTI_PHASE_PARAMS *)FspMultiPhaseParams; 84 85 IsVariableServiceRequest = FALSE; -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecRamInitData.c
r99404 r105670 35 35 // 36 36 0x02, 37 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 38 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } 37 { 38 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 39 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 40 0x00, 0x00, 0x00 41 } 39 42 }, 40 43 // … … 44 47 // 45 48 { 46 0x0 2,49 0x03, 47 50 { 48 51 0x00, 0x00, 0x00 … … 50 53 0x00000020, 51 54 0x00000000, 55 0x00000000, 52 56 { 53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,57 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 54 58 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 55 59 }
Note:
See TracChangeset
for help on using the changeset viewer.