mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 06:34:42 -04:00
Add support for parsing NVRAM_NVAR_BB_DEFAULTS_FILE_GUID, closes #71
This commit is contained in:
parent
be65f8ae06
commit
f386eda430
2 changed files with 10 additions and 1 deletions
|
@ -1669,8 +1669,13 @@ USTATUS FfsParser::parseFileBody(const UModelIndex & index)
|
|||
return nvramParser->parseNvarStore(index);
|
||||
}
|
||||
|
||||
if (fileGuid == NVRAM_NVAR_BB_DEFAULTS_FILE_GUID) {
|
||||
model->setText(index, UString("NVAR bb defaults"));
|
||||
return nvramParser->parseNvarStore(index);
|
||||
}
|
||||
|
||||
// Parse vendor hash file
|
||||
else if (fileGuid == BG_VENDOR_HASH_FILE_GUID_PHOENIX) {
|
||||
if (fileGuid == BG_VENDOR_HASH_FILE_GUID_PHOENIX) {
|
||||
return parseVendorHashFile(fileGuid, index);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue