Changeset 99499 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Apr 21, 2023 8:29:45 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/PlatformPei/Platform.c
r99404 r99499 409 409 * This worked with 6.0 and earlier firmware because the variable store was much smaller (only 128KB) 410 410 * which happened to work by accident. 411 * 412 * Update: We now allocate two pages, one code and one data. If only one page is allocated, it may 413 * be merged with the next allocation and defeat the workaround. 411 414 */ 412 415 PeiServicesAllocatePages (EfiRuntimeServicesCode, 1, &Memory); 416 PeiServicesAllocatePages (EfiRuntimeServicesData, 1, &Memory); 413 417 #endif 414 418
Note:
See TracChangeset
for help on using the changeset viewer.