mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-12 22:26:13 -04:00
UT NE A23
- added UI for VSS storage operations - changed VSS storage/vars parsing order - solved problems with GUIDs as filenames - Fsys, _FDC and other NVRAM formats TBD
This commit is contained in:
parent
95290abb94
commit
5557acd7d8
5 changed files with 43 additions and 10 deletions
|
@ -52,9 +52,9 @@ STATUS FfsOperations::extract(const QModelIndex & index, QString & name, QByteAr
|
|||
switch (model->type(index)) {
|
||||
case Types::Volume: {
|
||||
if (pdata.volume.hasExtendedHeader)
|
||||
name = guidToQString(pdata.volume.extendedHeaderGuid);
|
||||
name = guidToQString(pdata.volume.extendedHeaderGuid).replace('-', '_');
|
||||
else
|
||||
name = itemName;
|
||||
name = itemName.replace('-', '_');
|
||||
} break;
|
||||
case Types::NvramVariableNvar:
|
||||
case Types::NvramVariableVss:
|
||||
|
@ -73,6 +73,7 @@ STATUS FfsOperations::extract(const QModelIndex & index, QString & name, QByteAr
|
|||
case Types::Image:
|
||||
case Types::Region:
|
||||
case Types::Padding:
|
||||
case Types::NvramStorageVss:
|
||||
default:
|
||||
name = itemName.replace(' ', '_').replace('/', '_');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue