From: "Gao, Liming" <liming.gao@intel.com>
To: "Feng, Bob C" <bob.c.feng@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch] BaseTools: Fixed build failure for the case that A pcd is initialized under one SKU but is uninitialized under another SKU.
Date: Thu, 25 Jan 2018 09:54:36 +0000 [thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E1AC6E9@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20180123013836.2188-1-bob.c.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: Feng, Bob C
>Sent: Tuesday, January 23, 2018 9:39 AM
>To: edk2-devel@lists.01.org
>Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
>Subject: [Patch] BaseTools: Fixed build failure for the case that A pcd is
>initialized under one SKU but is uninitialized under another SKU.
>
>Contributed-under: TianoCore Contribution Agreement 1.1
>Signed-off-by: Bob Feng <bob.c.feng@intel.com>
>Cc: Liming Gao <liming.gao@intel.com>
>---
> BaseTools/Source/Python/AutoGen/GenPcdDb.py | 16 ++++++++++++++--
> 1 file changed, 14 insertions(+), 2 deletions(-)
>
>diff --git a/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>b/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>index 22283ef7fe..82360ae57d 100644
>--- a/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>+++ b/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>@@ -1022,10 +1022,23 @@ def CreateAutoGen(PcdDriverAutoGenData):
> return (PcdDriverAutoGenData[(skuname,skuid)][0],autogenC)
> def NewCreatePcdDatabasePhaseSpecificAutoGen(Platform,Phase):
> def prune_sku(pcd,skuname):
> new_pcd = copy.deepcopy(pcd)
> new_pcd.SkuInfoList = {skuname:pcd.SkuInfoList[skuname]}
>+ new_pcd.isinit = 'INIT'
>+ if new_pcd.DatumType in ['UINT8','UINT16','UINT32','UINT64']:
>+ for skuobj in pcd.SkuInfoList.values():
>+ if skuobj.DefaultValue:
>+ defaultvalue = int(skuobj.DefaultValue,16) if
>skuobj.DefaultValue.upper().startswith("0X") else int(skuobj.DefaultValue,10)
>+ if defaultvalue != 0:
>+ new_pcd.isinit = "INIT"
>+ break
>+ elif skuobj.VariableName:
>+ new_pcd.isinit = "INIT"
>+ break
>+ else:
>+ new_pcd.isinit = "UNINIT"
> return new_pcd
> DynamicPcds = Platform.DynamicPcdList
> DynamicPcdSet_Sku = {(SkuName,skuobj.SkuId):[] for pcd in DynamicPcds
>for (SkuName,skuobj) in pcd.SkuInfoList.items() }
> for skuname,skuid in DynamicPcdSet_Sku:
> DynamicPcdSet_Sku[(skuname,skuid)] = [prune_sku(pcd,skuname) for
>pcd in DynamicPcds]
>@@ -1399,12 +1412,11 @@ def CreatePcdDatabasePhaseSpecificAutoGen
>(Platform, DynamicPcdList, Phase):
> if "PCD_TYPE_HII" not in Pcd.TokenTypeList:
> Pcd.TokenTypeList += ['PCD_TYPE_DATA']
> if Sku.DefaultValue == 'TRUE':
> Pcd.InitString = 'INIT'
> else:
>- if int(Sku.DefaultValue, 0) != 0:
>- Pcd.InitString = 'INIT'
>+ Pcd.InitString = Pcd.isinit
> #
> # For UNIT64 type PCD's value, ULL should be append to avoid
> # warning under linux building environment.
> #
> if Pcd.DatumType == "UINT64":
>--
>2.14.3.windows.1
prev parent reply other threads:[~2018-01-25 9:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-23 1:38 [Patch] BaseTools: Fixed build failure for the case that A pcd is initialized under one SKU but is uninitialized under another SKU BobCF
2018-01-25 9:54 ` Gao, Liming [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14E1AC6E9@SHSMSX104.ccr.corp.intel.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox