diff options
author | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-12-13 09:59:44 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2017-12-13 16:05:20 +0800 |
commit | 0385efa00bc32bc60bbd023ba301022615cf215b (patch) | |
tree | ef62d22d071a6c5ff07615b25f626e8befadc44d /BaseTools/Source/Python/GenFds | |
parent | 38d870fc4e9b5a1896c98d12947713fb7b4b9ac4 (diff) | |
download | edk2-0385efa00bc32bc60bbd023ba301022615cf215b.tar.gz edk2-0385efa00bc32bc60bbd023ba301022615cf215b.tar.bz2 edk2-0385efa00bc32bc60bbd023ba301022615cf215b.zip |
BaseTools: Fix the incorrect indent introduced by 37de70
The incorrect indent introduced by 37de70, it cause PEIM in sub FV
image can't be rebased. Then it block some platform can't boot.
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/GenFds')
-rw-r--r-- | BaseTools/Source/Python/GenFds/Fv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/GenFds/Fv.py b/BaseTools/Source/Python/GenFds/Fv.py index 3953756e0f..d5922c040c 100644 --- a/BaseTools/Source/Python/GenFds/Fv.py +++ b/BaseTools/Source/Python/GenFds/Fv.py @@ -184,7 +184,7 @@ class FV (FvClassObject): if GenFdsGlobalVariable.LargeFileInFvFlags[-1]:
FFSGuid = GenFdsGlobalVariable.EFI_FIRMWARE_FILE_SYSTEM3_GUID;
#Update GenFv again
- GenFdsGlobalVariable.GenerateFirmwareVolume(
+ GenFdsGlobalVariable.GenerateFirmwareVolume(
FvOutputFile,
[self.InfFileName],
AddressFile=FvInfoFileName,
|