public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
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 the PcdValue trailing zero issue.
Date: Thu, 30 Aug 2018 07:36:03 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E2EB4AC@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20180828102245.37636-1-bob.c.feng@intel.com>

Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Feng, Bob C
>Sent: Tuesday, August 28, 2018 6:23 PM
>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 the PcdValue trailing zero issue.
>
>1. Not append trailing zero for PcdValue
>2. make sure the point to Variable Name in PCD
>DataBase 2 bytes aligned.
>
>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   | 6 ++++++
> BaseTools/Source/Python/Common/StringUtils.py | 7 +------
> 2 files changed, 7 insertions(+), 6 deletions(-)
>
>diff --git a/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>b/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>index 2176bbefeb..5b260cd515 100644
>--- a/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>+++ b/BaseTools/Source/Python/AutoGen/GenPcdDb.py
>@@ -1182,10 +1182,16 @@ def CreatePcdDatabasePhaseSpecificAutoGen
>(Platform, DynamicPcdList, Phase):
>                 Pcd.InitString = 'INIT'
>                 # Store all variable names of one HII PCD under different SKU to
>stringTable
>                 # and calculate the VariableHeadStringIndex
>
>                 VariableNameStructure = StringToArray(Sku.VariableName)
>+
>+                #  Make pointer of VaraibleName(HII PCD) 2 bytes aligned
>+                VariableNameStructureBytes =
>VariableNameStructure.lstrip("{").rstrip("}").split(",")
>+                if len(VariableNameStructureBytes) % 2:
>+                    VariableNameStructure = "{%s,0x00}" %
>",".join(VariableNameStructureBytes)
>+
>                 if VariableNameStructure not in Dict['STRING_TABLE_VALUE']:
>                     Dict['STRING_TABLE_CNAME'].append(CName)
>                     Dict['STRING_TABLE_GUID'].append(TokenSpaceGuid)
>                     if StringTableIndex == 0:
>                         Dict['STRING_TABLE_INDEX'].append('')
>diff --git a/BaseTools/Source/Python/Common/StringUtils.py
>b/BaseTools/Source/Python/Common/StringUtils.py
>index da2949dbad..d5afde7a95 100644
>--- a/BaseTools/Source/Python/Common/StringUtils.py
>+++ b/BaseTools/Source/Python/Common/StringUtils.py
>@@ -833,16 +833,11 @@ def StringToArray(String):
>             if StringLen % 2:
>                 return "{%s,0x00}" % ",".join("0x%02x" % ord(C) for C in String[1:-1])
>             else:
>                 return "{%s,0x00,0x00}" % ",".join("0x%02x" % ord(C) for C in
>String[1:-1])
>     elif String.startswith('{'):
>-        StringLen = len(String.split(","))
>-        if StringLen % 2:
>-            return "{%s,0x00}" % ",".join(C.strip() for C in String[1:-1].split(','))
>-        else:
>-            return "{%s}" % ",".join(C.strip() for C in String[1:-1].split(','))
>-
>+        return "{%s}" % ",".join(C.strip() for C in String[1:-1].split(','))
>     else:
>         if len(String.split()) % 2:
>             return '{%s,0}' % ','.join(String.split())
>         else:
>             return '{%s,0,0}' % ','.join(String.split())
>--
>2.16.2.windows.1



      reply	other threads:[~2018-08-30  7:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-28 10:22 [Patch] BaseTools: Fixed the PcdValue trailing zero issue BobCF
2018-08-30  7:36 ` 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=4A89E2EF3DFEDB4C8BFDE51014F606A14E2EB4AC@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