mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-28 14:04:47 -04:00
UT 0.19.6, UE 0.3.5, UP 0.2.5
- added support for firmware volumes with CRC32 stored in ZeroVector (Apple UEFI feature) - ZeroVector included to FV information - added new volume types AppleCRC, AppleCRC Boot and AppleCRC Unknown - added support for HP POSTCode sections - size information split into header size and body size - decimal sizes are added, shown in braces after hexadecimal sizes - corrected small bug with Extract Body action being enabled for items with empty body
This commit is contained in:
parent
476929bc4f
commit
fb7e1c4c89
8 changed files with 171 additions and 82 deletions
6
ffs.cpp
6
ffs.cpp
|
@ -160,6 +160,8 @@ QString sectionTypeToQString(const UINT8 type)
|
|||
return QObject::tr("PEI dependency");
|
||||
case EFI_SECTION_SMM_DEPEX:
|
||||
return QObject::tr("SMM dependency");
|
||||
case HP_SECTION_POSTCODE:
|
||||
return QObject::tr("HP postcode");
|
||||
case SCT_SECTION_POSTCODE:
|
||||
return QObject::tr("SCT postcode");
|
||||
default:
|
||||
|
@ -205,8 +207,10 @@ UINT32 sizeOfSectionHeader(EFI_COMMON_SECTION_HEADER* header)
|
|||
return sizeof(EFI_PEI_DEPEX_SECTION);
|
||||
case EFI_SECTION_SMM_DEPEX:
|
||||
return sizeof(EFI_SMM_DEPEX_SECTION);
|
||||
case HP_SECTION_POSTCODE:
|
||||
return sizeof(POSTCODE_SECTION);
|
||||
case SCT_SECTION_POSTCODE:
|
||||
return sizeof(SCT_POSTCODE_SECTION);
|
||||
return sizeof(POSTCODE_SECTION);
|
||||
default:
|
||||
return sizeof(EFI_COMMON_SECTION_HEADER);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue