[edk2-devel] [PATCH v2] BaseTools: Support COMPAT16 section generation

Bob Feng bob.c.feng at intel.com
Sun Oct 2 02:13:57 UTC 2022


Reviewed-by: Bob Feng <bob.c.feng at intel.com>

-----Original Message-----
From: Konstantin Aladyshev <aladyshev22 at gmail.com> 
Sent: Tuesday, August 30, 2022 6:20 PM
To: devel at edk2.groups.io
Cc: Feng, Bob C <bob.c.feng at intel.com>; Gao, Liming <gaoliming at byosoft.com.cn>; Chen, Christine <yuwei.chen at intel.com>; Konstantin Aladyshev <aladyshev22 at gmail.com>
Subject: [PATCH v2] BaseTools: Support COMPAT16 section generation

Currently COMPAT16 section type is not recognized and GenSec is called without the "-s [SectionType]" argument.
Add COMPAT16 type to the SectionType dictionary to fix the issue.

Now this syntax works correctly:
```
FILE FREEFORM = <GUID>  {
  SECTION COMPAT16 = <FILE>
}
```

Signed-off-by: Konstantin Aladyshev <aladyshev22 at gmail.com>
---
 BaseTools/Source/Python/GenFds/Section.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/BaseTools/Source/Python/GenFds/Section.py b/BaseTools/Source/Python/GenFds/Section.py
index 447828c8e5..859db7230a 100644
--- a/BaseTools/Source/Python/GenFds/Section.py
+++ b/BaseTools/Source/Python/GenFds/Section.py
@@ -28,6 +28,7 @@ class Section (SectionClassObject):
         BINARY_FILE_TYPE_PIC       : 'EFI_SECTION_PIC',         BINARY_FILE_TYPE_TE        : 'EFI_SECTION_TE',         'FV_IMAGE'  : 'EFI_SECTION_FIRMWARE_VOLUME_IMAGE',+        'COMPAT16'  : 'EFI_SECTION_COMPATIBILITY16',         BINARY_FILE_TYPE_DXE_DEPEX : 'EFI_SECTION_DXE_DEPEX',         BINARY_FILE_TYPE_PEI_DEPEX : 'EFI_SECTION_PEI_DEPEX',         'GUIDED'    : 'EFI_SECTION_GUID_DEFINED',-- 
2.25.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#94621): https://edk2.groups.io/g/devel/message/94621
Mute This Topic: https://groups.io/mt/93345713/1813853
Group Owner: devel+owner at edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [edk2-devel-archive at redhat.com]
-=-=-=-=-=-=-=-=-=-=-=-




More information about the edk2-devel-archive mailing list