Ali, please also create PR in BaseTools repo. Reviewed-by: Yuwei Chen <yuwei.c...@intel.com>
> -----Original Message----- > From: S, Ashraf Ali <ashraf.al...@intel.com> > Sent: Wednesday, February 28, 2024 5:57 PM > To: devel@edk2.groups.io > Cc: S, Ashraf Ali <ashraf.al...@intel.com>; Rebecca Cran > <rebe...@bsdio.com>; Liming Gao <gaolim...@byosoft.com.cn>; Feng, Bob > C <bob.c.f...@intel.com>; Chen, Christine <yuwei.c...@intel.com>; > Chaganty, Rangasai V <rangasai.v.chaga...@intel.com> > Subject: [PATCH] BaseTools: FMMT Skip empty Lines while parsing > FMMTConfig.ini > > When the FMMTConf.ini file has empty lines then it used to throw errors > GuidTool load error!, this patch is to skip checking for empty lines in the > ini > file > > Cc: Rebecca Cran <rebe...@bsdio.com> > Cc: Liming Gao <gaolim...@byosoft.com.cn> > Cc: Bob Feng <bob.c.f...@intel.com> > Cc: Yuwei Chen <yuwei.c...@intel.com> > Cc: Chen Christine <yuwei.c...@intel.com> > Cc: Chaganty Rangasai V <rangasai.v.chaga...@intel.com> > > Signed-off-by: Ashraf Ali <ashraf.al...@intel.com> > --- > BaseTools/Source/Python/FMMT/core/GuidTools.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/BaseTools/Source/Python/FMMT/core/GuidTools.py > b/BaseTools/Source/Python/FMMT/core/GuidTools.py > index f6bdeffa50..f9cfd4ead0 100644 > --- a/BaseTools/Source/Python/FMMT/core/GuidTools.py > +++ b/BaseTools/Source/Python/FMMT/core/GuidTools.py > @@ -153,7 +153,7 @@ class GUIDTools: > config_data = fd.readlines() > for line in config_data: > try: > - if not line.startswith("#"): > + if not line.startswith("#") and line.strip(): > guid, short_name, command = line.split() > new_format_guid = > struct2stream(ModifyGuidFormat(guid.strip())) > self.tooldef[new_format_guid] = GUIDTool( > -- > 2.42.0.windows.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#116582): https://edk2.groups.io/g/devel/message/116582 Mute This Topic: https://groups.io/mt/104620514/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-