Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/FatPkg/FatPei
- Timestamp:
- Aug 12, 2020 4:09:12 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139865
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 5 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-133213 /vendor/edk2/current 103735-103757,103769-103776,129194-139864
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/FatPkg/FatPei/FatLiteApi.c
r80721 r85718 13 13 14 14 /** 15 BlockIo installation no fication function. Find out all the current BlockIO15 BlockIo installation notification function. Find out all the current BlockIO 16 16 PPIs in the system and add them into private data. Assume there is 17 17 … … 257 257 Status = PeiServicesAllocatePages ( 258 258 EfiBootServicesCode, 259 (sizeof (PEI_FAT_PRIVATE_DATA) - 1) / PEI_FAT_MEM MORY_PAGE_SIZE + 1,259 (sizeof (PEI_FAT_PRIVATE_DATA) - 1) / PEI_FAT_MEMORY_PAGE_SIZE + 1, 260 260 &Address 261 261 ); … … 592 592 /** 593 593 Finds the recovery file on a FAT volume. 594 This function finds the therecovery file named FileName on a specified FAT volume and returns594 This function finds the recovery file named FileName on a specified FAT volume and returns 595 595 its FileHandle pointer. 596 596 … … 601 601 @param Handle The output file handle. 602 602 603 @retval EFI_DEVICE_ERROR Some error occur ed when operating the FAT603 @retval EFI_DEVICE_ERROR Some error occurred when operating the FAT 604 604 volume. 605 605 @retval EFI_NOT_FOUND The recovery file was not found. -
trunk/src/VBox/Devices/EFI/FirmwareNew/FatPkg/FatPei/FatLitePeim.h
r80721 r85718 41 41 #define PEI_FAT_MAX_VOLUME 64 42 42 43 #define PEI_FAT_MEM MORY_PAGE_SIZE0x100043 #define PEI_FAT_MEMORY_PAGE_SIZE 0x1000 44 44 45 45 // … … 186 186 /** 187 187 Finds the recovery file on a FAT volume. 188 This function finds the therecovery file named FileName on a specified FAT volume and returns188 This function finds the recovery file named FileName on a specified FAT volume and returns 189 189 its FileHandle pointer. 190 190 … … 195 195 @param Handle The output file handle. 196 196 197 @retval EFI_DEVICE_ERROR Some error occur ed when operating the FAT197 @retval EFI_DEVICE_ERROR Some error occurred when operating the FAT 198 198 volume. 199 199 @retval EFI_NOT_FOUND The recovery file was not found. -
trunk/src/VBox/Devices/EFI/FirmwareNew/FatPkg/FatPei/Gpt.c
r80721 r85718 49 49 50 50 // 51 // Set CRC field to zero when doing calcu ation51 // Set CRC field to zero when doing calculation 52 52 // 53 53 PartHeader->Header.CRC32 = 0; -
trunk/src/VBox/Devices/EFI/FirmwareNew/FatPkg/FatPei/Mbr.c
r80721 r85718 52 52 if (EndingLBA > LastLba) { 53 53 // 54 // Compat ability Errata:55 // Some systems try to hide drive space with th ier INT 13h driver54 // Compatibility Errata: 55 // Some systems try to hide drive space with their INT 13h driver 56 56 // This does not hide space from the OS driver. This means the MBR 57 57 // that gets created from DOS is smaller than the MBR created from
Note:
See TracChangeset
for help on using the changeset viewer.