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

2022-10-01 Thread Bob Feng
Reviewed-by: Bob Feng -Original Message- From: Konstantin Aladyshev Sent: Tuesday, August 30, 2022 6:20 PM To: devel@edk2.groups.io Cc: Feng, Bob C ; Gao, Liming ; Chen, Christine ; Konstantin Aladyshev Subject: [PATCH v2] BaseTools: Support COMPAT16 section generation Currently COM

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

2022-09-02 Thread gaoliming via groups.io
k2.groups.io; Feng, Bob C ; Chen, > Christine > 主题: Re: [edk2-devel] [PATCH v2] BaseTools: Support COMPAT16 section > generation > > In my free time I learn UEFI/edk2. I've noticed that there are not > many lessons about edk2 programming, so I've decided to write m

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

2022-08-31 Thread Konstantin Aladyshev
0 > > 收件人: devel@edk2.groups.io > > 抄送: bob.c.f...@intel.com; gaolim...@byosoft.com.cn; > > yuwei.c...@intel.com; Konstantin Aladyshev > > 主题: [edk2-devel] [PATCH v2] BaseTools: Support COMPAT16 section > > generation > > > > Currently COMPAT16 section type is

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

2022-08-30 Thread gaoliming via groups.io
o > 抄送: bob.c.f...@intel.com; gaolim...@byosoft.com.cn; > yuwei.c...@intel.com; Konstantin Aladyshev > 主题: [edk2-devel] [PATCH v2] BaseTools: Support COMPAT16 section > generation > > Currently COMPAT16 section type is not recognized and GenSec is called > without the "-s [Secti

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

2022-08-30 Thread Konstantin Aladyshev
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 = { SECTION COMPAT16 = } ``` Signed-off-by: Konstantin Aladyshe