From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "Thomaiyar, Richard Marian" <richard.marian.thomaiyar@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] IntelFsp2Pkg: Add PACKAGES_PATH support
Date: Tue, 29 Nov 2016 16:43:26 +0000 [thread overview]
Message-ID: <74D8A39837DF1E4DA445A8C0B3885C50386DC3DE@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <20161125092106.12296-1-richard.marian.thomaiyar@intel.com>
Reviewed-by: jiewen.yao@intel.com
> -----Original Message-----
> From: Thomaiyar, Richard Marian
> Sent: Friday, November 25, 2016 5:21 PM
> To: edk2-devel@lists.01.org
> Cc: Ma, Maurice <maurice.ma@intel.com>; Yao, Jiewen
> <jiewen.yao@intel.com>; Mudusuru, Giri P <giri.p.mudusuru@intel.com>;
> Thomaiyar, Richard Marian <richard.marian.thomaiyar@intel.com>
> Subject: [PATCH] IntelFsp2Pkg: Add PACKAGES_PATH support
>
> Add PACKAGES_PATH support in GenCfgOpt.py
>
> Cc: Maurice Ma <maurice.ma@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Richard Thomaiyar <richard.marian.thomaiyar@intel.com>
> ---
> IntelFsp2Pkg/Tools/GenCfgOpt.py | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/IntelFsp2Pkg/Tools/GenCfgOpt.py
> b/IntelFsp2Pkg/Tools/GenCfgOpt.py
> index 654cdfc..0675b55 100644
> --- a/IntelFsp2Pkg/Tools/GenCfgOpt.py
> +++ b/IntelFsp2Pkg/Tools/GenCfgOpt.py
> @@ -523,9 +523,13 @@ EndList
> if Match:
> IncludeFilePath =
> Match.group(1)
> IncludeFilePath =
> self.ExpandMacros(IncludeFilePath)
> - try:
> - IncludeDsc =
> open(IncludeFilePath, "r")
> - except:
> + PackagesPath =
> os.getenv("PACKAGES_PATH")
> + for PackagePath in
> PackagesPath.split(os.pathsep):
> + IncludeFilePathAbs =
> os.path.join(os.path.normpath(PackagePath),
> os.path.normpath(IncludeFilePath))
> + if
> os.path.exists(IncludeFilePathAbs):
> + IncludeDsc =
> open(IncludeFilePathAbs, "r")
> + break
> + if IncludeDsc == None:
> print("ERROR:
> Cannot open file '%s'" % IncludeFilePath)
> raise SystemExit
> NewDscLines =
> IncludeDsc.readlines()
> --
> 2.9.0.windows.1
next prev parent reply other threads:[~2016-11-29 16:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-25 9:21 [PATCH] IntelFsp2Pkg: Add PACKAGES_PATH support rthomaiy
2016-11-29 16:43 ` Yao, Jiewen [this message]
2016-11-29 18:11 ` Mudusuru, Giri P
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=74D8A39837DF1E4DA445A8C0B3885C50386DC3DE@shsmsx102.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