mirror of https://github.com/acidanthera/audk.git
BaseTools/VolInfo: Increase define for highest section value
Currently sections with unknown types are displayed as `EFI_SECTION_SMM_DEPEX` which is wrong. Increase the highest value for the section type to 0x1C for correct parsing. Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Reviewed-by: Yuwei Chen<yuwei.chen@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
8ee26529d1
commit
c0b7679aac
|
@ -22,8 +22,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
|
|||
#define EFI_DEP_END 0x08
|
||||
#define EFI_DEP_SOR 0x09
|
||||
|
||||
#define EFI_SECTION_LAST_LEAF_SECTION_TYPE 0x1B
|
||||
#define EFI_SECTION_LAST_SECTION_TYPE 0x1B
|
||||
#define EFI_SECTION_LAST_LEAF_SECTION_TYPE 0x1C
|
||||
#define EFI_SECTION_LAST_SECTION_TYPE 0x1C
|
||||
|
||||
#define OPENSSL_COMMAND_FORMAT_STRING "%s sha1 -out %s %s"
|
||||
#define EXTRACT_COMMAND_FORMAT_STRING "%s -d -o %s %s"
|
||||
|
|
Loading…
Reference in New Issue