Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPlatformPkg/MemoryInitPei
- Timestamp:
- Mar 31, 2025 11:31:09 AM (5 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 4 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-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf
r99465 r108794 48 48 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData 49 49 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode 50 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesCode51 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesData52 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderCode53 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderData54 50 55 51 [Pcd] -
trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c
r99465 r108794 38 38 ) 39 39 { 40 EFI_MEMORY_TYPE_INFORMATION Info[ 10];40 EFI_MEMORY_TYPE_INFORMATION Info[6]; 41 41 42 42 Info[0].Type = EfiACPIReclaimMemory; … … 50 50 Info[4].Type = EfiRuntimeServicesCode; 51 51 Info[4].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiRuntimeServicesCode); 52 Info[5].Type = EfiBootServicesCode;53 Info[5].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiBootServicesCode);54 Info[6].Type = EfiBootServicesData;55 Info[6].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiBootServicesData);56 Info[7].Type = EfiLoaderCode;57 Info[7].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiLoaderCode);58 Info[8].Type = EfiLoaderData;59 Info[8].NumberOfPages = PcdGet32 (PcdMemoryTypeEfiLoaderData);60 61 52 // Terminator for the list 62 Info[ 9].Type = EfiMaxMemoryType;63 Info[ 9].NumberOfPages = 0;53 Info[5].Type = EfiMaxMemoryType; 54 Info[5].NumberOfPages = 0; 64 55 65 56 BuildGuidDataHob (&gEfiMemoryTypeInformationGuid, &Info, sizeof (Info)); -
trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf
r99465 r108794 57 57 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData 58 58 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode 59 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesCode60 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiBootServicesData61 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderCode62 gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiLoaderData63 59 64 60 [Pcd]
Note:
See TracChangeset
for help on using the changeset viewer.