mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-15 07:34:45 -04:00
Dell PFS BIOS Extractor v3.6
Added another PFS Information Entry GUID
This commit is contained in:
parent
e521775f59
commit
27d3364f58
1 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ Copyright (C) 2019 Plato Mavropoulos
|
||||||
Inspired from https://github.com/LongSoft/PFSExtractor-RS by Nikolaj Schlej
|
Inspired from https://github.com/LongSoft/PFSExtractor-RS by Nikolaj Schlej
|
||||||
"""
|
"""
|
||||||
|
|
||||||
title = 'Dell PFS BIOS Extractor v3.5'
|
title = 'Dell PFS BIOS Extractor v3.6'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
@ -233,8 +233,8 @@ def pfs_extract(buffer, pfs_index, pfs_name, pfs_count) :
|
||||||
|
|
||||||
entry_type = 'OTHER' # Adjusted later if PFS Entry is Zlib, Chunks, PFS Info, Model Info
|
entry_type = 'OTHER' # Adjusted later if PFS Entry is Zlib, Chunks, PFS Info, Model Info
|
||||||
|
|
||||||
# Get PFS Information from the PFS Entry with GUID E0717CE3A9BB25824B9F0DC8FD041960
|
# Get PFS Information from the PFS Entry with GUID E0717CE3A9BB25824B9F0DC8FD041960 or B033CB16EC9B45A14055F80E4D583FD3
|
||||||
if entry_guid == 'E0717CE3A9BB25824B9F0DC8FD041960' :
|
if entry_guid in ['E0717CE3A9BB25824B9F0DC8FD041960','B033CB16EC9B45A14055F80E4D583FD3'] :
|
||||||
pfs_info = entry_data
|
pfs_info = entry_data
|
||||||
entry_type = 'PFS_INFO'
|
entry_type = 'PFS_INFO'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue