BaseTools: Fixed an error reported during generating report
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18601 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
		@@ -1236,12 +1236,13 @@ class FdRegionReport(object):
 | 
				
			|||||||
                    DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
 | 
					                    DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
 | 
				
			||||||
                    PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DecDefaultValue
 | 
					                    PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DecDefaultValue
 | 
				
			||||||
        #
 | 
					        #
 | 
				
			||||||
        # Collect PCDs defined in DSC common section
 | 
					        # Collect PCDs defined in DSC file
 | 
				
			||||||
        #
 | 
					        #
 | 
				
			||||||
        Platform = Wa.BuildDatabase[Wa.MetaFile, 'COMMON']
 | 
					        for arch in Wa.ArchList:
 | 
				
			||||||
        for (TokenCName, TokenSpaceGuidCName) in Platform.Pcds:
 | 
					            Platform = Wa.BuildDatabase[Wa.MetaFile, arch]
 | 
				
			||||||
            DscDefaultValue = Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
 | 
					            for (TokenCName, TokenSpaceGuidCName) in Platform.Pcds:
 | 
				
			||||||
            PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
 | 
					                DscDefaultValue = Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
 | 
				
			||||||
 | 
					                PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        #
 | 
					        #
 | 
				
			||||||
        # Add PEI and DXE a priori files GUIDs defined in PI specification.
 | 
					        # Add PEI and DXE a priori files GUIDs defined in PI specification.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user