summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/GenFds/FdfParser.py
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2018-07-13 18:18:34 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-07-16 11:22:13 +0800
commit8f3f5794b4b0027ee118fc6e03ea01620e6cd9d4 (patch)
tree58e430bf5c238cc87e0ff95f4fbb08c8d9f77c23 /BaseTools/Source/Python/GenFds/FdfParser.py
parentbfa65b61dde887a9586e070101202bd37e3221fd (diff)
downloadedk2-8f3f5794b4b0027ee118fc6e03ea01620e6cd9d4.tar.gz
edk2-8f3f5794b4b0027ee118fc6e03ea01620e6cd9d4.tar.bz2
edk2-8f3f5794b4b0027ee118fc6e03ea01620e6cd9d4.zip
BaseTools: Move OverrideAttribs to OptRomInfStatement.py
Move "class OverrideAttribs" to OptRomInfStatement.py to remove "import OptionRom" which may form a circular import: GenFds.OptionRom => GenFds.OptRomInfStatement => GenFds.OptionRom Contributed-under: TianoCore Contribution Agreement 1.1 Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/GenFds/FdfParser.py')
-rw-r--r--BaseTools/Source/Python/GenFds/FdfParser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/GenFds/FdfParser.py b/BaseTools/Source/Python/GenFds/FdfParser.py
index 5ff2e206db..4be790a819 100644
--- a/BaseTools/Source/Python/GenFds/FdfParser.py
+++ b/BaseTools/Source/Python/GenFds/FdfParser.py
@@ -4493,7 +4493,7 @@ class FdfParser:
#
def __GetOptRomOverrides(self, Obj):
if self.__IsToken('{'):
- Overrides = OptionRom.OverrideAttribs()
+ Overrides = OptRomInfStatement.OverrideAttribs()
while True:
if self.__IsKeyword( "PCI_VENDOR_ID"):
if not self.__IsToken( "="):